summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorThomas Markwalder <tmark@isc.org>2017-11-29 07:51:50 -0500
committerThomas Markwalder <tmark@isc.org>2017-11-29 07:51:50 -0500
commit30593241995b57f039620c781ece069ea7b751b7 (patch)
treefba073c5fd5acd92494283023d864522a1419d2d /configure.ac
parent8e2197467f2f2fa8c794cb10e25f321a98c0e439 (diff)
downloadisc-dhcp-30593241995b57f039620c781ece069ea7b751b7.tar.gz
[45364] Replaced --enable-secs-byteorder with runtime check-secs-byte-order
configure.ac removed --enable-secs-byteorder support includes/dhcpd.h added SV_CHECK_SECS_BYTE_ORDER includes/failover.h added extern int check_secs_byte_order server/dhcpd.c postconf_initialization() - added logic to set check_secs_byte_order server/failover.c load_balance_mine() - replaced conditional comp directives with runtime test of check_secs_byte_order Added release note and updated man page.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 0 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac
index 6162d261..0cec4d22 100644
--- a/configure.ac
+++ b/configure.ac
@@ -216,16 +216,6 @@ if test "$enable_use_sockets" = "yes"; then
[Define to 1 to use the standard BSD socket API.])
fi
-# Try to hnadle incorrect byte order for secs field
-# This is off by default
-AC_ARG_ENABLE(secs_byteorder,
- AS_HELP_STRING([--enable-secs-byteorder],[Correct bad byteorders in the secs field (default is no).]))
-
-if test "$enable_secs_byteorder" = "yes" ; then
- AC_DEFINE([SECS_BYTEORDER], [1],
- [Define to correct bad byteorders in secs field.])
-fi
-
# Include the PID in the log messages. This is useful when there may
# be multiple instances of a program.
# This is off by default