NetBSD/external/bsd/ipf
plunky 80f5e4f0af the result of the construct
#define FOO	defined(BAR)

#if FOO
 [conditional code]
#endif

is "undefined", according to C99 6.10.1 note 4. So, change code like
that to use the following paradigm

#if defined(BAR)
#define FOO	1
#else
#define FOO	0
#endif

#if FOO
 [conditional code]
#endif
2012-09-15 16:56:05 +00:00
..
bin Set "BINDIR" to get binaries installed in the correct directory. 2012-03-24 18:27:16 +00:00
dist the result of the construct 2012-09-15 16:56:05 +00:00
lib Merge IPFilter 5.1.2 into HEAD 2012-07-22 14:27:35 +00:00
rules Build gluons 2012-03-23 21:29:44 +00:00
ipf2netbsd deal with tests 2012-03-23 23:14:34 +00:00
Makefile Build gluons 2012-03-23 21:29:44 +00:00
Makefile.inc Build gluons 2012-03-23 21:29:44 +00:00