]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/unifdef/README
ntp: Vendor import of ntp-4.2.8p18
[FreeBSD/FreeBSD.git] / contrib / unifdef / README
1 unifdef - selectively remove C preprocessor conditionals
2
3 Written by Tony Finch <dot@dotat.at> - http://dotat.at/prog/unifdef/
4
5 The unifdef utility selectively processes conditional C preprocessor
6 #if and #ifdef directives. It removes from a file both the directives
7 and the additional text that they delimit, while otherwise leaving the
8 file alone.
9
10 Please see the INSTALL file for installation instructions.
11
12 Pre-formatted documentation can be found in unifdef.txt
13
14 You can download the latest release tar and zip files from:
15         http://dotat.at/prog/unifdef
16
17 You can clone the development repository using:
18         git clone http://dotat.at/git/unifdef.git
19
20 I also maintain a copy at http://github.com/fanf2/unifdef
21 (Warning: GitHub's zip download is incomplete and unusable.)
22
23 Please send bug reports and patches to me via email to the
24 address above. Unless you state otherwise, I will assume that
25 any contributions are under the two-clause BSD licence. See
26 the COPYING file for details.
27
28 Thanks to the following people for their contributions:
29
30 Bob Proulx <bob@proulx.com>
31  - test suite
32
33 Jonathan Nieder <jrnieder@gmail.com>
34  - bug fixes, improved unifdefall
35
36 Anders H Kaseorg <andersk@mit.edu>
37  - bug fixes and other improvements
38
39 Ruediger Meier <ruediger.meier@ga-group.nl>
40  - build and portability cleanups
41
42 Ben Hutchings at Solarflare Communications
43  - lenient evaluation of && and ||
44
45 Steve Underwood <steveu@coppice.org>
46  - read #define and #undef directives from a file
47
48 Brian Ginsbach <ginsbach@netbsd.org>
49  - improved expression evaluator
50
51 Other contributions are listed in the Changelog.
52
53 - end -