]> git.ipfire.org Git - thirdparty/dhcp.git/blame - configure.ac
Updated README about with libtool -> without
[thirdparty/dhcp.git] / configure.ac
CommitLineData
160842b2 1AC_INIT([DHCP],[4.4.0-dev],[dhcp-users@isc.org])
fe5b0fdd 2
13e5cc6c 3
fe5b0fdd
DH
4# we specify "foreign" to avoid having to have the GNU mandated files,
5# like AUTHORS, COPYING, and such
bf6f8fce 6AM_INIT_AUTOMAKE([foreign])
fe5b0fdd 7
25f664a6
SR
8# we specify AM_MAINTAINER_MODE to avoid problems with rebuilding
9# the configure and makefiles. Without it users doing things that
10# change the timestamps on the code, like checking it into a cvs
11# tree, could trigger a rebuild of the infrastructure files which
12# might fail if they don't have the correct tools.
cacce092 13AM_MAINTAINER_MODE
25f664a6 14
a24b9f23
MA
15AC_CANONICAL_HOST
16
cacce092 17# We want to turn on warnings if we are using gcc and the user did
06eb8bab
SK
18# not specify CFLAGS. The autoconf check for the C compiler sets the
19# CFLAGS if gcc is used, so we will save it before we run that check.
20SAVE_CFLAGS="$CFLAGS"
21
22# Now find our C compiler.
fe5b0fdd 23AC_PROG_CC
06eb8bab 24
159c89d7
EH
25# Suppress warnings about --datarootdir
26AC_DEFUN([AC_DATAROOTDIR_CHECKED])
27
06eb8bab
SK
28# If we have gcc, and AC_PROG_CC changed the flags, then we know the
29# user did not specify any flags. Add warnings in this case.
30if test "$GCC" = "yes"; then
31 if test "$CFLAGS" != "$SAVE_CFLAGS"; then
eaf7eb17 32 STD_CWARNINGS="$STD_CWARNINGS -Wall -Werror -fno-strict-aliasing"
06eb8bab
SK
33 fi
34fi
35
6913a589
FD
36# We can have some flags to pass to bind configure
37BINDCONFIG=
b4a10c76
FD
38if test "$cross_compiling" = "yes"; then
39 BINDCONFIG="--host=$host"
40fi
c87db1b1
FD
41# Pass CFLAGS and co. $ac_configure_args looks like "'arg1' 'arg2' ..."
42# and as there can be a space inside an argument some magic is required.
43# This sets $1 ... $N to my_configure_args, arg1 ... argN
44eval "set my_configure_args $ac_configure_args"
45# remove my_configure_args, i.e., the guard against empty $ac_configure_args
46shift
47# iterate on arguments and copying 'arg' when it begins by an upper case
48for a
49do
50 case $a in
51 [[A-Z]]*) BINDCONFIG="$BINDCONFIG '$a'" ;;
52 esac
53done
6913a589
FD
54AC_SUBST(BINDCONFIG)
55
ae566556
SR
56# POSIX doesn't include the IPv6 Advanced Socket API and glibc hides
57# parts of the IPv6 Advanced Socket API as a result. This is stupid
58# as it breaks how the two halves (Basic and Advanced) of the IPv6
59# Socket API were designed to be used but we have to live with it.
60# Use this to define _GNU_SOURCE to pull in the IPv6 Advanced Socket API.
61AC_USE_SYSTEM_EXTENSIONS
62
fe5b0fdd 63AC_PROG_RANLIB
e619bd67
FD
64
65AC_PATH_PROG(AR, ar)
66AC_SUBST(AR)
67
5965f335
FD
68if test "X$AR" = "X"; then
69 AC_MSG_ERROR([
70ar program not found. Please fix your PATH to include the directory in
71which ar resides, or set AR in the environment with the full path to ar.])
72fi
73
fe5b0fdd
DH
74AC_CONFIG_HEADERS([includes/config.h])
75
76# we sometimes need to know byte order for building packets
cacce092 77AC_C_BIGENDIAN(AC_SUBST(byte_order, BIG_ENDIAN),
fe5b0fdd 78 AC_SUBST(byte_order, LITTLE_ENDIAN))
cacce092 79AC_DEFINE_UNQUOTED([DHCP_BYTE_ORDER], [$byte_order],
fe5b0fdd
DH
80 [Define to BIG_ENDIAN for MSB (Motorola or SPARC CPUs)
81 or LITTLE_ENDIAN for LSB (Intel CPUs).])
82
66cebfcb
DH
83# Optional compile-time DEBUGging.
84AC_ARG_ENABLE(debug,
d7d9c0c7 85 AS_HELP_STRING([--enable-debug],[create a debug-only version of the software (default is no).]),
45adf35c
TM
86 [case "${enableval}" in
87 yes) enable_debug=yes
88 AC_DEFINE([DEBUG], [1],
89 [Define to compile debug-only DHCP software.])
90 # Just override CFLAGS totally to remove optimization.
91 CFLAGS="-g";;
92 no) enable_debug=no ;;
93 *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
94 esac],[enable_debug=no])
95
66cebfcb
DH
96# XXX: there are actually quite a lot more DEBUG_ features we could enable,
97# but I don't want to pollute the --help space.
98#
99#/* #define DEBUG_TOKENS */
100#/* #define DEBUG_PACKET */
101#/* #define DEBUG_EXPRESSIONS */
102#/* #define DEBUG_FIND_LEASE */
103#/* #define DEBUG_EXPRESSION_PARSE */
104#/* #define DEBUG_CLASS_MATCHING */
105#/* #define DEBUG_MEMORY_LEAKAGE */
106#/* #define DEBUG_MALLOC_POOL */
107#/* #define DEBUG_LEASE_STATE_TRANSITIONS */
108#/* #define DEBUG_RC_HISTORY */
109#/* #define DEBUG_RC_HISTORY_EXHAUSTIVELY */
110#/* #define RC_HISTORY_MAX 10240 */
111#/* #define POINTER_DEBUG */
112#/* #define DEBUG_FAILOVER_MESSAGES */
113#/* #define DEBUG_FAILOVER_TIMING */
114#/* #define DEBUG_DUMP_ALL_LEASES */
115
116# Failover optional compile-time feature.
117AC_ARG_ENABLE(failover,
d7d9c0c7 118 AS_HELP_STRING([--enable-failover],[enable support for failover (default is yes)]))
66cebfcb
DH
119# Failover is on by default, so define if it is not explicitly disabled.
120if test "$enable_failover" != "no"; then
e82906fc 121 enable_failover="yes"
66cebfcb
DH
122 AC_DEFINE([FAILOVER_PROTOCOL], [1],
123 [Define to include Failover Protocol support.])
124fi
125
126# execute() support.
127AC_ARG_ENABLE(execute,
d7d9c0c7 128 AS_HELP_STRING([--enable-execute],[enable support for execute() in config (default is yes)]))
66cebfcb
DH
129# execute() is on by default, so define if it is not explicitly disabled.
130if test "$enable_execute" != "no" ; then
e82906fc 131 enable_execute="yes"
66cebfcb
DH
132 AC_DEFINE([ENABLE_EXECUTE], [1],
133 [Define to include execute() config language support.])
134fi
135
136# Server tracing support.
137AC_ARG_ENABLE(tracing,
d7d9c0c7 138 AS_HELP_STRING([--enable-tracing],[enable support for server activity tracing (default is yes)]))
66cebfcb
DH
139# tracing is on by default, so define if it is not explicitly disabled.
140if test "$enable_tracing" != "no" ; then
141 AC_DEFINE([TRACING], [1],
142 [Define to include server activity tracing support.])
143fi
144
fbcee149
DH
145# Delayed-ack feature support (experimental).
146AC_ARG_ENABLE(delayed_ack,
d7d9c0c7 147 AS_HELP_STRING([--enable-delayed-ack],[queues multiple DHCPACK replies (default is no)]))
fbcee149
DH
148if test "$enable_delayed_ack" = "yes"; then
149 AC_DEFINE([DELAYED_ACK], [1],
150 [Define to queue multiple DHCPACK replies per fsync.])
e82906fc
TM
151else
152 enable_delayed_ack="no"
fbcee149
DH
153fi
154
66cebfcb 155# DHCPv6 optional compile-time feature.
fe5b0fdd 156AC_ARG_ENABLE(dhcpv6,
8cc64a89 157 AS_HELP_STRING([--enable-dhcpv6],[enable support for DHCPv6 (default is yes)]))
66cebfcb 158# DHCPv6 is on by default, so define if it is not explicitly disabled.
d00d373a 159if test "$enable_dhcpv6" != "no"; then
e82906fc 160 enable_dhcpv6="yes"
cacce092 161 AC_DEFINE([DHCPv6], [1],
d00d373a
SK
162 [Define to 1 to include DHCPv6 support.])
163fi
fe5b0fdd 164
785c1a51
FD
165# DHCPv4o6 optional compile-time feature.
166AC_ARG_ENABLE(dhcpv4o6,
167 AS_HELP_STRING([--enable-dhcpv4o6],[enable support for DHCPv4-over-DHCPv6 (default is no)]))
168# DHCPv4o6 is off by default, so define if it is explicitly enabled.
169if test "$enable_dhcpv4o6" = "yes"; then
170 # DHCPv4o6 requires DHCPv6
171 if test "$enable_dhcpv6" = "no"; then
172 AC_MSG_ERROR([dhcpv4o6 requires dhcpv6])
173 fi
174 # DHCPv4o6 is not yet compatible with delayed-ack
175 if test "$enable_delayed_ack" = "yes"; then
176 AC_MSG_ERROR([dhcpv4o6 is not compatible with delayed-ack])
177 fi
178 AC_DEFINE([DHCP4o6], [1],
179 [Define to 1 to include DHCPv4 over DHCPv6 support.])
180fi
181
63971a83
DH
182# PARANOIA is off by default (until we can test it with all features)
183AC_ARG_ENABLE(paranoia,
d7d9c0c7 184 AS_HELP_STRING([--enable-paranoia],[enable support for chroot/setuid (default is no)]))
63971a83 185AC_ARG_ENABLE(early_chroot,
d7d9c0c7 186 AS_HELP_STRING([--enable-early-chroot],[enable chrooting prior to configuration (default is no)]))
63971a83
DH
187# If someone enables early chroot, but does not enable paranoia, do so for
188# them.
189if test "$enable_paranoia" != "yes" && \
190 test "$enable_early_chroot" = "yes" ; then
191 enable_paranoia="yes"
192fi
193
194if test "$enable_paranoia" = "yes" ; then
195 AC_DEFINE([PARANOIA], [1],
196 [Define to any value to include Ari's PARANOIA patch.])
197fi
198if test "$enable_early_chroot" = "yes" ; then
199 AC_DEFINE([EARLY_CHROOT], [1],
200 [Define to any value to chroot() prior to loading config.])
201fi
202
b047bd38 203AC_ARG_ENABLE(ipv4_pktinfo,
d7d9c0c7 204 AS_HELP_STRING([--enable-ipv4-pktinfo],[enable use of pktinfo on IPv4 sockets (default is no)]))
7cfeb916
SR
205
206if test "$enable_ipv4_pktinfo" = "yes"; then
207 AC_DEFINE([USE_V4_PKTINFO], [1],
208 [Define to 1 to enable IPv4 packet info support.])
209fi
210
b047bd38 211AC_ARG_ENABLE(use_sockets,
d7d9c0c7 212 AS_HELP_STRING([--enable-use-sockets],[use the standard BSD socket API (default is no)]))
7cfeb916
SR
213
214if test "$enable_use_sockets" = "yes"; then
215 AC_DEFINE([USE_SOCKETS], [1],
216 [Define to 1 to use the standard BSD socket API.])
217fi
218
dbd65517
SR
219# Try to hnadle incorrect byte order for secs field
220# This is off by default
221AC_ARG_ENABLE(secs_byteorder,
d7d9c0c7 222 AS_HELP_STRING([--enable-secs-byteorder],[Correct bad byteorders in the secs field (default is no).]))
dbd65517
SR
223
224if test "$enable_secs_byteorder" = "yes" ; then
225 AC_DEFINE([SECS_BYTEORDER], [1],
226 [Define to correct bad byteorders in secs field.])
227fi
228
00e9af8e
SR
229# Include the PID in the log messages. This is useful when there may
230# be multiple instances of a program.
231# This is off by default
232AC_ARG_ENABLE(log_pid,
233 AS_HELP_STRING([--enable-log-pid],[Include PIDs in syslog messages (default is no).]))
234if test "$enable_log_pid" = "yes" ; then
235 AC_DEFINE([USE_LOG_PID], [1],
236 [Define to include PIDs in syslog messages.])
237fi
238
3933e2aa
SR
239# Allow for binary search when inserting v4 leases into queues
240AC_ARG_ENABLE(binary_leases,
241 AS_HELP_STRING([--enable-binary-leases],[enable support for binary insertion of leases (default is no)]))
242# binary_leases is off by default.
243if test "$enable_binary_leases" = "yes"; then
244 AC_DEFINE([BINARY_LEASES], [1],
245 [Define to support binary insertion of leases into queues.])
e82906fc
TM
246else
247 enable_binary_leases="no"
3933e2aa
SR
248fi
249
2898f89e
TM
250# Testing section
251
f3b61519 252DISTCHECK_ATF_CONFIGURE_FLAG=
c79f8104
TM
253atf_path="no"
254AC_ARG_WITH([atf],
6913a589 255 AS_HELP_STRING([--with-atf=PATH],[specify location where atf was installed (or "bind")]),
c79f8104 256 [atf_path="$withval"])
6913a589
FD
257AM_CONDITIONAL(BIND_ATF, test "$atf_path" = "bind")
258if test "$atf_path" = "bind" ; then
f3b61519 259 DISTCHECK_ATF_CONFIGURE_FLAG="--with-atf=bind"
6913a589
FD
260 atf_pcp="bind"
261 atf_path="\${top_srcdir}/bind/atf"
262 ATF_CFLAGS="-I$atf_path/include -DUNIT_TEST"
263 ATF_LDFLAGS="-L$atf_path/lib -latf-c"
abea8843 264 ATF_BIN=`cd $srcdir; pwd`/bind/atf/bin
6913a589
FD
265 AC_SUBST(ATF_CFLAGS)
266 AC_SUBST(ATF_LDFLAGS)
267 AC_SUBST(ATF_BIN)
268 BINDCONFIG="$BINDCONFIG --with-atf"
269elif test "$atf_path" != "no" ; then
f3b61519 270 DISTCHECK_ATF_CONFIGURE_FLAG="--with-atf=$atf_path"
c79f8104
TM
271 # Config path for pkg-config
272 atf_pcp=""
273 if test "$atf_path" != "yes" ; then
274 if test -f $atf_path/lib/pkgconfig/atf-c.pc ; then
275 atf_pcp=$atf_path/lib/pkgconfig
c5bc8b1a
SR
276 elif test -f $atf_path/lib64/pkgconfig/atf-c.pc ; then
277 atf_pcp=$atf_path/lib64/pkgconfig
c79f8104
TM
278 fi
279 else
280 # Not specified, try some common paths
281 atf_dirs="/usr /usr/local /usr/pkg /opt /opt/local"
282 for d in $atf_dirs
283 do
284 if test -f $d/lib/pkgconfig/atf-c.pc ; then
285 atf_pcp=$d/lib/pkgconfig
9a111ee8 286 atf_path=$d
c5bc8b1a
SR
287 elif test -f $d/lib64/pkgconfig/atf-c.pc ; then
288 atf_pcp=$d/lib64/pkgconfig
9a111ee8 289 atf_path=$d
c79f8104
TM
290 fi
291 done
292 fi
9a111ee8 293
c79f8104
TM
294 if test "$atf_pcp" = "" ; then
295 AC_MSG_ERROR([Unable to find atf files in location specified])
296 else
cacce092
TM
297 AC_CHECK_PROG([pkgcfg_found],[pkg-config],[pkg-config],[])
298 if test "$pkgcfg_found" = ""; then
299 AC_MSG_ERROR([Could not locate ATF, pkg-config not installed])
300 fi
c79f8104
TM
301 ATF_CFLAGS="`PKG_CONFIG_PATH=$atf_pcp pkg-config --cflags atf-c` -DUNIT_TEST"
302 ATF_LDFLAGS="`PKG_CONFIG_PATH=$atf_pcp pkg-config --libs atf-c`"
9a111ee8
TM
303 if test -f $atf_pcp/atf-sh.pc ; then
304 ATF_BIN="`PKG_CONFIG_PATH=$atf_pcp pkg-config --variable=exec_prefix atf-sh`/bin"
305 else
306 # older versions don't have atf-sh, try usual place
307 ATF_BIN=$atf_path/bin
308 fi
309
310 if test ! -x $ATF_BIN/atf-run -o ! -x $ATF_BIN/atf-report ; then
c87db1b1 311 AC_MSG_WARN([atf-run/atf-report not found, assuming they are in your path])
9a111ee8
TM
312 fi
313
c79f8104
TM
314 AC_SUBST(ATF_CFLAGS)
315 AC_SUBST(ATF_LDFLAGS)
9a111ee8 316 AC_SUBST(ATF_BIN)
c79f8104 317 fi
2898f89e 318fi
c79f8104
TM
319
320AM_CONDITIONAL(HAVE_ATF, test "$atf_pcp" != "")
9a111ee8 321AM_COND_IF([HAVE_ATF], [AC_DEFINE([HAVE_ATF], [1], [ATF framework specified?])])
f3b61519 322AC_SUBST(DISTCHECK_ATF_CONFIGURE_FLAG)
2898f89e 323
f8b3c6f4
DH
324###
325### Path fun. Older versions of DHCP were installed in /usr/sbin, so we
326### need to look there and potentially overwrite by default (but not if
327### the user configures an alternate value). LOCALSTATEDIR is totally
328### braindead. No one uses /usr/local/var/db/ nor /usr/local/var/run, and
329### they would be insane for suggesting it. We need to look in /var/for
330### 'db' and 'state/dhcp' for db files, and /var/run for pid files by
331### default.
332###
333AC_PREFIX_PROGRAM(dhcpd)
334
335# XXX - isn't there SOME WAY to default autoconf to /var instead of
336# /usr/local/var/no/one/has/this/please/stop/trying?
337case "$localstatedir" in
338 '${prefix}/var')
339 localstatedir=/var
340 ;;
341esac
342
fe5b0fdd
DH
343# Allow specification of alternate state files
344AC_ARG_WITH(srv-lease-file,
cacce092 345 AS_HELP_STRING([--with-srv-lease-file=PATH],[File for dhcpd leases
fe5b0fdd
DH
346 (default is LOCALSTATEDIR/db/dhcpd.leases)]),
347 AC_DEFINE_UNQUOTED([_PATH_DHCPD_DB], ["$withval"],
348 [File for dhcpd leases.]))
f8b3c6f4 349
6913a589 350AC_MSG_CHECKING([for dhcpd.leases location])
f8b3c6f4
DH
351if [[ "x$with_srv_lease_file" = "x" ]] ; then
352 if [[ -d "${localstatedir}/db" ]] ; then
353 with_srv_lease_file="${localstatedir}/db/dhcpd.leases"
354 elif [[ -d "${localstatedir}/state" ]] ; then
355 if [[ -d "${localstatedir}/state/dhcp" ]] ; then
356 with_srv_lease_file="${localstatedir}/state/dhcp/dhcpd.leases"
357 else
358 with_srv_lease_file="${localstatedir}/state/dhcpd.leases"
359 fi
360 elif [[ -d "${localstatedir}/lib" ]] ; then
361 if [[ -d "${localstatedir}/lib/dhcp" ]] ; then
362 with_srv_lease_file="${localstatedir}/lib/dhcp/dhcpd.leases"
363 else
364 with_srv_lease_file="${localstatedir}/lib/dhcpd.leases"
365 fi
366 elif [[ -d "${localstatedir}/etc" ]] ; then
367 with_srv_lease_file="${localstatedir}/etc/dhcpd.leases"
368 else
369 with_srv_lease_file="/etc/dhcpd.leases"
370 fi
371fi
6913a589 372AC_MSG_RESULT($with_srv_lease_file)
f8b3c6f4 373
8dea7ba7 374AC_ARG_WITH(srv6-lease-file,
cacce092 375 AS_HELP_STRING([--with-srv6-lease-file=PATH],[File for dhcpd6 leases
8dea7ba7
FD
376 (default is LOCALSTATEDIR/db/dhcpd6.leases)]),
377 AC_DEFINE_UNQUOTED([_PATH_DHCPD6_DB], ["$withval"],
378 [File for dhcpd6 leases.]))
379
6913a589 380AC_MSG_CHECKING([for dhcpd6.leases location])
8dea7ba7
FD
381if [[ "x$with_srv6_lease_file" = "x" ]] ; then
382 if [[ -d "${localstatedir}/db" ]] ; then
383 with_srv6_lease_file="${localstatedir}/db/dhcpd6.leases"
384 elif [[ -d "${localstatedir}/state" ]] ; then
385 if [[ -d "${localstatedir}/state/dhcp" ]] ; then
386 with_srv6_lease_file="${localstatedir}/state/dhcp/dhcpd6.leases"
387 else
388 with_srv6_lease_file="${localstatedir}/state/dhcpd6.leases"
389 fi
390 elif [[ -d "${localstatedir}/lib" ]] ; then
391 if [[ -d "${localstatedir}/lib/dhcp" ]] ; then
392 with_srv6_lease_file="${localstatedir}/lib/dhcp/dhcpd6.leases"
393 else
394 with_srv6_lease_file="${localstatedir}/lib/dhcpd6.leases"
395 fi
396 elif [[ -d "${localstatedir}/etc" ]] ; then
397 with_srv6_lease_file="${localstatedir}/etc/dhcpd6.leases"
398 else
399 with_srv6_lease_file="/etc/dhcpd6.leases"
400 fi
401fi
6913a589 402AC_MSG_RESULT($with_srv6_lease_file)
8dea7ba7 403
fe5b0fdd 404AC_ARG_WITH(cli-lease-file,
cacce092 405 AS_HELP_STRING([--with-cli-lease-file=PATH],[File for dhclient leases
fe5b0fdd
DH
406 (default is LOCALSTATEDIR/db/dhclient.leases)]),
407 AC_DEFINE_UNQUOTED([_PATH_DHCLIENT_DB], ["$withval"],
408 [File for dhclient leases.]))
f8b3c6f4 409
6913a589 410AC_MSG_CHECKING([for dhclient.leases location])
f8b3c6f4
DH
411if [[ "x$with_cli_lease_file" = "x" ]] ; then
412 if [[ -d "${localstatedir}/db" ]] ; then
413 with_cli_lease_file="${localstatedir}/db/dhclient.leases"
414 elif [[ -d "${localstatedir}/state" ]] ; then
415 if [[ -d "${localstatedir}/state/dhcp" ]] ; then
416 with_cli_lease_file="${localstatedir}/state/dhcp/dhclient.leases"
417 else
418 with_cli_lease_file="${localstatedir}/state/dhclient.leases"
419 fi
420 elif [[ -d "${localstatedir}/lib" ]] ; then
421 if [[ -d "${localstatedir}/lib/dhcp" ]] ; then
422 with_cli_lease_file="${localstatedir}/lib/dhcp/dhclient.leases"
423 else
424 with_cli_lease_file="${localstatedir}/lib/dhclient.leases"
425 fi
426 elif [[ -d "${localstatedir}/etc" ]] ; then
427 with_cli_lease_file="${localstatedir}/etc/dhclient.leases"
428 else
429 with_cli_lease_file="/etc/dhclient.leases"
430 fi
431fi
6913a589 432AC_MSG_RESULT($with_cli_lease_file)
f8b3c6f4 433
8dea7ba7 434AC_ARG_WITH(cli6-lease-file,
cacce092 435 AS_HELP_STRING([--with-cli6-lease-file=PATH],[File for dhclient6 leases
8dea7ba7
FD
436 (default is LOCALSTATEDIR/db/dhclient6.leases)]),
437 AC_DEFINE_UNQUOTED([_PATH_DHCLIENT6_DB], ["$withval"],
438 [File for dhclient6 leases.]))
439
6913a589 440AC_MSG_CHECKING([for dhclient6.leases location])
8dea7ba7
FD
441if [[ "x$with_cli6_lease_file" = "x" ]] ; then
442 if [[ -d "${localstatedir}/db" ]] ; then
443 with_cli6_lease_file="${localstatedir}/db/dhclient6.leases"
444 elif [[ -d "${localstatedir}/state" ]] ; then
445 if [[ -d "${localstatedir}/state/dhcp" ]] ; then
446 with_cli6_lease_file="${localstatedir}/state/dhcp/dhclient6.leases"
447 else
448 with_cli6_lease_file="${localstatedir}/state/dhclient6.leases"
449 fi
450 elif [[ -d "${localstatedir}/lib" ]] ; then
451 if [[ -d "${localstatedir}/lib/dhcp" ]] ; then
452 with_cli6_lease_file="${localstatedir}/lib/dhcp/dhclient6.leases"
453 else
454 with_cli6_lease_file="${localstatedir}/lib/dhclient6.leases"
455 fi
456 elif [[ -d "${localstatedir}/etc" ]] ; then
457 with_cli6_lease_file="${localstatedir}/etc/dhclient6.leases"
458 else
459 with_cli6_lease_file="/etc/dhclient6.leases"
460 fi
461fi
6913a589 462AC_MSG_RESULT($with_cli6_lease_file)
8dea7ba7 463
fe5b0fdd 464AC_ARG_WITH(srv-pid-file,
d7d9c0c7 465 AS_HELP_STRING([--with-srv-pid-file=PATH],[File for dhcpd process information
fe5b0fdd
DH
466 (default is LOCALSTATEDIR/run/dhcpd.pid)]),
467 AC_DEFINE_UNQUOTED([_PATH_DHCPD_PID], ["$withval"],
468 [File for dhcpd process information.]))
8dea7ba7 469AC_ARG_WITH(srv6-pid-file,
d7d9c0c7 470 AS_HELP_STRING([--with-srv6-pid-file=PATH],[File for dhcpd6 process information
8dea7ba7
FD
471 (default is LOCALSTATEDIR/run/dhcpd6.pid)]),
472 AC_DEFINE_UNQUOTED([_PATH_DHCPD6_PID], ["$withval"],
473 [File for dhcpd6 process information.]))
fe5b0fdd 474AC_ARG_WITH(cli-pid-file,
d7d9c0c7 475 AS_HELP_STRING([--with-cli-pid-file=PATH],[File for dhclient process information
fe5b0fdd 476 (default is LOCALSTATEDIR/run/dhclient.pid)]),
8dea7ba7 477 AC_DEFINE_UNQUOTED([_PATH_DHCLIENT_PID], ["$withval"],
fe5b0fdd 478 [File for dhclient process information.]))
8dea7ba7 479AC_ARG_WITH(cli6-pid-file,
d7d9c0c7 480 AS_HELP_STRING([--with-cli6-pid-file=PATH],[File for dhclient6 process information
8dea7ba7
FD
481 (default is LOCALSTATEDIR/run/dhclient6.pid)]),
482 AC_DEFINE_UNQUOTED([_PATH_DHCLIENT6_PID], ["$withval"],
483 [File for dhclient6 process information.]))
fe5b0fdd 484AC_ARG_WITH(relay-pid-file,
d7d9c0c7 485 AS_HELP_STRING([--with-relay-pid-file=PATH],[File for dhcrelay process information
fe5b0fdd
DH
486 (default is LOCALSTATEDIR/run/dhcrelay.pid)]),
487 AC_DEFINE_UNQUOTED([_PATH_DHCRELAY_PID], ["$withval"],
488 [File for dhcrelay process information.]))
4a5bfeac 489AC_ARG_WITH(relay6-pid-file,
d7d9c0c7 490 AS_HELP_STRING([--with-relay6-pid-file=PATH],[File for dhcrelay6 process information
4a5bfeac
SR
491 (default is LOCALSTATEDIR/run/dhcrelay6.pid)]),
492 AC_DEFINE_UNQUOTED([_PATH_DHCRELAY6_PID], ["$withval"],
493 [File for dhcrelay6 process information.]))
fe5b0fdd 494
cd3f0b9b
DH
495# Check basic types.
496AC_TYPE_INT8_T
497AC_TYPE_INT16_T
498AC_TYPE_INT32_T
4e0997c6 499AC_TYPE_INT64_T
cd3f0b9b
DH
500
501# Some systems need the u_intX_t types defined across.
502AC_CHECK_TYPE([u_int8_t], [], [
503 AC_TYPE_UINT8_T
504 AC_DEFINE(u_int8_t, [uint8_t], [Define a type for 8-bit unsigned
505 integers.])
506])
507AC_CHECK_TYPE([u_int16_t], [], [
508 AC_TYPE_UINT16_T
509 AC_DEFINE(u_int16_t, [uint16_t], [Define a type for 16-bit unsigned
510 integers.])
511])
512AC_CHECK_TYPE([u_int32_t], [], [
513 AC_TYPE_UINT32_T
514 AC_DEFINE(u_int32_t, [uint32_t], [Define a type for 32-bit unsigned
515 integers.])
516])
4e0997c6
SR
517AC_CHECK_TYPE([u_int64_t], [], [
518 AC_TYPE_UINT64_T
519 AC_DEFINE(u_int64_t, [uint64_t], [Define a type for 64-bit unsigned
520 integers.])
521])
cd3f0b9b 522
b8c0eda0
MA
523# see if ifaddrs.h is available
524AC_CHECK_HEADERS(ifaddrs.h)
525
fe5b0fdd 526# figure out what IPv4 interface code to use
f125dc8b
SK
527AC_CHECK_HEADERS(linux/types.h) # needed for linux/filter.h on old systems
528
529AC_CHECK_HEADER(linux/filter.h, DO_LPF=1, ,
530[
531#ifdef HAVE_LINUX_TYPES_H
532#include <linux/types.h>
533#endif
534])
535if test -n "$DO_LPF"
536then
cacce092 537 AC_DEFINE([HAVE_LPF], [1],
f125dc8b
SK
538 [Define to 1 to use the Linux Packet Filter interface code.])
539else
540 AC_CHECK_HEADER(sys/dlpi.h, DO_DLPI=1)
541 if test -n "$DO_DLPI"
542 then
cacce092 543 AC_DEFINE([HAVE_DLPI], [1],
f125dc8b
SK
544 [Define to 1 to use DLPI interface code.])
545 else
546 AC_CHECK_HEADER(net/bpf.h, DO_BPF=1)
547 if test -n "$DO_BPF"
548 then
b047bd38 549 AC_DEFINE([HAVE_BPF], [1],
cacce092 550 [Define to 1 to use the
f125dc8b
SK
551 Berkeley Packet Filter interface code.])
552 fi
553 fi
f125dc8b 554fi
fe5b0fdd 555
8da06bb1
DH
556# SIOCGLIFCONF uses some transport structures. Trick is not all platforms
557# use the same structures. We like to use 'struct lifconf' and 'struct
558# lifreq', but we'll use these other structures if they're present. HPUX
559# does not define 'struct lifnum', but does use SIOCGLIFNUM - they use an
560# int value.
561#
562AC_MSG_CHECKING([for struct lifnum])
d7d9c0c7 563AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h>
cff9b78f 564 #include <sys/socket.h>
8da06bb1 565 #include <net/if.h>
d7d9c0c7
SR
566]], [[ struct lifnum a;
567]])],[AC_MSG_RESULT(yes)
8da06bb1 568 AC_DEFINE([ISC_PLATFORM_HAVELIFNUM], [1],
d7d9c0c7 569 [Define to 1 if the system has 'struct lifnum'.])],[AC_MSG_RESULT(no)])
8da06bb1
DH
570
571AC_MSG_CHECKING([for struct if_laddrconf])
d7d9c0c7 572AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h>
8da06bb1 573 #include <net/if6.h>
d7d9c0c7
SR
574]], [[ struct if_laddrconf a;
575]])],[AC_MSG_RESULT(yes)
8da06bb1 576 AC_DEFINE([ISC_PLATFORM_HAVEIF_LADDRCONF], [1],
d7d9c0c7 577 [Define to 1 if the system has 'struct if_laddrconf'.])],[AC_MSG_RESULT(no)])
8da06bb1
DH
578
579AC_MSG_CHECKING([for struct if_laddrreq])
d7d9c0c7 580AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
8da06bb1 581 #include <net/if6.h>
d7d9c0c7
SR
582]], [[ struct if_laddrreq a;
583]])],[AC_MSG_RESULT(yes)
8da06bb1 584 AC_DEFINE([ISC_PLATFORM_HAVEIF_LADDRREQ], [1],
d7d9c0c7 585 [Define to 1 if the system has 'struct if_laddrreq'.])],[AC_MSG_RESULT(no)])
8da06bb1 586
e3c94800
SR
587#
588# check for GCC noreturn attribute
589#
590AC_MSG_CHECKING(for GCC noreturn attribute)
d7d9c0c7 591AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[void foo() __attribute__((noreturn));]])],[AC_MSG_RESULT(yes)
e3c94800 592 AC_DEFINE([ISC_DHCP_NORETURN], [__attribute__((noreturn))],
d7d9c0c7 593 [Define to the string for a noreturn attribute.])],[AC_MSG_RESULT(no)
e3c94800
SR
594 AC_DEFINE([ISC_DHCP_NORETURN], [],
595 [Define to the string for a noreturn attribute.])])
596
6dd7efa2 597# Look for optional headers.
cff9b78f 598AC_CHECK_HEADERS(sys/socket.h net/if_dl.h net/if6.h regex.h)
6dd7efa2 599
fe5b0fdd
DH
600# Solaris needs some libraries for functions
601AC_SEARCH_LIBS(socket, [socket])
602AC_SEARCH_LIBS(inet_ntoa, [nsl])
603
cacce092
TM
604AC_SEARCH_LIBS(inet_aton, [socket nsl], ,
605 AC_DEFINE([NEED_INET_ATON], [1],
fe5b0fdd
DH
606 [Define to 1 if the inet_aton() function is missing.]))
607
dd328225
DH
608# Check for a standalone regex library.
609AC_SEARCH_LIBS(regcomp, [regex])
610
dc9d7b08
MA
611AC_CHECK_FUNCS(strlcat)
612
2394b26b
DH
613# For HP/UX we need -lipv6 for if_nametoindex, perhaps others.
614AC_SEARCH_LIBS(if_nametoindex, [ipv6])
615
fe5b0fdd 616# check for /dev/random (declares HAVE_DEV_RANDOM)
b7311aae
FD
617AC_MSG_CHECKING(for random device)
618AC_ARG_WITH(randomdev,
619 AS_HELP_STRING([--with-randomdev=PATH],[Path for random device
620 (default is /dev/random)]),
621 use_randomdev="$withval", use_randomdev="unspec")
622if test "$use_randomdev" = "unspec"; then
623 if test "$cross_compiling" = "yes"; then
624 AC_MSG_RESULT(unspecified)
625 AC_MSG_ERROR([ need --with-randomdev=PATH or --with-randomdev=no])
626 fi
627 use_randomdev="/dev/random"
628elif test "$use_randomdev" = "yes"; then
629 use_randomdev="/dev/random"
630fi
631if test "$use_randomdev" = "no"; then
632 AC_MSG_RESULT(disabled)
633 BINDCONFIG="$BINDCONFIG --with-randomdev=no"
634else
635 if test "$cross_compiling" = "yes"; then
636 AC_MSG_RESULT($use_randomdev (unchecked))
637 else
638 AC_MSG_RESULT($use_randomdev)
639 AC_CHECK_FILE($use_randomdev,
640 AC_DEFINE([HAVE_DEV_RANDOM], [1],
641 [Define to 1 if you have the /dev/random or other configured file.]),
642 AC_MSG_ERROR(cannot find $use_randomdev))
643 fi
644 BINDCONFIG="$BINDCONFIG --with-randomdev=$use_randomdev"
645fi
fe5b0fdd 646
c87db1b1
FD
647BINDIOMUX="--disable-kqueue --disable-epoll --disable-devpoll"
648# check kqueue/epoll/devpoll alternative to select
649AC_ARG_ENABLE(kqueue,
650 AS_HELP_STRING([--enable-kqueue],[use BSD kqueue (default is no)]),
651 want_kqueue="$enableval", want_kqueue="no")
652if test "$want_kqueue" = "yes"; then
653 BINDIOMUX="--enable-kqueue"
654 AC_MSG_WARN([--enable-kqueue is not supported: it may lead to issues such as server looping])
655fi
656AC_ARG_ENABLE(epoll,
657 AS_HELP_STRING([--enable-epoll],[use Linux epoll (default is no)]),
658 want_epoll="$enableval", want_epoll="no")
659if test "$want_epoll" = "yes"; then
660 BINDIOMUX="--enable-epoll"
661 AC_MSG_WARN([--enable-epoll is not supported: it may lead to issues such as server looping])
662fi
663AC_ARG_ENABLE(devpoll,
664 AS_HELP_STRING([--enable-devpoll],[use /dev/poll (default is no)]),
665 want_devpoll="$enableval", want_devpoll="no")
666if test "$want_devpoll" = "yes"; then
667 BINDIOMUX="--enable-devpoll"
668 AC_MSG_WARN([--enable-devpoll is not supported: it may lead to issues such as server looping])
669fi
670AC_SUBST(BINDIOMUX)
671
672# general extra bind configure arguments
673AC_ARG_WITH(bind-extra-config,
674 AS_HELP_STRING([--with-bind-extra-config],[configure bind librairies
675 with some extra options (default is none)]),
676 use_xbindconfig="$withval", use_xbindconfig="")
677case "$use_xbindconfig" in
678yes|no|'')
679 ;;
680*)
681 BINDCONFIG="$BINDCONFIG $use_xbindconfig"
682 AC_MSG_WARN([Most options to bind configure are not supported when used by ISC DHCP])
683 ;;
684esac
685
fe5b0fdd
DH
686# see if there is a "sa_len" field in our interface information structure
687AC_CHECK_MEMBER(struct sockaddr.sa_len,
cacce092 688 AC_DEFINE([HAVE_SA_LEN], [],
fe5b0fdd
DH
689 [Define to 1 if the sockaddr structure has a length field.]),
690 ,
691 [#include <sys/socket.h>])
692
76c944da 693# figure out pointer size
f3b61519
FD
694SAVE_CFLAGS="$CFLAGS"
695CFLAGS="$CFLAGS -I$srcdir"
76c944da
SK
696AC_CHECK_SIZEOF(struct iaddr *, , [
697#include "includes/inet.h"
698#include <stdio.h>
699])
f3b61519 700CFLAGS="$SAVE_CFLAGS"
76c944da 701
cacce092 702# Solaris does not have the msg_control or msg_controlen members
847e7000
SK
703# in the msghdr structure unless you define:
704#
705# _XOPEN_SOURCE, _XOPEN_SOURCE_EXTENDED, and __EXTENSIONS__
cacce092 706#
847e7000 707# See the "standards" man page for details.
cacce092 708#
847e7000
SK
709# We check for the msg_control member, and if it is not found, we check
710# again with the appropriate defines added to the CFLAGS. (In order to
711# do this we have to remove the check from the cache, which is what the
712# "unset" is for.)
713AC_CHECK_MEMBER(struct msghdr.msg_control,,
714 [CFLAGS="$CFLAGS -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
715 CFLAGS="$CFLAGS -D__EXTENSIONS__"
716 unset ac_cv_member_struct_msghdr_msg_control
717 AC_CHECK_MEMBER(struct msghdr.msg_control,,
cacce092 718 [AC_MSG_ERROR([Missing msg_control member in
847e7000 719 msg_control structure.])],
06eb8bab
SK
720 [
721#include <sys/types.h>
722#include <sys/socket.h>
723 ])
724 ],
725 [
726#include <sys/types.h>
727#include <sys/socket.h>
728 ])
847e7000 729
75d02fcf
TM
730AC_CHECK_MEMBER(struct tpacket_auxdata.tp_vlan_tci,
731 [AC_DEFINE([VLAN_TCI_PRESENT], [1], [tpacket_auxdata.tp_vlan_tci present])]
732 ,, [#include <linux/if_packet.h>])
733
e94e7f23
FD
734# bind/Makefile.in is not from automake so we need 2 variables for bind dir
735BINDSUBDIR=
1756c869 736BINDDIR=
28fc08f6 737BINDSRCDIR=
e94e7f23
FD
738BINDLIBIRSDIR=
739BINDLIBDNSDIR=
740BINDLIBISCCFGDIR=
741BINDLIBISCDIR=
68315782 742DISTCHECK_LIBBIND_CONFIGURE_FLAG=
98bf1607 743AC_ARG_WITH(libbind,
c87db1b1 744 AS_HELP_STRING([--with-libbind=PATH],[bind includes and libraries are in PATH]),
98bf1607 745 use_libbind="$withval", use_libbind="no")
cacce092 746case "$use_libbind" in
98bf1607 747yes)
c87db1b1 748 AC_MSG_ERROR([PATH is required in --with-libbind=PATH])
98bf1607
SR
749 ;;
750no)
e94e7f23 751 BINDSUBDIR="\${top_srcdir}/bind"
c87db1b1 752 my_abs_srcdir=`cd $srcdir && pwd`
e94e7f23 753 BINDDIR="${my_abs_srcdir}/bind"
c87db1b1
FD
754 if test ! -d "$srcdir/bind"; then
755 AC_MSG_ERROR([Where to find or build bind includes and libraries must be specified])
756 fi
757 if test -d "$srcdir/bind/bind9"; then
e94e7f23 758 BINDSRCDIR="${my_abs_srcdir}/bind/bind9"
c87db1b1
FD
759 else
760 if test ! -f "$srcdir/bind/version.tmp"; then
761 AC_MSG_ERROR([Cannot find $srcdir/bind/version.tmp])
762 fi
763 . "$srcdir/bind/version.tmp"
764 bindversion=${MAJORVER}.${MINORVER}.${PATCHVER}${RELEASETYPE}${RELEASEVER}
e94e7f23 765 BINDSRCDIR="${my_abs_srcdir}/bind/bind-$bindversion"
c87db1b1
FD
766 fi
767 AC_CONFIG_FILES([$srcdir/bind/Makefile])
e94e7f23 768
ae91e4db
FD
769 BINDLIBIRSDIR="$BINDSRCDIR/lib/irs"
770 BINDLIBDNSDIR="$BINDSRCDIR/lib/dns"
771 BINDLIBISCCFGDIR="$BINDSRCDIR/lib/isccfg"
772 BINDLIBISCDIR="$BINDSRCDIR/lib/isc"
98bf1607
SR
773 ;;
774*)
c87db1b1
FD
775 if test ! -d "$use_libbind"; then
776 AC_MSG_ERROR([Cannot find bind directory at $use_libbind])
777 fi
6d91a86b
FD
778 if test ! -d "$use_libbind/include" -o \
779 ! -f "$use_libbind/include/isc/buffer.h"
780 then
c87db1b1 781 AC_MSG_ERROR([Cannot find bind includes at $use_libbind/include])
1756c869 782 fi
6d91a86b
FD
783 if test ! -d "$use_libbind/lib" -o \
784 \( ! -f "$use_libbind/lib/libisc.a" -a \
785 ! -f "$use_libbind/lib/libisc.la" \)
786 then
c87db1b1
FD
787 AC_MSG_ERROR([Cannot find bind libraries at $use_libbind/lib])
788 fi
789 BINDDIR="$use_libbind"
e94e7f23
FD
790 BINDLIBIRSDIR="$BINDDIR/lib"
791 BINDLIBDNSDIR="$BINDDIR/lib"
792 BINDLIBISCCFGDIR="$BINDDIR/lib"
793 BINDLIBISCDIR="$BINDDIR/lib"
68315782 794 DISTCHECK_LIBBIND_CONFIGURE_FLAG="--with-libbind=$use_libbind"
98bf1607
SR
795 ;;
796esac
e94e7f23 797AC_SUBST(BINDSUBDIR)
1756c869 798AC_SUBST(BINDDIR)
28fc08f6 799AC_SUBST(BINDSRCDIR)
e94e7f23
FD
800AC_SUBST(BINDLIBIRSDIR)
801AC_SUBST(BINDLIBDNSDIR)
802AC_SUBST(BINDLIBISCCFGDIR)
803AC_SUBST(BINDLIBISCDIR)
68315782
FD
804AC_SUBST(DISTCHECK_LIBBIND_CONFIGURE_FLAG)
805AM_CONDITIONAL(HAVE_BINDDIR, test "$use_libbind" = "no")
98bf1607 806
13e5cc6c
FD
807#
808# GNU libtool support
809#
810case "$build_os" in
811 sunos*)
812 # Just set the maximum command line length for sunos
813 # as it otherwise takes a exceptionally long time to
814 # work it out. Required for libtool.
815
816 lt_cv_sys_max_cmd_len=4096
817 ;;
818esac
819
820want_libtool="no"
821
822BINDLT=
bf6f8fce 823DISTCHECK_LIBTOOL_CONFIGURE_FLAG=
13e5cc6c 824AC_ARG_ENABLE(libtool,
6d91a86b
FD
825 AS_HELP_STRING([--enable-libtool],
826[use GNU libtool for dynamic shared libraries (default is no).]),
13e5cc6c 827 want_libtool="$enableval")
d113bc2c 828
6d91a86b
FD
829if test "$use_libbind" != "no"; then
830 if test "$want_libtool" = "yes" -a \
831 ! -f "$use_libbind/lib/libisc.la"
832 then
833 AC_MSG_ERROR([Cannot find dynamic libraries at $use_libbind/lib])
834 fi
835 if test "$want_libtool" = "no" -a \
836 ! -f "$use_libbind/lib/libisc.a"
837 then
838 AC_MSG_ERROR([Cannot find static libraries at $use_libbind/lib])
839 fi
840fi
841
d113bc2c 842
13e5cc6c
FD
843if test "$want_libtool" = "yes"; then
844 AC_MSG_WARN([legacy configure is used but libtool is enabled. Trying to recover...])
6d91a86b 845 # expand $ac_configure_args
d113bc2c
FD
846 eval "set my_configure_args $ac_configure_args"
847 shift
6d91a86b 848 cd $srcdir; exec ./config+lt "$@"
13e5cc6c
FD
849 AC_MSG_ERROR([Recovering failed])
850fi
d113bc2c
FD
851
852DHLIBS=LIBRARIES
13e5cc6c 853A=a
d113bc2c
FD
854
855AC_SUBST(DHLIBS)
13e5cc6c
FD
856AC_SUBST(A)
857AC_SUBST(BINDLT)
bf6f8fce
FD
858AC_SUBST(DISTCHECK_LIBTOOL_CONFIGURE_FLAG)
859
860# quoting in Makefile.am.in
861Q=@
862AC_SUBST(Q)
863
864# install bind includes and libraries
865
866want_install_bind="no"
867if test "$want_libtool" = "yes"; then
868 want_install_bind="yes"
869fi
870if test "$use_libbind" != "no"; then
871 want_install_bind="no"
872fi
873AC_ARG_ENABLE(bind_install,
6d91a86b
FD
874 AS_HELP_STRING([--enable-bind-install],
875[install bind includes and libraries (default is no).]),
bf6f8fce
FD
876 want_install_bind="$enableval")
877if test "$want_install_bind" = "yes"; then
878 if test "$use_libbind" != "no"; then
879 AC_MSG_WARN([--enable-bind-install does nothing when --with-libbind is set])
880 fi
881elif test "$want_libtool" = "yes" -a "$use_libbind" = "no"; then
882 AC_MSG_WARN([embedded dynamic bind libraries must be installed])
883fi
884AM_CONDITIONAL(INSTALL_BIND, test "$want_install_bind" = "yes")
13e5cc6c 885
33692791
DH
886# OpenLDAP support.
887AC_ARG_WITH(ldap,
d7d9c0c7 888 AS_HELP_STRING([--with-ldap],[enable OpenLDAP support in dhcpd (default is no)]),
33692791
DH
889 [ldap=$withval],
890 [ldap=no])
891
892# OpenLDAP with SSL support.
893AC_ARG_WITH(ldapcrypto,
d7d9c0c7 894 AS_HELP_STRING([--with-ldapcrypto],[enable OpenLDAP crypto support in dhcpd (default is no)]),
33692791
DH
895 [ldapcrypto=$withval],
896 [ldapcrypto=no])
897
743d6937
TM
898# Gssapi to allow LDAP to authenticate with a keytab
899AC_ARG_WITH(ldap-gssapi,
900 AC_HELP_STRING([--with-ldap-gssapi],
901 [enable krb5/gssapi authentication for OpenLDAP in dhcpd (default is no)]),
902 [ldap_gssapi=$withval],
903 [ldap_gssapi=no])
904
905
906# LDAP CASA auth support.
907AC_ARG_WITH(ldapcasa,
908 AC_HELP_STRING([--with-ldapcasa],
909 [enable LDAP CASA auth support in dhcpd (default is no)]),
910 [ldapcasa=$withval],
911 [ldapcasa=no])
912
33692791
DH
913# OpenLDAP support is disabled by default, if enabled then SSL support is an
914# extra optional that is also disabled by default. Enabling LDAP SSL support
743d6937
TM
915# implies enabling LDAP support. Similarly, KRB5 support implies LDAP support,
916# but doesn't include SSL. The two are not dependant.
917if test x$ldap = xyes || test x$ldapcrypto = xyes || test x$ldap_gssapi = xyes; then
918 saved_LIBS="$LIBS"
919 LIBS=""
33692791
DH
920 AC_SEARCH_LIBS(ldap_initialize, [ldap], ,
921 AC_MSG_FAILURE([*** Cannot find ldap_initialize with -lldap - do you need to install an OpenLDAP2 Devel package?]))
8a0d9ca4
SR
922 AC_SEARCH_LIBS(ber_pvt_opt_on, [lber], ,
923 AC_MSG_FAILURE([*** Cannot find ber_pvt_opt_on with -llber - do you need to install an OpenLDAP2 Devel package?]))
743d6937
TM
924 if test x$ldap_gssapi = xyes ; then
925 AC_SEARCH_LIBS(krb5_init_context, [krb5], ,
926 AC_MSG_FAILURE([*** Cannot find krb5_init_context with -lkrb5 - do you need to install a Kerberos Devel package?]))
927 fi
928
929 # Create LDAP_LIBS which we specify them explicitly rather than lumping them in with LIBS
930 AC_SUBST(LDAP_LIBS, [$LIBS])
931 LIBS="$saved_LIBS"
932
933
934 AC_CHECK_HEADERS([ldap.h])
935 AC_CHECK_FUNCS([inet_pton inet_ntop])
936
937
938 LDAP_CFLAGS="-DLDAP_CONFIGURATION"
939
940 if test x$ldapcasa = xyes ; then
941 AC_CHECK_HEADERS([micasa_mgmd.h],[
942 LDAP_CFLAGS="$LDAP_CFLAGS -DLDAP_CASA_AUTH"
943 ], AC_MSG_FAILURE([*** Cannot find micasa_mgmd.h for ldap casa auth support]))
944 fi
33692791
DH
945
946 if test x$ldapcrypto = xyes ; then
743d6937 947 LDAP_CFLAGS="$LDAP_CFLAGS -DLDAP_USE_SSL"
33692791 948 fi
743d6937
TM
949
950 if test x$ldap_gssapi = xyes; then
951 LDAP_CFLAGS="$LDAP_CFLAGS -DLDAP_USE_GSSAPI"
952 fi
953
954 AC_SUBST(LDAP_CFLAGS, [$LDAP_CFLAGS])
33692791
DH
955fi
956
eaf7eb17 957# Append selected warning levels to CFLAGS before substitution (but after
d7d9c0c7 958# AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],[],[]) & etc).
eaf7eb17
DH
959CFLAGS="$CFLAGS $STD_CWARNINGS"
960
28fc08f6
FD
961# Try to add the bind and dhcp include directories
962CFLAGS="$CFLAGS -I\$(top_srcdir)/includes -I$BINDDIR/include"
98bf1607 963
a24b9f23
MA
964case "$host" in
965*-darwin*)
0f1a34e9
TM
966 CFLAGS="$CFLAGS -D__APPLE_USE_RFC_3542";;
967*-solaris*)
968 # As of Solaris 11, ethernet dev files are in /dev/net
969 AC_CHECK_FILE(/dev/net,
970 [AC_DEFINE([USE_DEV_NET], [1],
971 [Define to 1 if ethernet devices are in /dev/net])])
972 ;;
a24b9f23
MA
973esac
974
a3528574
SR
975AC_C_FLEXIBLE_ARRAY_MEMBER
976
d7d9c0c7 977AC_CONFIG_FILES([
fe5b0fdd
DH
978 Makefile
979 client/Makefile
79818c93 980 client/tests/Makefile
13e5cc6c 981 common/Makefile.am
fe5b0fdd 982 common/Makefile
6e999c3c 983 common/tests/Makefile
13e5cc6c 984 dhcpctl/Makefile.am
fe5b0fdd 985 dhcpctl/Makefile
fe5b0fdd 986 includes/Makefile
13e5cc6c 987 omapip/Makefile.am
fe5b0fdd
DH
988 omapip/Makefile
989 relay/Makefile
990 server/Makefile
13e5cc6c 991 tests/Makefile.am
6e999c3c 992 tests/Makefile
9a111ee8 993 tests/unittest.sh
2898f89e 994 server/tests/Makefile
82cb9b64 995 doc/devel/doxyfile
6ecda39c 996])
d7d9c0c7 997AC_OUTPUT
fe5b0fdd 998
13e5cc6c 999
785c1a51
FD
1000if test "$enable_dhcpv4o6" = "yes"; then
1001 DHCP_VERSIONS="DHCPv4, DHCPv6 and DHCPv4-over-DHCPv6"
1002elif test "$enable_dhcpv6" != "no"; then
1003 DHCP_VERSIONS="DHCPv4 and DHCPv6"
1004else
1005 DHCP_VERSIONS="DHCPv4"
1006fi
1007
2898f89e
TM
1008cat > config.report << END
1009
1010 ISC DHCP source configure results:
1011 -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
1012
1013Package:
1014 Name: $PACKAGE_NAME
1015 Version: $PACKAGE_VERSION
1016
1017C Compiler: $CC
1018
1019Flags:
1020 DEFS: $DEFS
1021 CFLAGS: $CFLAGS
1022
785c1a51
FD
1023DHCP versions: $DHCP_VERSIONS
1024
2898f89e
TM
1025Features:
1026 debug: $enable_debug
1027 failover: $enable_failover
1028 execute: $enable_execute
3933e2aa 1029 binary-leases: $enable_binary_leases
e82906fc
TM
1030 dhcpv6: $enable_dhcpv6
1031 delayed-ack: $enable_delayed_ack
2898f89e
TM
1032
1033Developer:
99d4c286 1034 ATF unittests : $atf_path
2898f89e
TM
1035
1036END
2898f89e
TM
1037# TODO: Add Perl system tests
1038
99d4c286 1039if test "$atf_path" != "no"
2898f89e
TM
1040then
1041echo "ATF_CFLAGS : $ATF_CFLAGS" >> config.report
1042echo "ATF_LDFLAGS : $ATF_LDFLAGS" >> config.report
9a111ee8 1043echo "ATF_BIN : $ATF_BIN" >> config.report
2898f89e
TM
1044echo
1045fi
1046
1047cat config.report
1048
1049echo
1050echo Now you can type "make" to build ISC DHCP
1051echo