diff options
author | David Hankins <dhankins@isc.org> | 2004-09-10 21:02:31 +0000 |
---|---|---|
committer | David Hankins <dhankins@isc.org> | 2004-09-10 21:02:31 +0000 |
commit | 3cfdd9abfab12d13c0df05a01c75fc39d3c6e6da (patch) | |
tree | 63e32c20b38d1a760699796c8f8f74a9cde42a11 /Makefile.conf | |
parent | cc1fa25551282ffcbce98c5e805eea9980f0e727 (diff) | |
download | isc-dhcp-3cfdd9abfab12d13c0df05a01c75fc39d3c6e6da.tar.gz |
- log() was logging a work buffer, rather than the value returned by
executing the statements configured by the user. In some cases,
the work buffer and the intended results were the same. In some other
cases, they were not. This was fixed. (common/execute.c)
- Compiler warnings for some string type conversions was fixed, thanks
to Andreas Gustafsson. (server/dhcp.c)
- The netbsd build environments were simplified to one, in which
-Wconversion is not used, thanks to Andreas Gustafsson. (configure)
- How randomness in the backoff-cutoff dhclient configuration variable
is implemented was better documented in the manpage, and the behaviour
of dhclient in REQUEST timeout handling was changed to match that of
DISCOVER timeout handling. (client/dhclient.c, client/dhclient.conf.5)
Diffstat (limited to 'Makefile.conf')
-rw-r--r-- | Makefile.conf | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/Makefile.conf b/Makefile.conf index 83bd5fab..650e9b66 100644 --- a/Makefile.conf +++ b/Makefile.conf @@ -228,28 +228,11 @@ MINORVERSION=MinorVersion #COPTS = -Wall -Wstrict-prototypes -Wno-unused -Wno-comment \ # -Wno-uninitialized -Werror \ # -Wimplicit-function-declaration -Wpointer-arith -Wcast-qual \ -# -Wcast-align -Wwrite-strings -Wconversion -Wmissing-prototypes \ -# -Wmissing-declarations -Wnested-externs \ -# -pipe $(BINDDEF) $(CC_OPTIONS) -#SCRIPT=netbsd -##MKDEP=makedepend -##--netbsd-- - -## NetBSD nocast -## Some versions of the arm32 gcc have a problem in cast conversions. -## The Alpha definitely has a problem - if you pass '6' where a size_t -## is expected, you get a warning. So on these architectures, we do -## not ask for that sort of warning. -##--netbsd-nocast-- -#CF = cf/netbsd.h -#COPTS = -Wall -Wstrict-prototypes -Wno-unused -Wno-comment \ -# -Wno-uninitialized -Werror \ -# -Wimplicit-function-declaration -Wpointer-arith -Wcast-qual \ # -Wwrite-strings -Wmissing-prototypes \ # -Wmissing-declarations -Wnested-externs \ # -pipe $(BINDDEF) $(CC_OPTIONS) #SCRIPT=netbsd -##--netbsd-nocast-- +##--netbsd-- ## Ultrix ##--ultrix-- |