Go to file
cgd dfbb6d0884 fix a bug where definitions to be placed in headers wouldn't be
right/consistent.  If you had something like:

file	file.c		foo bar baz needs-flag

and any one of foo, bar, or baz caused it to be brought into the compile,
in the header you'd end up with:

#define NFOO	1
#define NBAR	1
#define NBAZ	1

even if only one of them were selected.  Other headers might have had a
different (inconsistent) set of definitions, depending on whether any of
their components were included, and any files necessary for the unspecified
options would not actually be present in the Makefile files list.  The
correct behaviour for the example above if only 'foo' is selected by
the config file is:

#define NFOO	1
#define NBAR	0
#define NBAZ	0

which is what config now does.  This bug has been present for a while.
(I don't know for sure that it was present in 4.4-Lite2, but from looking
at the Lite2 config sources, it appears to be there.)
1996-03-17 03:21:21 +00:00
bin a a => a (close pr 2204). 1996-03-12 04:32:37 +00:00
distrib Ooops. Fixed the less problem slightly differently. This time it 1996-03-12 04:55:21 +00:00
etc Added ss device for SCSI scanner. 1996-03-14 20:17:22 +00:00
games Use tr instead of caesar to generate fortunes-o 1996-02-29 00:21:16 +00:00
gnu Take a stab at recognising %b formats. 1996-03-17 03:13:17 +00:00
include Add prototype for sigaltstack; from John Kohl in PR #2129 1996-02-29 00:04:57 +00:00
lib New libkvm/savecore implementation. With the following differences: 1996-03-16 10:23:29 +00:00
libexec Removed a couple of "ifdef vax" that caused rstatd not to work. 1996-03-10 15:24:20 +00:00
regress
sbin New libkvm/savecore implementation. With the following differences: 1996-03-16 10:29:36 +00:00
share add description of jazz16 support 1996-03-16 17:21:58 +00:00
sys Avoid "unused variable" warning. 1996-03-17 03:19:34 +00:00
usr.bin Removed a couple of #ifdef vax causing systat to malfunction. 1996-03-15 22:19:23 +00:00
usr.sbin fix a bug where definitions to be placed in headers wouldn't be 1996-03-17 03:21:21 +00:00
Makefile fix typo 1995-12-15 18:13:41 +00:00