]> git.ipfire.org Git - thirdparty/dhcp.git/blame - configure.ac
[rt25901_atf] Test for 29851 simiplified
[thirdparty/dhcp.git] / configure.ac
CommitLineData
82cb9b64 1AC_INIT([DHCP], [4.2.0-git], [dhcp-users@isc.org])
fe5b0fdd
DH
2
3# we specify "foreign" to avoid having to have the GNU mandated files,
4# like AUTHORS, COPYING, and such
5AM_INIT_AUTOMAKE([foreign])
6
25f664a6
SR
7# we specify AM_MAINTAINER_MODE to avoid problems with rebuilding
8# the configure and makefiles. Without it users doing things that
9# change the timestamps on the code, like checking it into a cvs
10# tree, could trigger a rebuild of the infrastructure files which
11# might fail if they don't have the correct tools.
12AM_MAINTAINER_MODE
13
06eb8bab
SK
14# We want to turn on warnings if we are using gcc and the user did
15# not specify CFLAGS. The autoconf check for the C compiler sets the
16# CFLAGS if gcc is used, so we will save it before we run that check.
17SAVE_CFLAGS="$CFLAGS"
18
19# Now find our C compiler.
fe5b0fdd 20AC_PROG_CC
06eb8bab 21
159c89d7
EH
22# Suppress warnings about --datarootdir
23AC_DEFUN([AC_DATAROOTDIR_CHECKED])
24
06eb8bab
SK
25# If we have gcc, and AC_PROG_CC changed the flags, then we know the
26# user did not specify any flags. Add warnings in this case.
27if test "$GCC" = "yes"; then
28 if test "$CFLAGS" != "$SAVE_CFLAGS"; then
eaf7eb17 29 STD_CWARNINGS="$STD_CWARNINGS -Wall -Werror -fno-strict-aliasing"
06eb8bab
SK
30 fi
31fi
32
ae566556
SR
33# POSIX doesn't include the IPv6 Advanced Socket API and glibc hides
34# parts of the IPv6 Advanced Socket API as a result. This is stupid
35# as it breaks how the two halves (Basic and Advanced) of the IPv6
36# Socket API were designed to be used but we have to live with it.
37# Use this to define _GNU_SOURCE to pull in the IPv6 Advanced Socket API.
38AC_USE_SYSTEM_EXTENSIONS
39
fe5b0fdd
DH
40AC_PROG_RANLIB
41AC_CONFIG_HEADERS([includes/config.h])
42
43# we sometimes need to know byte order for building packets
44AC_C_BIGENDIAN(AC_SUBST(byte_order, BIG_ENDIAN),
45 AC_SUBST(byte_order, LITTLE_ENDIAN))
46AC_DEFINE_UNQUOTED([DHCP_BYTE_ORDER], [$byte_order],
47 [Define to BIG_ENDIAN for MSB (Motorola or SPARC CPUs)
48 or LITTLE_ENDIAN for LSB (Intel CPUs).])
49
66cebfcb
DH
50# Optional compile-time DEBUGging.
51AC_ARG_ENABLE(debug,
52 AC_HELP_STRING([--enable-debug],
99d4c286
TM
53 [create a debug-only version of the software (default is no).]),
54 [enable_debug=yes],[enable_debug=no])
66cebfcb
DH
55# This is very much off by default.
56if test "$enable_debug" = "yes" ; then
57 AC_DEFINE([DEBUG], [1],
58 [Define to compile debug-only DHCP software.])
59 # Just override CFLAGS to totally to remove optimization.
60 CFLAGS="-g"
61fi
62# XXX: there are actually quite a lot more DEBUG_ features we could enable,
63# but I don't want to pollute the --help space.
64#
65#/* #define DEBUG_TOKENS */
66#/* #define DEBUG_PACKET */
67#/* #define DEBUG_EXPRESSIONS */
68#/* #define DEBUG_FIND_LEASE */
69#/* #define DEBUG_EXPRESSION_PARSE */
70#/* #define DEBUG_CLASS_MATCHING */
71#/* #define DEBUG_MEMORY_LEAKAGE */
72#/* #define DEBUG_MALLOC_POOL */
73#/* #define DEBUG_LEASE_STATE_TRANSITIONS */
74#/* #define DEBUG_RC_HISTORY */
75#/* #define DEBUG_RC_HISTORY_EXHAUSTIVELY */
76#/* #define RC_HISTORY_MAX 10240 */
77#/* #define POINTER_DEBUG */
78#/* #define DEBUG_FAILOVER_MESSAGES */
79#/* #define DEBUG_FAILOVER_TIMING */
80#/* #define DEBUG_DUMP_ALL_LEASES */
81
82# Failover optional compile-time feature.
83AC_ARG_ENABLE(failover,
84 AC_HELP_STRING([--enable-failover],
85 [enable support for failover (default is yes)]))
86# Failover is on by default, so define if it is not explicitly disabled.
87if test "$enable_failover" != "no"; then
88 AC_DEFINE([FAILOVER_PROTOCOL], [1],
89 [Define to include Failover Protocol support.])
90fi
91
92# execute() support.
93AC_ARG_ENABLE(execute,
94 AC_HELP_STRING([--enable-execute],
95 [enable support for execute() in config (default is yes)]))
96# execute() is on by default, so define if it is not explicitly disabled.
97if test "$enable_execute" != "no" ; then
98 AC_DEFINE([ENABLE_EXECUTE], [1],
99 [Define to include execute() config language support.])
100fi
101
102# Server tracing support.
103AC_ARG_ENABLE(tracing,
104 AC_HELP_STRING([--enable-tracing],
105 [enable support for server activity tracing (default is yes)]))
106# tracing is on by default, so define if it is not explicitly disabled.
107if test "$enable_tracing" != "no" ; then
108 AC_DEFINE([TRACING], [1],
109 [Define to include server activity tracing support.])
110fi
111
fbcee149
DH
112# Delayed-ack feature support (experimental).
113AC_ARG_ENABLE(delayed_ack,
114 AC_HELP_STRING([--enable-delayed-ack],
115 [queues multiple DHCPACK replies (default is no)]))
116if test "$enable_delayed_ack" = "yes"; then
117 AC_DEFINE([DELAYED_ACK], [1],
118 [Define to queue multiple DHCPACK replies per fsync.])
119fi
120
66cebfcb 121# DHCPv6 optional compile-time feature.
fe5b0fdd
DH
122AC_ARG_ENABLE(dhcpv6,
123 AC_HELP_STRING([--enable-dhcpv6],
d00d373a 124 [enable support for DHCPv6 (default is yes)]))
66cebfcb 125# DHCPv6 is on by default, so define if it is not explicitly disabled.
d00d373a 126if test "$enable_dhcpv6" != "no"; then
fe5b0fdd 127 AC_DEFINE([DHCPv6], [1],
d00d373a
SK
128 [Define to 1 to include DHCPv6 support.])
129fi
fe5b0fdd 130
63971a83
DH
131# PARANOIA is off by default (until we can test it with all features)
132AC_ARG_ENABLE(paranoia,
133 AC_HELP_STRING([--enable-paranoia],
134 [enable support for chroot/setuid (default is no)]))
135AC_ARG_ENABLE(early_chroot,
26ef247f 136 AC_HELP_STRING([--enable-early-chroot],
63971a83
DH
137 [enable chrooting prior to configuration (default is no)]))
138# If someone enables early chroot, but does not enable paranoia, do so for
139# them.
140if test "$enable_paranoia" != "yes" && \
141 test "$enable_early_chroot" = "yes" ; then
142 enable_paranoia="yes"
143fi
144
145if test "$enable_paranoia" = "yes" ; then
146 AC_DEFINE([PARANOIA], [1],
147 [Define to any value to include Ari's PARANOIA patch.])
148fi
149if test "$enable_early_chroot" = "yes" ; then
150 AC_DEFINE([EARLY_CHROOT], [1],
151 [Define to any value to chroot() prior to loading config.])
152fi
153
7cfeb916
SR
154AC_ARG_ENABLE(IPv4_PKTINFO,
155 AC_HELP_STRING([--enable-ipv4-pktinfo],
156 [enable use of pktinfo on IPv4 sockets (default is no)]))
157
158if test "$enable_ipv4_pktinfo" = "yes"; then
159 AC_DEFINE([USE_V4_PKTINFO], [1],
160 [Define to 1 to enable IPv4 packet info support.])
161fi
162
163AC_ARG_ENABLE(USE_SOCKETS,
164 AC_HELP_STRING([--enable-use-sockets],
165 [use the standard BSD socket API (default is no)]))
166
167if test "$enable_use_sockets" = "yes"; then
168 AC_DEFINE([USE_SOCKETS], [1],
169 [Define to 1 to use the standard BSD socket API.])
170fi
171
2898f89e
TM
172# Testing section
173
c79f8104
TM
174atf_path="no"
175AC_ARG_WITH([atf],
176 AC_HELP_STRING([--with-atf=PATH],
177 [specify location where atf was installed]),
178 [atf_path="$withval"])
179if test "$atf_path" != "no" ; then
180 # Config path for pkg-config
181 atf_pcp=""
182 if test "$atf_path" != "yes" ; then
183 if test -f $atf_path/lib/pkgconfig/atf-c.pc ; then
184 atf_pcp=$atf_path/lib/pkgconfig
185 fi
186 else
187 # Not specified, try some common paths
188 atf_dirs="/usr /usr/local /usr/pkg /opt /opt/local"
189 for d in $atf_dirs
190 do
191 if test -f $d/lib/pkgconfig/atf-c.pc ; then
192 atf_pcp=$d/lib/pkgconfig
193 fi
194 done
195 fi
196 if test "$atf_pcp" = "" ; then
197 AC_MSG_ERROR([Unable to find atf files in location specified])
198 else
199 ATF_CFLAGS="`PKG_CONFIG_PATH=$atf_pcp pkg-config --cflags atf-c` -DUNIT_TEST"
200 ATF_LDFLAGS="`PKG_CONFIG_PATH=$atf_pcp pkg-config --libs atf-c`"
201 AC_SUBST(ATF_CFLAGS)
202 AC_SUBST(ATF_LDFLAGS)
203 fi
2898f89e 204fi
c79f8104
TM
205
206AM_CONDITIONAL(HAVE_ATF, test "$atf_pcp" != "")
5fe45d07
TM
207### Uncomment this once docs.lab.isc.org upgrades to automake 1.11
208### AM_COND_IF([HAVE_ATF], [AC_DEFINE([HAVE_ATF], [1], [ATF framework specified?])])
2898f89e 209
f8b3c6f4
DH
210###
211### Path fun. Older versions of DHCP were installed in /usr/sbin, so we
212### need to look there and potentially overwrite by default (but not if
213### the user configures an alternate value). LOCALSTATEDIR is totally
214### braindead. No one uses /usr/local/var/db/ nor /usr/local/var/run, and
215### they would be insane for suggesting it. We need to look in /var/for
216### 'db' and 'state/dhcp' for db files, and /var/run for pid files by
217### default.
218###
219AC_PREFIX_PROGRAM(dhcpd)
220
221# XXX - isn't there SOME WAY to default autoconf to /var instead of
222# /usr/local/var/no/one/has/this/please/stop/trying?
223case "$localstatedir" in
224 '${prefix}/var')
225 localstatedir=/var
226 ;;
227esac
228
fe5b0fdd
DH
229# Allow specification of alternate state files
230AC_ARG_WITH(srv-lease-file,
231 AC_HELP_STRING([--with-srv-lease-file=PATH],
232 [File for dhcpd leases
233 (default is LOCALSTATEDIR/db/dhcpd.leases)]),
234 AC_DEFINE_UNQUOTED([_PATH_DHCPD_DB], ["$withval"],
235 [File for dhcpd leases.]))
f8b3c6f4
DH
236
237echo -n "checking for dhcpd.leases location..."
238if [[ "x$with_srv_lease_file" = "x" ]] ; then
239 if [[ -d "${localstatedir}/db" ]] ; then
240 with_srv_lease_file="${localstatedir}/db/dhcpd.leases"
241 elif [[ -d "${localstatedir}/state" ]] ; then
242 if [[ -d "${localstatedir}/state/dhcp" ]] ; then
243 with_srv_lease_file="${localstatedir}/state/dhcp/dhcpd.leases"
244 else
245 with_srv_lease_file="${localstatedir}/state/dhcpd.leases"
246 fi
247 elif [[ -d "${localstatedir}/lib" ]] ; then
248 if [[ -d "${localstatedir}/lib/dhcp" ]] ; then
249 with_srv_lease_file="${localstatedir}/lib/dhcp/dhcpd.leases"
250 else
251 with_srv_lease_file="${localstatedir}/lib/dhcpd.leases"
252 fi
253 elif [[ -d "${localstatedir}/etc" ]] ; then
254 with_srv_lease_file="${localstatedir}/etc/dhcpd.leases"
255 else
256 with_srv_lease_file="/etc/dhcpd.leases"
257 fi
258fi
259echo "$with_srv_lease_file"
260
8dea7ba7
FD
261AC_ARG_WITH(srv6-lease-file,
262 AC_HELP_STRING([--with-srv6-lease-file=PATH],
263 [File for dhcpd6 leases
264 (default is LOCALSTATEDIR/db/dhcpd6.leases)]),
265 AC_DEFINE_UNQUOTED([_PATH_DHCPD6_DB], ["$withval"],
266 [File for dhcpd6 leases.]))
267
268echo -n "checking for dhcpd6.leases location..."
269if [[ "x$with_srv6_lease_file" = "x" ]] ; then
270 if [[ -d "${localstatedir}/db" ]] ; then
271 with_srv6_lease_file="${localstatedir}/db/dhcpd6.leases"
272 elif [[ -d "${localstatedir}/state" ]] ; then
273 if [[ -d "${localstatedir}/state/dhcp" ]] ; then
274 with_srv6_lease_file="${localstatedir}/state/dhcp/dhcpd6.leases"
275 else
276 with_srv6_lease_file="${localstatedir}/state/dhcpd6.leases"
277 fi
278 elif [[ -d "${localstatedir}/lib" ]] ; then
279 if [[ -d "${localstatedir}/lib/dhcp" ]] ; then
280 with_srv6_lease_file="${localstatedir}/lib/dhcp/dhcpd6.leases"
281 else
282 with_srv6_lease_file="${localstatedir}/lib/dhcpd6.leases"
283 fi
284 elif [[ -d "${localstatedir}/etc" ]] ; then
285 with_srv6_lease_file="${localstatedir}/etc/dhcpd6.leases"
286 else
287 with_srv6_lease_file="/etc/dhcpd6.leases"
288 fi
289fi
290echo "$with_srv6_lease_file"
291
fe5b0fdd
DH
292AC_ARG_WITH(cli-lease-file,
293 AC_HELP_STRING([--with-cli-lease-file=PATH],
294 [File for dhclient leases
295 (default is LOCALSTATEDIR/db/dhclient.leases)]),
296 AC_DEFINE_UNQUOTED([_PATH_DHCLIENT_DB], ["$withval"],
297 [File for dhclient leases.]))
f8b3c6f4
DH
298
299echo -n "checking for dhclient.leases location..."
300if [[ "x$with_cli_lease_file" = "x" ]] ; then
301 if [[ -d "${localstatedir}/db" ]] ; then
302 with_cli_lease_file="${localstatedir}/db/dhclient.leases"
303 elif [[ -d "${localstatedir}/state" ]] ; then
304 if [[ -d "${localstatedir}/state/dhcp" ]] ; then
305 with_cli_lease_file="${localstatedir}/state/dhcp/dhclient.leases"
306 else
307 with_cli_lease_file="${localstatedir}/state/dhclient.leases"
308 fi
309 elif [[ -d "${localstatedir}/lib" ]] ; then
310 if [[ -d "${localstatedir}/lib/dhcp" ]] ; then
311 with_cli_lease_file="${localstatedir}/lib/dhcp/dhclient.leases"
312 else
313 with_cli_lease_file="${localstatedir}/lib/dhclient.leases"
314 fi
315 elif [[ -d "${localstatedir}/etc" ]] ; then
316 with_cli_lease_file="${localstatedir}/etc/dhclient.leases"
317 else
318 with_cli_lease_file="/etc/dhclient.leases"
319 fi
320fi
321echo "$with_cli_lease_file"
322
8dea7ba7
FD
323AC_ARG_WITH(cli6-lease-file,
324 AC_HELP_STRING([--with-cli6-lease-file=PATH],
325 [File for dhclient6 leases
326 (default is LOCALSTATEDIR/db/dhclient6.leases)]),
327 AC_DEFINE_UNQUOTED([_PATH_DHCLIENT6_DB], ["$withval"],
328 [File for dhclient6 leases.]))
329
330echo -n "checking for dhclient6.leases location..."
331if [[ "x$with_cli6_lease_file" = "x" ]] ; then
332 if [[ -d "${localstatedir}/db" ]] ; then
333 with_cli6_lease_file="${localstatedir}/db/dhclient6.leases"
334 elif [[ -d "${localstatedir}/state" ]] ; then
335 if [[ -d "${localstatedir}/state/dhcp" ]] ; then
336 with_cli6_lease_file="${localstatedir}/state/dhcp/dhclient6.leases"
337 else
338 with_cli6_lease_file="${localstatedir}/state/dhclient6.leases"
339 fi
340 elif [[ -d "${localstatedir}/lib" ]] ; then
341 if [[ -d "${localstatedir}/lib/dhcp" ]] ; then
342 with_cli6_lease_file="${localstatedir}/lib/dhcp/dhclient6.leases"
343 else
344 with_cli6_lease_file="${localstatedir}/lib/dhclient6.leases"
345 fi
346 elif [[ -d "${localstatedir}/etc" ]] ; then
347 with_cli6_lease_file="${localstatedir}/etc/dhclient6.leases"
348 else
349 with_cli6_lease_file="/etc/dhclient6.leases"
350 fi
351fi
352echo "$with_cli6_lease_file"
353
fe5b0fdd
DH
354AC_ARG_WITH(srv-pid-file,
355 AC_HELP_STRING([--with-srv-pid-file=PATH],
356 [File for dhcpd process information
357 (default is LOCALSTATEDIR/run/dhcpd.pid)]),
358 AC_DEFINE_UNQUOTED([_PATH_DHCPD_PID], ["$withval"],
359 [File for dhcpd process information.]))
8dea7ba7
FD
360AC_ARG_WITH(srv6-pid-file,
361 AC_HELP_STRING([--with-srv6-pid-file=PATH],
362 [File for dhcpd6 process information
363 (default is LOCALSTATEDIR/run/dhcpd6.pid)]),
364 AC_DEFINE_UNQUOTED([_PATH_DHCPD6_PID], ["$withval"],
365 [File for dhcpd6 process information.]))
fe5b0fdd
DH
366AC_ARG_WITH(cli-pid-file,
367 AC_HELP_STRING([--with-cli-pid-file=PATH],
368 [File for dhclient process information
369 (default is LOCALSTATEDIR/run/dhclient.pid)]),
8dea7ba7 370 AC_DEFINE_UNQUOTED([_PATH_DHCLIENT_PID], ["$withval"],
fe5b0fdd 371 [File for dhclient process information.]))
8dea7ba7
FD
372AC_ARG_WITH(cli6-pid-file,
373 AC_HELP_STRING([--with-cli6-pid-file=PATH],
374 [File for dhclient6 process information
375 (default is LOCALSTATEDIR/run/dhclient6.pid)]),
376 AC_DEFINE_UNQUOTED([_PATH_DHCLIENT6_PID], ["$withval"],
377 [File for dhclient6 process information.]))
fe5b0fdd
DH
378AC_ARG_WITH(relay-pid-file,
379 AC_HELP_STRING([--with-relay-pid-file=PATH],
380 [File for dhcrelay process information
381 (default is LOCALSTATEDIR/run/dhcrelay.pid)]),
382 AC_DEFINE_UNQUOTED([_PATH_DHCRELAY_PID], ["$withval"],
383 [File for dhcrelay process information.]))
4a5bfeac
SR
384AC_ARG_WITH(relay6-pid-file,
385 AC_HELP_STRING([--with-relay6-pid-file=PATH],
386 [File for dhcrelay6 process information
387 (default is LOCALSTATEDIR/run/dhcrelay6.pid)]),
388 AC_DEFINE_UNQUOTED([_PATH_DHCRELAY6_PID], ["$withval"],
389 [File for dhcrelay6 process information.]))
fe5b0fdd 390
cd3f0b9b
DH
391# Check basic types.
392AC_TYPE_INT8_T
393AC_TYPE_INT16_T
394AC_TYPE_INT32_T
4e0997c6 395AC_TYPE_INT64_T
cd3f0b9b
DH
396
397# Some systems need the u_intX_t types defined across.
398AC_CHECK_TYPE([u_int8_t], [], [
399 AC_TYPE_UINT8_T
400 AC_DEFINE(u_int8_t, [uint8_t], [Define a type for 8-bit unsigned
401 integers.])
402])
403AC_CHECK_TYPE([u_int16_t], [], [
404 AC_TYPE_UINT16_T
405 AC_DEFINE(u_int16_t, [uint16_t], [Define a type for 16-bit unsigned
406 integers.])
407])
408AC_CHECK_TYPE([u_int32_t], [], [
409 AC_TYPE_UINT32_T
410 AC_DEFINE(u_int32_t, [uint32_t], [Define a type for 32-bit unsigned
411 integers.])
412])
4e0997c6
SR
413AC_CHECK_TYPE([u_int64_t], [], [
414 AC_TYPE_UINT64_T
415 AC_DEFINE(u_int64_t, [uint64_t], [Define a type for 64-bit unsigned
416 integers.])
417])
cd3f0b9b 418
b8c0eda0
MA
419# see if ifaddrs.h is available
420AC_CHECK_HEADERS(ifaddrs.h)
421
fe5b0fdd 422# figure out what IPv4 interface code to use
f125dc8b
SK
423AC_CHECK_HEADERS(linux/types.h) # needed for linux/filter.h on old systems
424
425AC_CHECK_HEADER(linux/filter.h, DO_LPF=1, ,
426[
427#ifdef HAVE_LINUX_TYPES_H
428#include <linux/types.h>
429#endif
430])
431if test -n "$DO_LPF"
432then
a57df74a 433 AC_DEFINE([HAVE_LPF], [1],
f125dc8b
SK
434 [Define to 1 to use the Linux Packet Filter interface code.])
435else
436 AC_CHECK_HEADER(sys/dlpi.h, DO_DLPI=1)
437 if test -n "$DO_DLPI"
438 then
a57df74a 439 AC_DEFINE([HAVE_DLPI], [1],
f125dc8b
SK
440 [Define to 1 to use DLPI interface code.])
441 else
442 AC_CHECK_HEADER(net/bpf.h, DO_BPF=1)
443 if test -n "$DO_BPF"
444 then
a57df74a 445 AC_DEFINE([HAVE_BPF], [""],
f125dc8b
SK
446 [Define to 1 to use the
447 Berkeley Packet Filter interface code.])
448 fi
449 fi
f125dc8b 450fi
fe5b0fdd 451
8da06bb1
DH
452# SIOCGLIFCONF uses some transport structures. Trick is not all platforms
453# use the same structures. We like to use 'struct lifconf' and 'struct
454# lifreq', but we'll use these other structures if they're present. HPUX
455# does not define 'struct lifnum', but does use SIOCGLIFNUM - they use an
456# int value.
457#
458AC_MSG_CHECKING([for struct lifnum])
459AC_TRY_COMPILE(
460[ #include <sys/types.h>
cff9b78f 461 #include <sys/socket.h>
8da06bb1
DH
462 #include <net/if.h>
463],
464[ struct lifnum a;
465],
466 [AC_MSG_RESULT(yes)
467 AC_DEFINE([ISC_PLATFORM_HAVELIFNUM], [1],
468 [Define to 1 if the system has 'struct lifnum'.])],
469 [AC_MSG_RESULT(no)])
470
471AC_MSG_CHECKING([for struct if_laddrconf])
472AC_TRY_COMPILE(
473[ #include <sys/types.h>
474 #include <net/if6.h>
475],
476[ struct if_laddrconf a;
477],
478 [AC_MSG_RESULT(yes)
479 AC_DEFINE([ISC_PLATFORM_HAVEIF_LADDRCONF], [1],
480 [Define to 1 if the system has 'struct if_laddrconf'.])],
481 [AC_MSG_RESULT(no)])
482
483AC_MSG_CHECKING([for struct if_laddrreq])
484AC_TRY_LINK(
485[#include <sys/types.h>
486 #include <net/if6.h>
487],
488[ struct if_laddrreq a;
489],
490 [AC_MSG_RESULT(yes)
491 AC_DEFINE([ISC_PLATFORM_HAVEIF_LADDRREQ], [1],
492 [Define to 1 if the system has 'struct if_laddrreq'.])],
493 [AC_MSG_RESULT(no)])
494
6dd7efa2 495# Look for optional headers.
cff9b78f 496AC_CHECK_HEADERS(sys/socket.h net/if_dl.h net/if6.h regex.h)
6dd7efa2 497
fe5b0fdd
DH
498# Solaris needs some libraries for functions
499AC_SEARCH_LIBS(socket, [socket])
500AC_SEARCH_LIBS(inet_ntoa, [nsl])
501
502AC_SEARCH_LIBS(inet_aton, [socket nsl], ,
503 AC_DEFINE([NEED_INET_ATON], [1],
504 [Define to 1 if the inet_aton() function is missing.]))
505
dd328225
DH
506# Check for a standalone regex library.
507AC_SEARCH_LIBS(regcomp, [regex])
508
2394b26b
DH
509# For HP/UX we need -lipv6 for if_nametoindex, perhaps others.
510AC_SEARCH_LIBS(if_nametoindex, [ipv6])
511
fe5b0fdd
DH
512# check for /dev/random (declares HAVE_DEV_RANDOM)
513AC_CHECK_FILE(/dev/random,
514 AC_DEFINE([HAVE_DEV_RANDOM], [1],
515 [Define to 1 if you have the /dev/random file.]))
516
517# see if there is a "sa_len" field in our interface information structure
518AC_CHECK_MEMBER(struct sockaddr.sa_len,
519 AC_DEFINE([HAVE_SA_LEN], [],
520 [Define to 1 if the sockaddr structure has a length field.]),
521 ,
522 [#include <sys/socket.h>])
523
76c944da
SK
524# figure out pointer size
525AC_CHECK_SIZEOF(struct iaddr *, , [
526#include "includes/inet.h"
527#include <stdio.h>
528])
529
847e7000
SK
530# Solaris does not have the msg_control or msg_controlen members in
531# in the msghdr structure unless you define:
532#
533# _XOPEN_SOURCE, _XOPEN_SOURCE_EXTENDED, and __EXTENSIONS__
534#
535# See the "standards" man page for details.
536#
537# We check for the msg_control member, and if it is not found, we check
538# again with the appropriate defines added to the CFLAGS. (In order to
539# do this we have to remove the check from the cache, which is what the
540# "unset" is for.)
541AC_CHECK_MEMBER(struct msghdr.msg_control,,
542 [CFLAGS="$CFLAGS -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
543 CFLAGS="$CFLAGS -D__EXTENSIONS__"
544 unset ac_cv_member_struct_msghdr_msg_control
545 AC_CHECK_MEMBER(struct msghdr.msg_control,,
546 [AC_MSG_ERROR([Missing msg_control member in
547 msg_control structure.])],
06eb8bab
SK
548 [
549#include <sys/types.h>
550#include <sys/socket.h>
551 ])
552 ],
553 [
554#include <sys/types.h>
555#include <sys/socket.h>
556 ])
847e7000 557
93eda9ab 558libbind=
98bf1607
SR
559AC_ARG_WITH(libbind,
560 AC_HELP_STRING([--with-libbind=PATH],
561 [bind includes and libraries are in PATH
562 (default is ./bind)]),
563 use_libbind="$withval", use_libbind="no")
564case "$use_libbind" in
565yes)
566 libbind="\${top_srcdir}/bind"
567 ;;
568no)
569 libbind="\${top_srcdir}/bind"
570 ;;
571*)
572 libbind="$use_libbind"
573 ;;
574esac
575
33692791
DH
576# OpenLDAP support.
577AC_ARG_WITH(ldap,
578 AC_HELP_STRING([--with-ldap],
579 [enable OpenLDAP support in dhcpd (default is no)]),
580 [ldap=$withval],
581 [ldap=no])
582
583# OpenLDAP with SSL support.
584AC_ARG_WITH(ldapcrypto,
585 AC_HELP_STRING([--with-ldapcrypto],
586 [enable OpenLDAP crypto support in dhcpd (default is no)]),
587 [ldapcrypto=$withval],
588 [ldapcrypto=no])
589
590# OpenLDAP support is disabled by default, if enabled then SSL support is an
591# extra optional that is also disabled by default. Enabling LDAP SSL support
592# implies enabling LDAP support.
593if test x$ldap = xyes || test x$ldapcrypto = xyes ; then
594 AC_SEARCH_LIBS(ldap_initialize, [ldap], ,
595 AC_MSG_FAILURE([*** Cannot find ldap_initialize with -lldap - do you need to install an OpenLDAP2 Devel package?]))
8a0d9ca4
SR
596 AC_SEARCH_LIBS(ber_pvt_opt_on, [lber], ,
597 AC_MSG_FAILURE([*** Cannot find ber_pvt_opt_on with -llber - do you need to install an OpenLDAP2 Devel package?]))
33692791
DH
598
599 if test x$ldapcrypto = xyes ; then
600 AC_SUBST(LDAP_CFLAGS, ["-DLDAP_CONFIGURATION -DLDAP_USE_SSL"])
601 else
602 AC_SUBST(LDAP_CFLAGS, ["-DLDAP_CONFIGURATION"])
603 fi
604fi
605
eaf7eb17
DH
606# Append selected warning levels to CFLAGS before substitution (but after
607# AC_TRY_COMPILE & etc).
608CFLAGS="$CFLAGS $STD_CWARNINGS"
609
98bf1607
SR
610# Try to add the bind include directory
611CFLAGS="$CFLAGS -I$libbind/include"
612
a3528574
SR
613AC_C_FLEXIBLE_ARRAY_MEMBER
614
6ecda39c 615AC_OUTPUT([
fe5b0fdd
DH
616 Makefile
617 client/Makefile
618 common/Makefile
6e999c3c 619 common/tests/Makefile
fe5b0fdd
DH
620 dhcpctl/Makefile
621 dst/Makefile
622 includes/Makefile
fe5b0fdd
DH
623 omapip/Makefile
624 relay/Makefile
625 server/Makefile
6e999c3c 626 tests/Makefile
2898f89e 627 server/tests/Makefile
82cb9b64 628 doc/devel/doxyfile
6ecda39c 629])
fe5b0fdd 630
95bba8b6 631sh util/bindvar.sh
2898f89e
TM
632
633cat > config.report << END
634
635 ISC DHCP source configure results:
636 -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
637
638Package:
639 Name: $PACKAGE_NAME
640 Version: $PACKAGE_VERSION
641
642C Compiler: $CC
643
644Flags:
645 DEFS: $DEFS
646 CFLAGS: $CFLAGS
647
648Features:
649 debug: $enable_debug
650 failover: $enable_failover
651 execute: $enable_execute
652
653Developer:
99d4c286 654 ATF unittests : $atf_path
2898f89e
TM
655
656END
2898f89e
TM
657# TODO: Add Perl system tests
658
99d4c286 659if test "$atf_path" != "no"
2898f89e
TM
660then
661echo "ATF_CFLAGS : $ATF_CFLAGS" >> config.report
662echo "ATF_LDFLAGS : $ATF_LDFLAGS" >> config.report
2898f89e
TM
663echo
664fi
665
666cat config.report
667
668echo
669echo Now you can type "make" to build ISC DHCP
670echo