0037a9f2a74da4409374d00239f89b45531ef901
[unifdef.git] / 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 Note: GitHub's "releases" are incomplete and broken, but I am not
18 able to redrect them to the right place.
19
20 You can clone the development repository using:
21         git clone http://dotat.at/git/unifdef.git
22
23 I also maintain a copy at http://github.com/fanf2/unifdef
24 (Warning: GitHub's zip download is incomplete and unusable.)
25
26 Please send bug reports and patches to me via email to the
27 address above. Unless you state otherwise, I will assume that
28 any contributions are under the two-clause BSD licence. See
29 the COPYING file for details.
30
31 Thanks to the following people for their contributions:
32
33 Bob Proulx <bob@proulx.com>
34  - test suite
35
36 Jonathan Nieder <jrnieder@gmail.com>
37  - bug fixes, improved unifdefall
38
39 Anders H Kaseorg <andersk@mit.edu>
40  - bug fixes and other improvements
41
42 Ruediger Meier <ruediger.meier@ga-group.nl>
43  - build and portability cleanups
44
45 Ben Hutchings at Solarflare Communications
46  - lenient evaluation of && and ||
47
48 Steve Underwood <steveu@coppice.org>
49  - read #define and #undef directives from a file
50
51 Brian Ginsbach <ginsbach@netbsd.org>
52  - improved expression evaluator
53
54 Other contributions are listed in the Changelog.
55
56 - end -