]> git.proxmox.com Git - mirror_frr.git/blame - configure.ac
zebra: lingering IP address after deletion (BZ#486)
[mirror_frr.git] / configure.ac
CommitLineData
7ea487bc 1##
e8f2984c 2## Configure template file for Quagga.
7ea487bc 3## autoconf will generate configure script.
4##
5## Copyright (c) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
e8f2984c 6## Portions Copyright (c) 2003 Paul Jakma <paul@dishone.st>
7ea487bc 7##
e8f2984c 8AC_PREREQ(2.53)
7ea487bc 9
828f235d 10AC_INIT(Quagga, 0.99.21, [https://bugzilla.quagga.net])
fa1253d0 11AC_CONFIG_SRCDIR(lib/zebra.h)
62c9f504 12AC_CONFIG_MACRO_DIR([m4])
dfb9a545 13
14dnl -----------------------------------
15dnl Get hostname and other information.
16dnl -----------------------------------
17AC_CANONICAL_BUILD()
18AC_CANONICAL_HOST()
19AC_CANONICAL_TARGET()
20
81b81822 21AM_INIT_AUTOMAKE(1.6)
7ea487bc 22AM_CONFIG_HEADER(config.h)
23
7ec57366
JJ
24AC_CHECK_PROG([GAWK],[gawk],[gawk],[not-in-PATH])
25if test "x$GAWK" = "xnot-in-PATH" ; then
26 AC_MSG_ERROR([GNU awk is required for lib/memtype.h made by memtypes.awk.
27BSD awk complains: awk: gensub doesn't support backreferences (subst "\1") ])
28fi
03ecfb67 29AC_ARG_VAR([GAWK],[GNU AWK])
30
d6b72f7a 31dnl default is to match previous behavior
c4f0efe6 32exampledir=${sysconfdir}
d6b72f7a 33AC_ARG_ENABLE([exampledir],
34 AC_HELP_STRING([--enable-exampledir],
35 [specify alternate directory for examples]),
36 exampledir="$enableval",)
c4f0efe6 37dnl XXX add --exampledir to autoconf standard directory list somehow
d6b72f7a 38AC_SUBST(exampledir)
39
cbd04084 40dnl default is to match previous behavior
41pkgsrcrcdir=""
42pkgsrcdir=""
43AC_ARG_ENABLE([pkgsrcrcdir],
44 AC_HELP_STRING([--enable-pkgsrcrcdir],
45 [specify directory for rc.d scripts]),
46 pkgsrcrcdir="$enableval"; pkgsrcdir="pkgsrc",)
47dnl XXX add --pkgsrcrcdir to autoconf standard directory list somehow
48AC_SUBST(pkgsrcdir)
49AC_SUBST(pkgsrcrcdir)
50
7ea487bc 51dnl ------------
52dnl Check CFLAGS
53dnl ------------
54AC_ARG_WITH(cflags,
55[ --with-cflags Set CFLAGS for use in compilation.])
56if test "x$with_cflags" != "x" ; then
57 CFLAGS="$with_cflags" ; cflags_specified=yes ;
58elif test -n "$CFLAGS" ; then
59 cflags_specified=yes ;
60fi
61
1969e4b9 62dnl --------------------
63dnl Check CC and friends
64dnl --------------------
46bc0e43 65AC_LANG([C])
7ea487bc 66AC_PROG_CC
1969e4b9 67AC_PROG_CPP
46bc0e43 68AM_PROG_CC_C_O
1969e4b9 69AC_PROG_EGREP
553bdfe3
GT
70
71dnl autoconf 2.59 appears not to support AC_PROG_SED
72dnl AC_PROG_SED
73AC_CHECK_PROG([SED],[sed],[sed],[/bin/false])
1969e4b9 74
fa482834
PJ
75dnl pdflatex and latexmk are needed to build HACKING.pdf
76AC_CHECK_PROG([PDFLATEX],[pdflatex],[pdflatex],[/bin/false])
77AC_CHECK_PROG([LATEXMK],[latexmk],[latexmk],[/bin/false])
78if test "x$PDFLATEX" = "x/bin/false" -o "x$LATEXMK" = "x/bin/false"; then
79 AC_MSG_WARN([Will not be able to make PDF versions of TeX documents])
80else
81 HAVE_LATEX=true
82fi
83AM_CONDITIONAL([HAVE_LATEX], [test "x$HAVE_LATEX" = "xtrue"])
84
1969e4b9 85dnl ------------------------------------------------------------------
86dnl Intel compiler check. Although Intel tries really hard to make icc
87dnl look like gcc, there are some differences. It's very verbose with
88dnl -Wall and it doesn't support the individual -W options.
89dnl ------------------------------------------------------------------
6a4b8832 90if test "x${GCC}" = "xyes" ; then
91 COMPILER="GCC"
92 AC_MSG_CHECKING([whether we are using the Intel compiler])
93 AC_EGREP_CPP([^__INTEL_COMPILER], [__INTEL_COMPILER],
94 [AC_MSG_RESULT([no])],
95 [COMPILER="ICC"
96 AC_MSG_RESULT([yes])]
97 )
98else
99 AC_MSG_CHECKING([whether we are using SunPro compiler])
100 AC_EGREP_CPP([^__SUNPRO_C.*0x5(7|8|9)], ["__SUNPRO_C" __SUNPRO_C],
101 [AC_MSG_RESULT([no])],
102 [COMPILER="SUNPRO"
103 AC_MSG_RESULT([yes])]
104 )
105fi
7ea487bc 106
a49c0ff6 107dnl ---------------------------------------------
7ea487bc 108dnl If CLFAGS doesn\'t exist set default value
a49c0ff6 109dnl AC_PROG_CC will have set minimal default
110dnl already, eg "-O2 -g" for gcc, "-g" for others
27eebb3e 111dnl (Wall is gcc specific... have to make sure
112dnl gcc is being used before setting it)
113dnl
6a4b8832 114dnl Intel icc 8.0 also sets __GNUC__,
115dnl but doesn't support all these fancy -W options.
1969e4b9 116dnl Intel compiler warnings we ignore:
117dnl 279: controlling expression is constant.
118dnl 869: parameter "xxx" was never referenced - to avoid massive warnings
119dnl about "self", "vty", "argc" and "argv" never referenced in DEFUN
120dnl macro.
121dnl 981: operands are evaluated in unspecified order.
6a4b8832 122dnl
123dnl Sun Studio 10 / SunPro 5.7 is also supported,
124dnl so lets set some sane CFLAGS for it.
125dnl ---------------------------------------------
1969e4b9 126
6a4b8832 127AC_MSG_CHECKING([whether to set a default CFLAGS])
128if test "x${cflags_specified}" = "x" ; then
129 case ${COMPILER} in
130 "ICC")
131 CFLAGS="-Os -g -Wall -wd 279,869,981"
132 AC_MSG_RESULT([Intel default])
133 ;;
134 "GCC")
5fa05099 135 CFLAGS="-Os -fno-omit-frame-pointer -g -std=gnu99 -Wall"
6a4b8832 136 CFLAGS="${CFLAGS} -Wsign-compare -Wpointer-arith"
137 CFLAGS="${CFLAGS} -Wbad-function-cast -Wwrite-strings"
138 CFLAGS="${CFLAGS} -Wmissing-prototypes -Wmissing-declarations"
139 CFLAGS="${CFLAGS} -Wchar-subscripts -Wcast-qual"
140 # TODO: conditionally addd -Wpacked if handled
141 AC_MSG_RESULT([gcc default])
142 ;;
143 "SUNPRO")
105b8239 144 CFLAGS="-xO4 -v -g -xspace -xcode=pic32 -xstrconst -xc99"
6a4b8832 145 AC_MSG_RESULT([SunPro default])
146 ;;
147 *)
148 AC_MSG_RESULT([unknown compiler])
149 ;;
150 esac
151else
152 AC_MSG_RESULT([CFLAGS supplied by user])
1969e4b9 153fi
154
7ea487bc 155dnl --------------
156dnl Check programs
157dnl --------------
7ea487bc 158AC_PROG_INSTALL
6f0e3f6e 159AC_PROG_LN_S
7ea487bc 160AC_PROG_MAKE_SET
161AC_CHECK_TOOL(AR, ar)
7ea487bc 162
105b8239
PJ
163dnl ---------------------------
164dnl We, perhaps unfortunately,
165dnl depend on GNU Make specific
166dnl constructs.
167dnl Give the user a warning if
168dnl not GNU Make.
169dnl ---------------------------
170AC_CACHE_CHECK([if ${MAKE-make} is GNU make], [quagga_cv_gnu_make],
171 [quagga_cv_gnu_make=no
172 if ${MAKE-make} --version 2>/dev/null | \
173 grep '^GNU Make ' >/dev/null ; then
174 quagga_cv_gnu_make=yes;
175 fi
176 ]
177)
178
d46d2a24
PJ
179dnl -----------------
180dnl System extensions
181dnl -----------------
d46d2a24 182AC_GNU_SOURCE
7ea487bc 183
87efd646 184dnl -------
185dnl libtool
186dnl -------
0fc42949 187AC_PROG_LIBTOOL
87efd646 188
7ea487bc 189dnl ----------------------
190dnl Packages configuration
191dnl ----------------------
1080c13f
JN
192AC_ARG_WITH(pkg-extra-version,
193 AS_HELP_STRING([--with-pkg-extra-version=VER], [add extra version field, for packagers/distributions]),
194 [EXTRAVERSION=$withval],)
7ea487bc 195AC_ARG_ENABLE(vtysh,
fc9d0745 196[ --enable-vtysh include integrated vty shell for Quagga])
7ea487bc 197AC_ARG_ENABLE(ipv6,
198[ --disable-ipv6 turn off IPv6 related features and daemons])
cbcd9bfc
JT
199AC_ARG_ENABLE(doc,
200[ --disable-doc do not build docs])
7ea487bc 201AC_ARG_ENABLE(zebra,
202[ --disable-zebra do not build zebra daemon])
203AC_ARG_ENABLE(bgpd,
204[ --disable-bgpd do not build bgpd])
205AC_ARG_ENABLE(ripd,
206[ --disable-ripd do not build ripd])
207AC_ARG_ENABLE(ripngd,
208[ --disable-ripngd do not build ripngd])
209AC_ARG_ENABLE(ospfd,
210[ --disable-ospfd do not build ospfd])
7ea487bc 211AC_ARG_ENABLE(ospf6d,
212[ --disable-ospf6d do not build ospf6d])
5734509c
PJ
213AC_ARG_ENABLE(babeld,
214[ --disable-babeld do not build babeld])
d0199430 215AC_ARG_ENABLE(watchquagga,
216[ --disable-watchquagga do not build watchquagga])
9e867fe6 217AC_ARG_ENABLE(isisd,
ae399ab0 218[ --enable-isisd build isisd])
97cee877
GT
219AC_ARG_ENABLE(solaris,
220[ --enable-solaris build solaris])
7ea487bc 221AC_ARG_ENABLE(bgp-announce,
222[ --disable-bgp-announce, turn off BGP route announcement])
223AC_ARG_ENABLE(netlink,
224[ --enable-netlink force to use Linux netlink interface])
225AC_ARG_ENABLE(broken-aliases,
226[ --enable-broken-aliases enable aliases as distinct interfaces for Linux 2.2.X])
227AC_ARG_ENABLE(snmp,
d6be5fb9 228[ --enable-snmp=ARG enable SNMP support (smux or agentx)])
7ea487bc 229AC_ARG_WITH(libpam,
230[ --with-libpam use libpam for PAM support in vtysh])
71c0fb50 231AC_ARG_ENABLE(tcp-zebra,
7ea487bc 232[ --enable-tcp-zebra enable TCP/IP socket connection between zebra and protocol daemon])
7ea487bc 233AC_ARG_ENABLE(opaque-lsa,
36de261b 234 AC_HELP_STRING([--disable-opaque-lsa],[do not build OSPF Opaque-LSA with OSPFAPI support (RFC2370)]))
1ef74ef7 235AC_ARG_ENABLE(ospfapi,
36de261b 236[ --disable-ospfapi do not build OSPFAPI to access the OSPF LSA Database])
1ef74ef7 237AC_ARG_ENABLE(ospfclient,
238[ --disable-ospfclient do not build OSPFAPI client for OSPFAPI,
239 (this is the default if --disable-ospfapi is set)])
7ea487bc 240AC_ARG_ENABLE(ospf-te,
36de261b 241 AC_HELP_STRING([--disable-ospf-te],[disable Traffic Engineering Extension to OSPF]))
7ea487bc 242AC_ARG_ENABLE(multipath,
243[ --enable-multipath=ARG enable multipath function, ARG must be digit])
fe86b484
PKJ
244AC_ARG_ENABLE(user,
245 AC_HELP_STRING([--enable-user=user], [user to run Quagga suite as (default quagga)]))
246AC_ARG_ENABLE(group,
247 AC_HELP_STRING([--enable-group=group], [group to run Quagga suite as (default quagga)]))
edd7c245 248AC_ARG_ENABLE(vty_group,
6b6942f9 249[ --enable-vty-group=ARG set vty sockets to have specified group as owner])
aa593d5e 250AC_ARG_ENABLE(configfile_mask,
251[ --enable-configfile-mask=ARG set mask for config files])
252AC_ARG_ENABLE(logfile_mask,
253[ --enable-logfile-mask=ARG set mask for log files])
edd7c245 254
71c0fb50 255AC_ARG_ENABLE(rtadv,
6b6942f9 256[ --disable-rtadv disable IPV6 router advertisement feature])
ca776988 257AC_ARG_ENABLE(irdp,
6b6942f9 258[ --enable-irdp enable IRDP server support in zebra])
f695b01f 259AC_ARG_ENABLE(isis_topology,
260[ --enable-isis-topology enable IS-IS topology generator])
41d3fc96 261AC_ARG_ENABLE(capabilities,
262[ --disable-capabilities disable using POSIX capabilities])
6b6942f9 263AC_ARG_ENABLE(gcc_ultra_verbose,
264[ --enable-gcc-ultra-verbose enable ultra verbose GCC warnings])
3453a712
PJ
265AC_ARG_ENABLE(linux24_tcp_md5,
266[ --enable-linux24-tcp-md5 enable support for old, Linux-2.4 RFC2385 patch])
3cade26f 267AC_ARG_ENABLE(gcc-rdynamic,
268[ --enable-gcc-rdynamic enable gcc linking with -rdynamic for better backtraces])
924b9229 269AC_ARG_ENABLE(time-check,
270[ --disable-time-check disable slow thread warning messages])
25f45887
JJ
271AC_ARG_ENABLE(pcreposix,
272[ --enable-pcreposix enable using PCRE Posix libs for regex functions])
6b6942f9 273
274if test x"${enable_gcc_ultra_verbose}" = x"yes" ; then
275 CFLAGS="${CFLAGS} -W -Wcast-qual -Wstrict-prototypes"
276 CFLAGS="${CFLAGS} -Wmissing-declarations -Wmissing-noreturn"
277 CFLAGS="${CFLAGS} -Wmissing-format-attribute -Wunreachable-code"
278 CFLAGS="${CFLAGS} -Wpacked -Wpadded"
279fi
7ea487bc 280
3cade26f 281if test x"${enable_gcc_rdynamic}" = x"yes" ; then
282 LDFLAGS="${LDFLAGS} -rdynamic"
283fi
284
924b9229 285if test x"${enable_time_check}" != x"no" ; then
286 if test x"${enable_time_check}" = x"yes" -o x"${enable_time_check}" = x ; then
287 AC_DEFINE(CONSUMED_TIME_CHECK,5000000,Consumed Time Check)
288 else
289 AC_DEFINE_UNQUOTED(CONSUMED_TIME_CHECK,$enable_time_check,Consumed Time Check)
290 fi
291fi
292
7ea487bc 293if test "${enable_broken_aliases}" = "yes"; then
294 if test "${enable_netlink}" = "yes"
295 then
6f0e3f6e 296 AC_MSG_FAILURE([Sorry you can not use netlink with broken aliases])
7ea487bc 297 fi
298 AC_DEFINE(HAVE_BROKEN_ALIASES,,Broken Alias)
299 enable_netlink=no
300fi
301
302if test "${enable_tcp_zebra}" = "yes"; then
303 AC_DEFINE(HAVE_TCP_ZEBRA,,Use TCP for zebra communication)
304fi
305
36de261b 306if test "${enable_opaque_lsa}" != "no"; then
7ea487bc 307 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
308fi
309
36de261b 310if test "${enable_ospf_te}" != "no"; then
7ea487bc 311 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
312 AC_DEFINE(HAVE_OSPF_TE,,OSPF TE)
313fi
314
3453a712
PJ
315if test "${enable_linux24_tcp_md5}" = "yes"; then
316 AC_DEFINE(HAVE_TCP_MD5_LINUX24,,Old Linux 2.4 TCP MD5 Signature Patch)
317fi
318
d2a0ccc6 319AC_MSG_CHECKING(if zebra should be configurable to send Route Advertisements)
320if test "${enable_rtadv}" != "no"; then
71c0fb50 321 AC_MSG_RESULT(yes)
d2a0ccc6 322 AC_DEFINE(HAVE_RTADV,,Enable IPv6 Routing Advertisement support)
2487bea1 323else
324 AC_MSG_RESULT(no)
71c0fb50 325fi
7ea487bc 326
ca776988 327if test "${enable_irdp}" = "yes"; then
328 AC_DEFINE(HAVE_IRDP,, IRDP )
329fi
330
f695b01f 331if test "${enable_isisd}" = "yes" && test "${enable_isis_topology}" = yes; then
332 AC_DEFINE(TOPOLOGY_GENERATE,,Enable IS-IS topology generator code)
333 ISIS_TOPOLOGY_INCLUDES="-I./topology"
334 ISIS_TOPOLOGY_DIR="topology"
335 ISIS_TOPOLOGY_LIB="./topology/libtopology.a"
336fi
337
338AC_SUBST(ISIS_TOPOLOGY_INCLUDES)
339AC_SUBST(ISIS_TOPOLOGY_DIR)
340AC_SUBST(ISIS_TOPOLOGY_LIB)
341
79cb2169 342if test "${enable_user}" = "yes" || test x"${enable_user}" = x""; then
e8f2984c 343 enable_user="quagga"
edd7c245 344elif test "${enable_user}" = "no"; then
345 enable_user="root"
346fi
edd7c245 347
79cb2169 348if test "${enable_group}" = "yes" || test x"${enable_group}" = x""; then
e8f2984c 349 enable_group="quagga"
edd7c245 350elif test "${enable_group}" = "no"; then
351 enable_group="root"
352fi
edd7c245 353
354if test x"${enable_vty_group}" = x"yes" ; then
8d4aee5d 355 AC_MSG_ERROR([--enable-vty-group requires a group as argument, not yes])
79cb2169 356elif test x"${enable_vty_group}" != x""; then
8d4aee5d 357 if test x"${enable_vty_group}" != x"no"; then
edd7c245 358 AC_DEFINE_UNQUOTED(VTY_GROUP, "${enable_vty_group}", VTY Sockets Group)
359 fi
360fi
26275b05 361AC_SUBST([enable_user])
362AC_SUBST([enable_group])
363AC_SUBST([enable_vty_group])
364AC_DEFINE_UNQUOTED(QUAGGA_USER, "${enable_user}", Quagga User)
365AC_DEFINE_UNQUOTED(QUAGGA_GROUP, "${enable_group}", Quagga Group)
edd7c245 366
aa593d5e 367enable_configfile_mask=${enable_configfile_mask:-0600}
368AC_DEFINE_UNQUOTED(CONFIGFILE_MASK, ${enable_configfile_mask}, Mask for config files)
369
370enable_logfile_mask=${enable_logfile_mask:-0600}
371AC_DEFINE_UNQUOTED(LOGFILE_MASK, ${enable_logfile_mask}, Mask for log files)
372
7ea487bc 373MULTIPATH_NUM=1
374
375case "${enable_multipath}" in
6f0e3f6e 376 [[0-9]|[1-9][0-9]])
7ea487bc 377 MULTIPATH_NUM="${enable_multipath}"
378 ;;
379 "")
380 ;;
381 *)
6f0e3f6e 382 AC_MSG_FAILURE([Please specify digit to enable multipath ARG])
7ea487bc 383 ;;
384esac
385
7ea487bc 386AC_SUBST(MULTIPATH_NUM)
387
1080c13f
JN
388dnl -----------------------------------
389dnl Add extra version string to package
390dnl name, string and version fields.
391dnl -----------------------------------
392if test "x${EXTRAVERSION}" != "x" ; then
393 VERSION=${VERSION}${EXTRAVERSION}
394 PACKAGE_VERSION=${PACKAGE_VERSION}${EXTRAVERSION}
395 PACKAGE_STRING=${PACKAGE_STRING}${EXTRAVERSION}
396fi
397
6f0e3f6e
PJ
398dnl ------------------------------------
399dnl Check C keywords and standard types
400dnl ------------------------------------
401AC_C_CONST
402AC_C_INLINE
403AC_C_RESTRICT
404AC_C_VOLATILE
dc7a2bf1 405AC_HEADER_STDC
6f0e3f6e
PJ
406AC_HEADER_TIME
407AC_HEADER_SYS_WAIT
408dnl AC_TYPE_PID_T
409AC_TYPE_UID_T
410AC_TYPE_MODE_T
411AC_TYPE_SIZE_T
412AC_TYPE_SIGNAL
413AC_STRUCT_TM
dc7a2bf1 414
6f0e3f6e
PJ
415dnl -------------------------
416dnl Check other header files.
417dnl -------------------------
418AC_CHECK_HEADERS([stropts.h sys/ksym.h sys/times.h sys/select.h \
419 sys/types.h linux/version.h netdb.h asm/types.h \
b69442d4 420 sys/param.h limits.h signal.h \
6511cab2 421 sys/socket.h netinet/in.h time.h sys/time.h])
6f0e3f6e
PJ
422
423dnl Utility macro to avoid retyping includes all the time
424m4_define([QUAGGA_INCLUDES],
425[#ifdef SUNOS_5
426#define _XPG4_2
427#define __EXTENSIONS__
428#endif
429#include <stdio.h>
430#if STDC_HEADERS
431# include <stdlib.h>
432# include <stddef.h>
433#else
434# if HAVE_STDLIB_H
435# include <stdlib.h>
436# endif
437#endif
438#if HAVE_SYS_TYPES_H
439# include <sys/types.h>
440#endif
441/* sys/conf.h depends on param.h on FBSD at least */
442#if HAVE_SYS_PARAM_H
443# include <sys/param.h>
444#endif
445/* Required for MAXSIG */
446#if HAVE_SIGNAL_H
447# include <signal.h>
448#endif
449#if HAVE_SYS_SOCKET_H
450# include <sys/socket.h>
451#endif
452#if HAVE_NETINET_IN_H
453# include <netinet/in.h>
454#endif
6511cab2
PJ
455#ifdef TIME_WITH_SYS_TIME
456# include <sys/time.h>
457# include <time.h>
458#else
459# ifdef HAVE_SYS_TIME_H
460# include <sys/time.h>
461# else
462# include <time.h>
463# endif
464#endif /* TIME_WITH_SYS_TIME */
6f0e3f6e
PJ
465])dnl
466
2b43bf23
DO
467dnl HAVE_NET_IF_H must be discovered by the time the longer AC_CHECK_HEADERS
468dnl round below execution begins, otherwise it doesn't properly detect
469dnl HAVE_NETINET6_IN6_VAR_H, HAVE_NET_IF_VAR_H and HAVE_STRUCT_IN6_ALIASREQ
470dnl on FreeBSD (BZ#408).
471
472AC_CHECK_HEADERS([net/if.h], [], [], QUAGGA_INCLUDES)
473
474m4_define([QUAGGA_INCLUDES],
475QUAGGA_INCLUDES
476[#if HAVE_NET_IF_H
477# include <net/if.h>
478#endif
479])dnl
480
481dnl Same applies for HAVE_NET_IF_VAR_H, which HAVE_NETINET6_ND6_H and
482dnl HAVE_NETINET_IN_VAR_H depend upon. But if_var.h depends on if.h, hence
483dnl an additional round for it.
484
485AC_CHECK_HEADERS([net/if_var.h], [], [], QUAGGA_INCLUDES)
486
487m4_define([QUAGGA_INCLUDES],
488QUAGGA_INCLUDES
489[#if HAVE_NET_IF_VAR_H
490# include <net/if_var.h>
491#endif
492])dnl
493
494AC_CHECK_HEADERS([sys/un.h netinet/in_systm.h netinet/in_var.h \
495 net/if_dl.h net/netopt.h net/route.h \
11770e10 496 inet/nd.h arpa/inet.h netinet/ip_icmp.h \
6f0e3f6e
PJ
497 fcntl.h stddef.h sys/ioctl.h syslog.h wchar.h wctype.h \
498 sys/sysctl.h sys/sockio.h kvm.h sys/conf.h],
499 [], [], QUAGGA_INCLUDES)
500
501AC_CHECK_HEADERS([ucontext.h], [], [],
502[#ifndef __USE_GNU
503#define __USE_GNU
504#endif /* __USE_GNU */
505QUAGGA_INCLUDES
506])
507
508m4_define([QUAGGA_INCLUDES],
509QUAGGA_INCLUDES
2b43bf23 510[#if HAVE_SYS_UN_H
6f0e3f6e
PJ
511# include <sys/un.h>
512#endif
513#if HAVE_NETINET_IN_SYSTM_H
514# include <netinet/in_systm.h>
515#endif
516#if HAVE_NETINET_IN_VAR_H
517# include <netinet/in_var.h>
518#endif
519#if HAVE_NET_IF_DL_H
520# include <net/if_dl.h>
521#endif
6f0e3f6e
PJ
522#if HAVE_NET_NETOPT_H
523# include <net/netopt.h>
524#endif
525#if HAVE_NET_ROUTE_H
526# include <net/route.h>
527#endif
528#if HAVE_INET_ND_H
529# include <inet/nd.h>
530#endif
531#if HAVE_ARPA_INET_H
532# include <arpa/inet.h>
533#endif
11770e10
PJ
534/* Required for IDRP */
535#if HAVE_NETINET_IP_ICMP_H
536# include <netinet/ip_icmp.h>
537#endif
6f0e3f6e 538])dnl
dc7a2bf1 539
fa3232e1 540dnl V6 headers are checked below, after we check for v6
7ea487bc 541
7ea487bc 542dnl Some systems (Solaris 2.x) require libnsl (Network Services Library)
543case "$host" in
afd8a129 544 [*-sunos5.[6-7]*] | [*-solaris2.[6-7]*])
7ea487bc 545 opsys=sol2-6
afd8a129 546 AC_DEFINE(SUNOS_56, 1, SunOS 5.6 to 5.7)
19877dd2 547 AC_DEFINE(SUNOS_5, 1, SunOS 5)
7ea487bc 548 AC_CHECK_LIB(xnet, main)
549 CURSES=-lcurses
550 ;;
1b73de8b 551 [*-sunos5.[8-9]] \
552 | [*-sunos5.1[0-9]] \
553 | [*-sunos5.1[0-9].[0-9]] \
554 | [*-solaris2.[8-9]] \
555 | [*-solaris2.1[0-9]] \
556 | [*-solaris2.1[0-9].[0-9]])
afd8a129 557 opsys=sol8
fb66b29c
PJ
558 AC_DEFINE(SUNOS_59, 1, [SunOS 5.8 up])
559 AC_DEFINE(SUNOS_5, 1, [SunOS 5])
19877dd2 560 AC_CHECK_LIB(socket, main)
561 AC_CHECK_LIB(nsl, main)
1b73de8b 562 AC_CHECK_LIB(umem, main)
fb66b29c
PJ
563 AC_CHECK_FUNCS([printstack],
564 [AC_DEFINE([HAVE_PRINTSTACK],1,[Solaris printstack])
565 AC_DEFINE([HAVE_STACK_TRACE],1,[Stack symbols decode functionality])
566 ])
19877dd2 567 CURSES=-lcurses
568 ;;
7ea487bc 569 *-sunos5* | *-solaris2*)
19877dd2 570 AC_DEFINE(SUNOS_5,,SunOS 5, Unknown SunOS)
7ea487bc 571 AC_CHECK_LIB(socket, main)
572 AC_CHECK_LIB(nsl, main)
573 CURSES=-lcurses
574 ;;
c45eb839 575 *-linux*)
7ea487bc 576 opsys=gnu-linux
577 AC_DEFINE(GNU_LINUX,,GNU Linux)
578 ;;
579 *-nec-sysv4*)
580 AC_CHECK_LIB(nsl, gethostbyname)
581 AC_CHECK_LIB(socket, socket)
582 ;;
7ea487bc 583 *-openbsd*)
584 opsys=openbsd
585 AC_DEFINE(OPEN_BSD,,OpenBSD)
586 ;;
587 *-bsdi*)
588 opsys=bsdi
589 OTHER_METHOD="mtu_kvm.o"
590 AC_CHECK_LIB(kvm, main)
591 ;;
49e3b3c0 592 *-irix6.5)
dc7a2bf1 593 opsys=irix
594 AC_DEFINE(IRIX_65,,IRIX 6.5)
595 ;;
7ea487bc 596esac
597
62c9f504
PJ
598AC_SYS_LARGEFILE
599
7ea487bc 600dnl ---------------------
601dnl Integrated VTY option
602dnl ---------------------
603case "${enable_vtysh}" in
604 "yes") VTYSH="vtysh";
605 AC_DEFINE(VTYSH,,VTY shell)
fc9d0745 606 AC_PATH_PROG(PERL, perl)
607dnl Vtysh uses libreadline, which looks for termcap functions at
6f0e3f6e 608dnl configure time. We follow readlines search order.
fc9d0745 609dnl The required procedures are in libtermcap on NetBSD, in
610dnl [TODO] on Linux, and in [TODO] on Solaris.
c0689394 611 AC_CHECK_LIB(termcap, tputs, LIBREADLINE="$LIBREADLINE -ltermcap",
a969459c 612 [AC_CHECK_LIB(tinfo, tputs, LIBREADLINE="$LIBREADLINE -ltinfo",
613 [AC_CHECK_LIB(curses, tputs, LIBREADLINE="$LIBREADLINE -lcurses",
614 [AC_CHECK_LIB(ncurses, tputs,
615 LIBREADLINE="$LIBREADLINE -lncurses")]
616 )]
617 )]
618 )
619 AC_CHECK_LIB(readline, main, LIBREADLINE="$LIBREADLINE -lreadline",,
620 "$LIBREADLINE")
7ea487bc 621 if test $ac_cv_lib_readline_main = no; then
fc9d0745 622 AC_MSG_ERROR([vtysh needs libreadline but was not found and usable on your system.])
7ea487bc 623 fi
624 AC_CHECK_HEADER(readline/history.h)
625 if test $ac_cv_header_readline_history_h = no;then
626 AC_MSG_ERROR([readline is too old to have readline/history.h, please update to the latest readline library.])
627 fi
a969459c 628 AC_CHECK_LIB(readline, rl_completion_matches,
629 LIBREADLINE="$LIBREADLINE",, "$LIBREADLINE")
3d3de8c4 630 if test $ac_cv_lib_readline_rl_completion_matches = no; then
631 AC_DEFINE(rl_completion_matches,completion_matches,Old readline)
632 fi
633 ;;
7ea487bc 634 "no" ) VTYSH="";;
635 * ) ;;
636esac
c0689394 637AC_SUBST(LIBREADLINE)
f027d331 638AM_CONDITIONAL(VTYSH, test "x$VTYSH" = "xvtysh")
7ea487bc 639
640dnl ----------
641dnl PAM module
6159928d
DO
642dnl
643dnl Quagga detects the PAM library it is built against by checking for a
644dnl functional pam_misc.h (Linux-PAM) or openpam.h (OpenPAM) header. pam_misc.h
645dnl is known to #include pam_appl.h, the standard header of a PAM library, and
646dnl openpam.h doesn't do that, although depends on the header too. Hence a
647dnl little assistance to AC_CHECK_HEADER is necessary for the proper detection
648dnl of OpenPAM.
7ea487bc 649dnl ----------
24cd435b 650if test "$with_libpam" = "yes"; then
6f0e3f6e
PJ
651 AC_CHECK_HEADER([security/pam_misc.h],
652 [AC_DEFINE(HAVE_PAM_MISC_H,,Have pam_misc.h)
653 AC_DEFINE(PAM_CONV_FUNC,misc_conv,Have misc_conv)
654 pam_conv_func="misc_conv"
655 ],
656 [], QUAGGA_INCLUDES)
657 AC_CHECK_HEADER([security/openpam.h],
658 [AC_DEFINE(HAVE_OPENPAM_H,,Have openpam.h)
659 AC_DEFINE(PAM_CONV_FUNC,openpam_ttyconv,Have openpam_ttyconv)
660 pam_conv_func="openpam_ttyconv"
661 ],
6159928d 662 [], QUAGGA_INCLUDES[#include <security/pam_appl.h>])
24cd435b 663 if test -z "$ac_cv_header_security_pam_misc_h$ac_cv_header_security_openpam_h" ; then
664 AC_MSG_WARN([*** pam support will not be built ***])
665 with_libpam="no"
666 fi
667fi
668
7ea487bc 669if test "$with_libpam" = "yes"; then
6f0e3f6e 670dnl took this test from proftpds configure.in and suited to our needs
7ea487bc 671dnl -------------------------------------------------------------------------
672dnl
673dnl This next check looks funky due to a linker problem with some versions
674dnl of the PAM library. Prior to 0.72 release, the Linux PAM shared library
675dnl omitted requiring libdl linking information. PAM-0.72 or better ships
676dnl with RedHat 6.2 and Debian 2.2 or better.
677AC_CHECK_LIB(pam, pam_start,
24cd435b 678 [AC_CHECK_LIB(pam, $pam_conv_func,
7ea487bc 679 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
680 LIBPAM="-lpam"],
681 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
682 LIBPAM="-lpam -lpam_misc"]
683 )
684 ],
685
686 [AC_CHECK_LIB(pam, pam_end,
24cd435b 687 [AC_CHECK_LIB(pam, $pam_conv_func,
a159ed93 688 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
7ea487bc 689 LIBPAM="-lpam -ldl"],
a159ed93 690 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
7ea487bc 691 LIBPAM="-lpam -ldl -lpam_misc"]
692 )
693 ],AC_MSG_WARN([*** pam support will not be built ***]),
694 [-ldl])
695 ]
696)
697fi
698AC_SUBST(LIBPAM)
699
700dnl -------------------------------
701dnl Endian-ness check
702dnl -------------------------------
703AC_WORDS_BIGENDIAN
704
705dnl -------------------------------
706dnl check the size in byte of the C
707dnl -------------------------------
708dnl AC_CHECK_SIZEOF(char)
709dnl AC_CHECK_SIZEOF(int)
710dnl AC_CHECK_SIZEOF(short)
711dnl AC_CHECK_SIZEOF(long)
712
713dnl ----------------------------
714dnl check existance of functions
715dnl ----------------------------
6f0e3f6e
PJ
716AC_FUNC_CHOWN
717AC_FUNC_FNMATCH
718AC_FUNC_FORK
6f0e3f6e
PJ
719AC_FUNC_MEMCMP
720AC_FUNC_MKTIME
721AC_FUNC_STRFTIME
6f0e3f6e
PJ
722AC_FUNC_STAT
723AC_FUNC_SELECT_ARGTYPES
724AC_FUNC_STRFTIME
d46d2a24
PJ
725dnl Avoid AC_FUNC_STRNLEN because it pulls in AC_SYSTEM_EXTENSIONS which
726dnl can lead to strange side effects. So we just check for strnlen
727dnl directly, see below.
2b5cb411 728dnl AC_FUNC_STRNLENdnl
6f0e3f6e
PJ
729AC_FUNC_VPRINTF
730
731dnl -------------------------------
732dnl bgpd needs pow() and hence libm
733dnl -------------------------------
734TMPLIBS="$LIBS"
735AC_CHECK_HEADER([math.h],
736 [AC_CHECK_LIB([m], [pow],
737 [LIBM="-lm"
738 LIBS="$LIBS $LIBM"
739 AC_DEFINE(HAVE_LIBM,, Have libm)
740 AC_CHECK_FUNCS(pow,[],[LIBM=""])
741 ])
742])
743if test x"$LIBM" = x ; then
744 AC_MSG_WARN([Unable to find working pow function - bgpd may not link])
745fi
746LIBS="$TMPLIBS"
747AC_SUBST(LIBM)
748
749dnl ---------------
750dnl other functions
751dnl ---------------
752AC_CHECK_FUNCS([dup2 ftruncate getcwd gethostbyname getpagesize gettimeofday \
d46d2a24 753 inet_ntoa inet_aton strnlen \
6f0e3f6e
PJ
754 memchr memmove memset select socket \
755 strcasecmp strchr strcspn strdup strerror \
756 strncasecmp strndup strrchr strspn strstr \
757 strtol strtoul strlcat strlcpy \
758 daemon snprintf vsnprintf \
759 if_nametoindex if_indextoname getifaddrs \
760 uname fcntl])
761
a159ed93 762AC_CHECK_FUNCS(setproctitle, ,
763 [AC_CHECK_LIB(util, setproctitle,
764 [LIBS="$LIBS -lutil"
765 AC_DEFINE(HAVE_SETPROCTITLE,, Have setproctitle)
766 ]
767 )
768 ]
769)
7ea487bc 770
771dnl ------------------------------------
772dnl Determine routing get and set method
773dnl ------------------------------------
774AC_MSG_CHECKING(zebra between kernel interface method)
775if test x"$opsys" = x"gnu-linux"; then
776 if test "${enable_netlink}" = "yes";then
777 AC_MSG_RESULT(netlink)
778 RT_METHOD=rt_netlink.o
779 AC_DEFINE(HAVE_NETLINK,,netlink)
780 netlink=yes
781 elif test "${enable_netlink}" = "no"; then
782 AC_MSG_RESULT(ioctl)
783 RT_METHOD=rt_ioctl.o
784 netlink=no
785 else
786 AC_MSG_RESULT(netlink)
787 RT_METHOD=rt_netlink.o
788 AC_DEFINE(HAVE_NETLINK,,netlink)
789 netlink=yes
790 fi
19877dd2 791elif test x"$opsys" = x"sol2-6";then
792 AC_MSG_RESULT(Route socket)
793 KERNEL_METHOD="kernel_socket.o"
794 RT_METHOD="rt_socket.o"
afd8a129 795elif test x"$opsys" = x"sol8";then
19877dd2 796 AC_MSG_RESULT(Route socket)
797 KERNEL_METHOD="kernel_socket.o"
798 RT_METHOD="rt_socket.o"
799elif test "$opsys" = "irix" ; then
800 AC_MSG_RESULT(Route socket)
801 KERNEL_METHOD="kernel_socket.o"
802 RT_METHOD="rt_socket.o"
7ea487bc 803else
19877dd2 804 AC_TRY_RUN([#include <errno.h>
7ea487bc 805#include <sys/types.h>
806#include <sys/socket.h>
807
808main ()
809{
810 int ac_sock;
811
812 ac_sock = socket (AF_ROUTE, SOCK_RAW, 0);
813 if (ac_sock < 0 && errno == EINVAL)
814 exit (1);
815 exit (0);
816}],
817 [KERNEL_METHOD=kernel_socket.o
818 RT_METHOD=rt_socket.o
819 AC_MSG_RESULT(socket)],
820 [RT_METHOD=rt_ioctl.o
821 AC_MSG_RESULT(ioctl)],
822 [KERNEL_METHOD=kernel_socket.o
823 RT_METHOD=rt_socket.o
824 AC_MSG_RESULT(socket)])
7ea487bc 825fi
826AC_SUBST(RT_METHOD)
827AC_SUBST(KERNEL_METHOD)
828AC_SUBST(OTHER_METHOD)
829
238497fc
PJ
830dnl --------------------------
831dnl Determine IS-IS I/O method
832dnl --------------------------
745bf05f
DL
833AC_DEFINE(ISIS_METHOD_PFPACKET, 1, [ constant value for isis method pfpacket ])
834AC_DEFINE(ISIS_METHOD_DLPI, 2, [ constant value for isis method dlpi ])
835AC_DEFINE(ISIS_METHOD_BPF, 3, [ constant value for isis method bpf ])
238497fc
PJ
836AC_CHECK_HEADER(net/bpf.h)
837AC_CHECK_HEADER(sys/dlpi.h)
838AC_MSG_CHECKING(zebra IS-IS I/O method)
839if test x"$opsys" = x"gnu-linux"; then
840 AC_MSG_RESULT(pfpacket)
745bf05f 841 ISIS_METHOD_MACRO="ISIS_METHOD_PFPACKET"
238497fc
PJ
842elif test x"$opsys" = x"sol2-6" -o x"$opsys" = x"sol8"; then
843 AC_MSG_RESULT(DLPI)
745bf05f 844 ISIS_METHOD_MACRO="ISIS_METHOD_DLPI"
238497fc
PJ
845else
846 if test $ac_cv_header_net_bpf_h = no; then
847 if test $ac_cv_header_sys_dlpi_h = no; then
848 AC_MSG_RESULT(none)
849 AC_MSG_WARN([*** IS-IS support will not be built ***])
850 ISISD=""
851 else
852 AC_MSG_RESULT(DLPI)
853 fi
745bf05f 854 ISIS_METHOD_MACRO="ISIS_METHOD_DLPI"
238497fc
PJ
855 else
856 AC_MSG_RESULT(BPF)
745bf05f 857 ISIS_METHOD_MACRO="ISIS_METHOD_BPF"
238497fc
PJ
858 fi
859fi
745bf05f 860AC_DEFINE_UNQUOTED(ISIS_METHOD, $ISIS_METHOD_MACRO, [ selected method for isis, == one of the constants ])
238497fc 861
b99760ab 862dnl ------------------------------------
863dnl check for broken CMSG_FIRSTHDR macro
864dnl ------------------------------------
6c20046f 865AC_MSG_CHECKING(for broken CMSG_FIRSTHDR)
5b087528 866AC_RUN_IFELSE([AC_LANG_SOURCE([[
b99760ab 867#ifdef SUNOS_5
868#define _XPG4_2
869#define __EXTENSIONS__
870#endif
6f0e3f6e
PJ
871#ifdef HAVE_STDLIB_H
872# include <stdlib.h>
873#endif
874#ifdef HAVE_SYS_TYPES_H
b99760ab 875#include <sys/types.h>
6f0e3f6e
PJ
876#endif
877#ifdef HAVE_SYS_SOCKET_H
b99760ab 878#include <sys/socket.h>
6f0e3f6e 879#endif
b99760ab 880
881main()
882{
883 struct msghdr msg;
884 char buf[4];
885
886 msg.msg_control = buf;
887 msg.msg_controllen = 0;
888
889 if (CMSG_FIRSTHDR(&msg) != NULL)
890 exit(0);
891 exit (1);
5b087528 892}]])],[AC_MSG_RESULT(yes - using workaround) AC_DEFINE(HAVE_BROKEN_CMSG_FIRSTHDR,,Broken CMSG_FIRSTHDR)],
d33e8d7b 893[AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)])
b99760ab 894
7ea487bc 895dnl ------------------------------
896dnl check kernel route read method
897dnl ------------------------------
5589ffa7
JJ
898AC_CACHE_CHECK([route read method], [quagga_cv_rtread_method],
899[if test "x$netlink" = xyes; then
900 quagga_cv_rtread_method="netlink"
7ea487bc 901else
5589ffa7 902for quagga_cv_rtread_method in /proc/net/route /dev/ip /dev/null;
7ea487bc 903do
5589ffa7 904 test x`ls $quagga_cv_rtread_method 2>/dev/null` = x"$quagga_cv_rtread_method" && break
7ea487bc 905done
5589ffa7
JJ
906case $quagga_cv_rtread_method in
907 "/proc/net/route") quagga_cv_rtread_method="proc";;
9c30ab6b 908 "/dev/ip")
909 case "$host" in
5589ffa7
JJ
910 *-freebsd*) quagga_cv_rtread_method="sysctl";;
911 *) quagga_cv_rtread_method="getmsg";;
9c30ab6b 912 esac;;
5589ffa7
JJ
913 *)
914 quagga_cv_rtread_method="sysctl";;
7ea487bc 915esac
916fi])
5589ffa7 917RTREAD_METHOD=rtread_${quagga_cv_rtread_method}.o
7ea487bc 918AC_SUBST(RTREAD_METHOD)
919
920dnl -----------------------------
921dnl check interface lookup method
922dnl -----------------------------
19877dd2 923IOCTL_METHOD=ioctl.o
7ea487bc 924AC_MSG_CHECKING(interface looking up method)
925if test "$netlink" = yes; then
926 AC_MSG_RESULT(netlink)
927 IF_METHOD=if_netlink.o
19877dd2 928elif test "$opsys" = "sol2-6";then
929 AC_MSG_RESULT(Solaris GIF)
930 IF_METHOD=if_ioctl.o
afd8a129 931elif test "$opsys" = "sol8";then
19877dd2 932 AC_MSG_RESULT(Solaris GLIF)
933 IF_METHOD=if_ioctl_solaris.o
934 IOCTL_METHOD=ioctl_solaris.o
935elif test "$opsys" = "irix" ; then
936 AC_MSG_RESULT(IRIX)
937 IF_METHOD=if_ioctl.o
938elif test "$opsys" = "openbsd";then
939 AC_MSG_RESULT(openbsd)
940 IF_METHOD=if_ioctl.o
941elif grep NET_RT_IFLIST /usr/include/sys/socket.h >/dev/null 2>&1; then
942 AC_MSG_RESULT(sysctl)
7ea487bc 943 IF_METHOD=if_sysctl.o
944 AC_DEFINE(HAVE_NET_RT_IFLIST,,NET_RT_IFLIST)
19877dd2 945else
7ea487bc 946 AC_MSG_RESULT(ioctl)
947 IF_METHOD=if_ioctl.o
7ea487bc 948fi
949AC_SUBST(IF_METHOD)
19877dd2 950AC_SUBST(IOCTL_METHOD)
7ea487bc 951
42c98199 952dnl ---------------------------------------------------------------
953dnl figure out how to specify an interface in multicast sockets API
954dnl ---------------------------------------------------------------
6f0e3f6e 955AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [], [], QUAGGA_INCLUDES)
42c98199 956
957AC_MSG_CHECKING([for BSD struct ip_mreq hack])
958AC_TRY_COMPILE([#ifdef HAVE_SYS_PARAM_H
959#include <sys/param.h>
c540835e 960#endif],[#if (defined(__FreeBSD__) && ((__FreeBSD_version >= 500022 && __FreeBSD_version < 700000) || (__FreeBSD_version < 500000 && __FreeBSD_version >= 440000))) || (defined(__NetBSD__) && defined(__NetBSD_Version__) && __NetBSD_Version__ >= 106010000)
42c98199 961 return (0);
962#else
963 #error No support for BSD struct ip_mreq hack detected
964#endif],[AC_MSG_RESULT(yes)
965AC_DEFINE(HAVE_BSD_STRUCT_IP_MREQ_HACK,,[Can pass ifindex in struct ip_mreq])],
966AC_MSG_RESULT(no))
967
10d04cdb
DT
968AC_MSG_CHECKING([for RFC3678 protocol-independed API])
969AC_TRY_COMPILE([
970#include <sys/types.h>
971#include <netinet/in.h>
972], [struct group_req gr; int sock; setsockopt(sock, IPPROTO_IP, MCAST_JOIN_GROUP, (void*)&gr, sizeof(gr));
973], [AC_MSG_RESULT(yes)
974AC_DEFINE(HAVE_RFC3678,1,[Have RFC3678 protocol-independed API])],
975AC_MSG_RESULT(no))
976
c543a173
AS
977dnl ---------------------------------------------------------------
978dnl figure out how to check link-state
979dnl ---------------------------------------------------------------
6418bedf
AS
980AC_CHECK_HEADER([net/if.h],
981 [AC_CHECK_HEADER( [net/if_media.h],
982 [m4_define([LINK_DETECT_INCLUDES],
983 QUAGGA_INCLUDES
984 [#include <net/if_media.h>
985 ])
986 AC_CHECK_MEMBERS( [struct ifmediareq.ifm_status],
987 AC_DEFINE(HAVE_BSD_LINK_DETECT,,[BSD link-detect]),
988 [], LINK_DETECT_INCLUDES)],
989 [],
990 QUAGGA_INCLUDES)],
991 [], QUAGGA_INCLUDES )
c543a173 992
0df7c91f
PJ
993dnl ------------------------
994dnl TCP_MD5SIG socket option
995dnl ------------------------
996
997AC_CHECK_HEADER([netinet/tcp.h],
998 [m4_define([MD5_INCLUDES],
999 QUAGGA_INCLUDES
1000 [#include <netinet/tcp.h>
1001 ])
1002 AC_CHECK_DECLS([TCP_MD5SIG], [], [], MD5_INCLUDES)],
1003 [],
1004 QUAGGA_INCLUDES)
1005if test $ac_cv_have_decl_TCP_MD5SIG = no; then
1006 AC_CHECK_HEADER([linux/tcp.h],
1007 [m4_define([MD5_INCLUDES],
1008 QUAGGA_INCLUDES
1009 [#include <linux/tcp.h>
1010 ])
1011 AC_CHECK_DECLS([TCP_MD5SIG], [], [], MD5_INCLUDES)])
1012fi
1013
7ea487bc 1014dnl -----------------------
1015dnl check proc file system.
1016dnl -----------------------
cadfb2cd
SH
1017if test "$netlink" != yes; then
1018 if test -r /proc/net/dev; then
1019 AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev)
1020 IF_PROC=if_proc.o
1021 fi
1022 if test -r /proc/net/if_inet6; then
1023 AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6)
1024 IF_PROC=if_proc.o
1025 fi
7ea487bc 1026fi
1027AC_SUBST(IF_PROC)
1028
1029dnl -----------------------------
1030dnl check ipforward detect method
1031dnl -----------------------------
5589ffa7 1032AC_CACHE_CHECK([ipforward method], [quagga_cv_ipforward_method],
ca9f342c
DL
1033[if test x$cross_compiling = xyes; then
1034 if test x"$opsys" = x"gnu-linux"; then
1035 quagga_cv_ipforward_method=/proc/net/snmp
1036 else
1037 quagga_cv_ipforward_method=/dev/ip
1038 fi
1039else
1040 for quagga_cv_ipforward_method in /proc/net/snmp /dev/ip /dev/null;
1041 do
1042 test x`ls $quagga_cv_ipforward_method 2>/dev/null` = x"$quagga_cv_ipforward_method" && break
1043 done
1044fi
5589ffa7
JJ
1045case $quagga_cv_ipforward_method in
1046 "/proc/net/snmp") quagga_cv_ipforward_method="proc";;
7ea487bc 1047 "/dev/ip")
1048 case "$host" in
5589ffa7
JJ
1049 *-nec-sysv4*) quagga_cv_ipforward_method="ews";;
1050 *-freebsd*) quagga_cv_ipforward_method="sysctl";;
1051 *) quagga_cv_ipforward_method="solaris";;
7ea487bc 1052 esac;;
5589ffa7 1053 *) quagga_cv_ipforward_method="sysctl";;
7ea487bc 1054esac])
5589ffa7 1055IPFORWARD=ipforward_${quagga_cv_ipforward_method}.o
7ea487bc 1056AC_SUBST(IPFORWARD)
1057
1058AC_CHECK_FUNCS(getaddrinfo, [have_getaddrinfo=yes], [have_getaddrinfo=no])
1059
1060dnl ----------
1061dnl IPv6 check
1062dnl ----------
1063AC_MSG_CHECKING(whether does this OS have IPv6 stack)
1064if test "${enable_ipv6}" = "no"; then
1065 AC_MSG_RESULT(disabled)
1066else
1067dnl ----------
1068dnl INRIA IPv6
1069dnl ----------
a159ed93 1070 if grep IPV6_INRIA_VERSION /usr/include/netinet/in.h >/dev/null 2>&1; then
1071 zebra_cv_ipv6=yes
1072 AC_DEFINE(HAVE_IPV6,1,INRIA IPv6)
1073 AC_DEFINE(INRIA_IPV6,1,INRIA IPv6)
1074 RIPNGD="ripngd"
1075 OSPF6D="ospf6d"
1076 LIB_IPV6=""
1077 AC_MSG_RESULT(INRIA IPv6)
7ea487bc 1078dnl ---------
1079dnl KAME IPv6
1080dnl ---------
a159ed93 1081 elif grep WIDE /usr/include/netinet6/in6.h >/dev/null 2>&1; then
1082 zebra_cv_ipv6=yes
1083 AC_DEFINE(HAVE_IPV6,1,KAME IPv6)
1084 AC_DEFINE(KAME,1,KAME IPv6)
1085 RIPNGD="ripngd"
1086 OSPF6D="ospf6d"
1087 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
7ea487bc 1088 LIB_IPV6="-L/usr/local/v6/lib -linet6"
a159ed93 1089 fi
1090 AC_MSG_RESULT(KAME)
71c0fb50 1091dnl -------------------------
1092dnl MUSICA IPv6
1093dnl default host check
1094dnl It is not used by Kheops
1095dnl -------------------------
a159ed93 1096 elif grep MUSICA /usr/include6/netinet6/in6.h >/dev/null 2>&1; then
1097 zebra_cv_ipv6=yes
1098 AC_DEFINE(HAVE_IPV6,1,Musicia IPv6)
1099 AC_DEFINE(MUSICA,1,Musica IPv6 stack)
1100 AC_DEFINE(KAME,1,KAME IPv6 stack)
1101 RIPNGD="ripngd"
1102 OSPF6D="ospf6d"
1103 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
71c0fb50 1104 LIB_IPV6="-L/usr/local/v6/lib -linet6"
a159ed93 1105 fi
1106 AC_MSG_RESULT(MUSICA)
7ea487bc 1107dnl ---------
1108dnl NRL check
1109dnl ---------
a159ed93 1110 elif grep NRL /usr/include/netinet6/in6.h >/dev/null 2>&1; then
1111 zebra_cv_ipv6=yes
1112 AC_DEFINE(HAVE_IPV6,1,NRL IPv6)
1113 AC_DEFINE(NRL,1,NRL)
1114 RIPNGD="ripngd"
1115 OSPF6D="ospf6d"
1116 if test x"$opsys" = x"bsdi";then
7ea487bc 1117 AC_DEFINE(BSDI_NRL,,BSDI)
1118 AC_MSG_RESULT(BSDI_NRL)
a159ed93 1119 else
7ea487bc 1120 AC_MSG_RESULT(NRL)
a159ed93 1121 fi
19877dd2 1122dnl ------------------------------------
1123dnl Solaris 9, 10 and potentially higher
1124dnl ------------------------------------
afd8a129 1125 elif test x"$opsys" = x"sol8"; then
19877dd2 1126 zebra_cv_ipv6=yes;
1127 AC_DEFINE(HAVE_IPV6, 1, IPv6)
1128 AC_DEFINE(SOLARIS_IPV6, 1, Solaris IPv6)
1129 RIPNGD="ripngd"
1130 OSPF6D="ospf6d"
1131 AC_MSG_RESULT(Solaris IPv6)
7ea487bc 1132dnl ----------
1133dnl Linux IPv6
1134dnl ----------
a159ed93 1135 elif test "${enable_ipv6}" = "yes"; then
1136 AC_EGREP_CPP(yes, [
1137 #include <linux/version.h>
1138 /* 2.1.128 or later */
1139 #if LINUX_VERSION_CODE >= 0x020180
1140 yes
1141 #endif],
1142 [zebra_cv_ipv6=yes
1143 zebra_cv_linux_ipv6=yes
1144 AC_MSG_RESULT(Linux IPv6)])
1145 else
1146 if test x`ls /proc/net/ipv6_route 2>/dev/null` = x"/proc/net/ipv6_route"
1147 then
7ea487bc 1148 zebra_cv_ipv6=yes
1149 zebra_cv_linux_ipv6=yes
1150 AC_MSG_RESULT(Linux IPv6)
a159ed93 1151 fi
1152 fi
7ea487bc 1153
850d39f3 1154 if test "$zebra_cv_linux_ipv6" = "yes";then
1155 AC_MSG_CHECKING(whether libc has IPv6 support)
1156 AC_TRY_LINK([#include <netinet/in.h>
1157 ],[ int a; a = (int) in6addr_any.s6_addr[0]; if (a != 12345) return a; ],
1158 [AC_MSG_RESULT(yes)
1159 zebra_cv_ipv6=yes
1160 zebra_cv_linux_ipv6=yes],
1161 [AC_MSG_RESULT(no)
1162 zebra_cv_ipv6=no
1163 zebra_cv_linux_ipv6=no])
1164 fi
1165
a159ed93 1166 if test "$zebra_cv_linux_ipv6" = "yes";then
1167 AC_MSG_CHECKING(for GNU libc >= 2.1)
1168 AC_DEFINE(HAVE_IPV6,1,Linux IPv6)
1169 AC_EGREP_CPP(yes, [
7ea487bc 1170#include <features.h>
1171#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
1172 yes
a159ed93 1173#endif],
1174 [glibc=yes
1175 AC_DEFINE(LINUX_IPV6,1,Linux IPv6 stack)
1176 AC_MSG_RESULT(yes)],
1177 AC_MSG_RESULT(no)
1178 )
1179 RIPNGD="ripngd"
1180 OSPF6D="ospf6d"
1181 if test "$glibc" != "yes"; then
7ea487bc 1182 INCLUDES="-I/usr/inet6/include"
1183 if test x`ls /usr/inet6/lib/libinet6.a 2>/dev/null` != x;then
1184 LIB_IPV6="-L/usr/inet6/lib -linet6"
1185 fi
a159ed93 1186 fi
1187 fi
7ea487bc 1188
1189dnl -----------------------
1190dnl Set IPv6 related values
1191dnl -----------------------
a159ed93 1192 LIBS="$LIB_IPV6 $LIBS"
1193 AC_SUBST(LIB_IPV6)
7ea487bc 1194
a159ed93 1195 if test x"$RIPNGD" = x""; then
1196 AC_MSG_RESULT(IPv4 only)
1197 fi
7ea487bc 1198fi
1199
fa3232e1 1200dnl ------------------
1201dnl IPv6 header checks
1202dnl ------------------
1203if test "x${zebra_cv_ipv6}" = "xyes"; then
1204AC_CHECK_HEADERS([netinet6/in6.h netinet/in6_var.h netinet/icmp6.h \
6f0e3f6e
PJ
1205 netinet6/in6_var.h netinet6/nd6.h], [], [],
1206 QUAGGA_INCLUDES)
fa3232e1 1207fi
1208
6f0e3f6e
PJ
1209m4_define([QUAGGA_INCLUDES],dnl
1210QUAGGA_INCLUDES
1211[#if HAVE_NETINET6_IN6_H
1212#include <netinet6/in6.h>
1213#endif
1214#if HAVE_NETINET_IN6_VAR_H
1215#include <netinet/in6_var.h>
1216#endif
1217#if HAVE_NETINET_ICMP6_H
1218# include <netinet/icmp6.h>
1219#endif
1220#if HAVE_NETINET6_IN6_VAR_H
1221# include <netinet6/in6_var.h>
1222#endif
1223#if HAVE_NETINET6_ND6_H
fbf24544 1224# include <netinet6/nd6.h>
6f0e3f6e
PJ
1225#endif
1226])dnl
1227
cbcd9bfc
JT
1228dnl disable doc check
1229if test "${enable_doc}" = "no";then
1230 DOC=""
1231else
1232 DOC="doc"
1233fi
1234
7ea487bc 1235dnl --------------------
1236dnl Daemon disable check
1237dnl --------------------
1238if test "${enable_zebra}" = "no";then
1239 ZEBRA=""
1240else
1241 ZEBRA="zebra"
1242fi
f027d331 1243AM_CONDITIONAL(ZEBRA, test "x$ZEBRA" = "xzebra")
7ea487bc 1244
1245if test "${enable_bgpd}" = "no";then
1246 BGPD=""
1247else
1248 BGPD="bgpd"
1249fi
f027d331 1250AM_CONDITIONAL(BGPD, test "x$BGPD" = "xbgpd")
7ea487bc 1251
1252if test "${enable_ripd}" = "no";then
1253 RIPD=""
1254else
1255 RIPD="ripd"
1256fi
f027d331 1257AM_CONDITIONAL(RIPD, test "x$RIPD" = "xripd")
7ea487bc 1258
1259if test "${enable_ospfd}" = "no";then
1260 OSPFD=""
1261else
1262 OSPFD="ospfd"
1263fi
f027d331 1264AM_CONDITIONAL(OSPFD, test "x$OSPFD" = "xospfd")
7ea487bc 1265
5734509c
PJ
1266if test "${enable_babeld}" = "no";then
1267 BABELD=""
1268else
1269 BABELD="babeld"
1270fi
f027d331 1271AM_CONDITIONAL(BABELD, test "x$BABELD" = "xbabeld")
5734509c 1272
d0199430 1273if test "${enable_watchquagga}" = "no";then
1274 WATCHQUAGGA=""
1275else
1276 WATCHQUAGGA="watchquagga"
1277fi
f027d331 1278AM_CONDITIONAL(WATCHQUAGGA, test "x$WATCHQUAGGA" = "xwatchquagga")
d0199430 1279
1ef74ef7 1280OSPFCLIENT=""
0d51c7ef 1281if test "${enable_opaque_lsa}" != "no"; then
1ef74ef7 1282 if test "${enable_ospfapi}" != "no";then
9a569848 1283 AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI)
1ef74ef7 1284
1285 if test "${enable_ospfclient}" != "no";then
1286 OSPFCLIENT="ospfclient"
1287 fi
1288 fi
1289
7ea487bc 1290fi
f027d331 1291AM_CONDITIONAL(OSPFCLIENT, test "x$OSPFCLIENT" = "xospfclient")
7ea487bc 1292
1293case "${enable_ripngd}" in
1294 "yes") RIPNGD="ripngd";;
1295 "no" ) RIPNGD="";;
1296 * ) ;;
1297esac
f027d331 1298AM_CONDITIONAL(RIPNGD, test "x$RIPNGD" = "xripngd")
7ea487bc 1299
1300case "${enable_ospf6d}" in
1301 "yes") OSPF6D="ospf6d";;
1302 "no" ) OSPF6D="";;
1303 * ) ;;
1304esac
f027d331 1305AM_CONDITIONAL(OSPF6D, test "x$OSPF6D" = "xospf6d")
7ea487bc 1306
9e867fe6 1307case "${enable_isisd}" in
1308 "yes") ISISD="isisd";;
1309 "no" ) ISISD="";;
ae399ab0 1310 * ) ;;
9e867fe6 1311esac
f027d331 1312AM_CONDITIONAL(ISISD, test "x$ISISD" = "xisisd")
9e867fe6 1313
97cee877
GT
1314# XXX Perhaps auto-enable on Solaris, but that's messy for cross builds.
1315case "${enable_solaris}" in
1316 "yes") SOLARIS="solaris";;
1317 "no" ) SOLARIS="";;
1318 * ) ;;
1319esac
1320
7ea487bc 1321if test "${enable_bgp_announce}" = "no";then
750e8146
PJ
1322 AC_DEFINE(DISABLE_BGP_ANNOUNCE,1,Disable BGP installation to zebra)
1323else
1324 AC_DEFINE(DISABLE_BGP_ANNOUNCE,0,Disable BGP installation to zebra)
7ea487bc 1325fi
1326
cbcd9bfc 1327AC_SUBST(DOC)
7ea487bc 1328AC_SUBST(ZEBRA)
1329AC_SUBST(BGPD)
1330AC_SUBST(RIPD)
1331AC_SUBST(RIPNGD)
1332AC_SUBST(OSPFD)
1333AC_SUBST(OSPF6D)
5734509c 1334AC_SUBST(BABELD)
d0199430 1335AC_SUBST(WATCHQUAGGA)
9e867fe6 1336AC_SUBST(ISISD)
97cee877 1337AC_SUBST(SOLARIS)
7ea487bc 1338AC_SUBST(VTYSH)
1339AC_SUBST(INCLUDES)
1340AC_SUBST(CURSES)
1341AC_SUBST(OSPFCLIENT)
1ef74ef7 1342AC_SUBST(OSPFAPI)
7ea487bc 1343AC_CHECK_LIB(c, inet_ntop, [AC_DEFINE(HAVE_INET_NTOP,,inet_ntop)])
1344AC_CHECK_LIB(c, inet_pton, [AC_DEFINE(HAVE_INET_PTON,,inet_pton)])
1345AC_CHECK_LIB(crypt, crypt)
1346AC_CHECK_LIB(resolv, res_init)
7ea487bc 1347
1348dnl ---------------------------------------------------
1349dnl BSD/OS 4.1 define inet_XtoY function as __inet_XtoY
1350dnl ---------------------------------------------------
a159ed93 1351AC_CHECK_FUNC(__inet_ntop, AC_DEFINE(HAVE_INET_NTOP,,__inet_ntop))
1352AC_CHECK_FUNC(__inet_pton, AC_DEFINE(HAVE_INET_PTON,,__inet_pton))
1353AC_CHECK_FUNC(__inet_aton, AC_DEFINE(HAVE_INET_ATON,,__inet_aton))
7ea487bc 1354
25f45887
JJ
1355dnl ---------------------------
1356dnl check system has PCRE regexp
1357dnl ---------------------------
1358if test "x$enable_pcreposix" = "xyes"; then
1359 AC_CHECK_LIB(pcreposix, pcreposix_regexec, ,[enable_pcreposix=no
1360 AC_MSG_WARN([*** falling back to other regex library ***]) ])
1361fi
1362
1363if test "x$enable_pcreposix" != "xyes"; then
7ea487bc 1364dnl ---------------------------
1365dnl check system has GNU regexp
1366dnl ---------------------------
25f45887 1367AC_MSG_CHECKING(whether system has GNU regex)
7ea487bc 1368AC_CHECK_LIB(c, regexec,
1369[AC_DEFINE(HAVE_GNU_REGEX,,GNU regexp library)
1370 LIB_REGEX=""],
1371[LIB_REGEX="regex.o"])
25f45887
JJ
1372fi
1373AC_SUBST(HAVE_LIBPCREPOSIX)
7ea487bc 1374AC_SUBST(LIB_REGEX)
1375
1376dnl ------------------
b1fc9acb 1377dnl check Net-SNMP library
7ea487bc 1378dnl ------------------
d6be5fb9 1379if test "${enable_snmp}" != ""; then
08d7f653
VB
1380 AC_PATH_TOOL([NETSNMP_CONFIG], [net-snmp-config], [no])
1381 if test x"$NETSNMP_CONFIG" = x"no"; then
1382 AC_MSG_ERROR([--enable-snmp given but unable to find net-snmp-config])
1383 fi
1384 LIBS="$LIBS `${NETSNMP_CONFIG} --agent-libs`"
1385 CFLAGS="`${NETSNMP_CONFIG} --base-cflags` $CFLAGS"
1386 AC_MSG_CHECKING([whether we can link to Net-SNMP])
1387 AC_LINK_IFELSE([AC_LANG_PROGRAM([
1388int main(void);
1389],
1390[
1391{
1392 return 0;
1393}
1394])],[AC_MSG_RESULT(yes)],[
1395 AC_MSG_RESULT(no)
1396 AC_MSG_ERROR([--enable-snmp given but not usable])])
1397 AC_DEFINE(HAVE_SNMP,,SNMP)
d6be5fb9
VB
1398 case "${enable_snmp}" in
1399 yes)
1400 SNMP_METHOD=agentx
1401 ;;
1402 smux|agentx)
1403 SNMP_METHOD="${enable_snmp}"
1404 ;;
1405 *)
1406 AC_MSG_ERROR([--enable-snmp given with an unknown method (${enable_snmp}). Use smux or agentx])
1407 ;;
1408 esac
1409 AH_TEMPLATE([SNMP_SMUX], [Use SNMP SMUX to interface with snmpd])
1410 AH_TEMPLATE([SNMP_AGENTX], [Use SNMP AgentX to interface with snmpd])
1411 AC_DEFINE_UNQUOTED(AS_TR_CPP(SNMP_${SNMP_METHOD}),,SNMP method to interface with snmpd)
6cf9df08 1412fi
1413
7ea487bc 1414dnl ---------------------------
6f0e3f6e 1415dnl sockaddr and netinet checks
7ea487bc 1416dnl ---------------------------
6f0e3f6e
PJ
1417AC_CHECK_TYPES([struct sockaddr, struct sockaddr_in,
1418 struct sockaddr_in6, struct sockaddr_un, struct sockaddr_dl,
1419 socklen_t,
1420 struct ifaliasreq, struct if6_aliasreq, struct in6_aliasreq,
1421 struct nd_opt_adv_interval, struct rt_addrinfo,
11770e10 1422 struct nd_opt_homeagent_info, struct nd_opt_adv_interval],
6f0e3f6e
PJ
1423 [], [], QUAGGA_INCLUDES)
1424
1425AC_CHECK_MEMBERS([struct sockaddr.sa_len,
1426 struct sockaddr_in.sin_len, struct sockaddr_un.sun_len,
1427 struct sockaddr_in6.sin6_scope_id,
1428 struct if6_aliasreq.ifra_lifetime,
1429 struct nd_opt_adv_interval.nd_opt_ai_type],
1430 [], [], QUAGGA_INCLUDES)
29c4c9bd 1431
6f0e3f6e 1432dnl ---------------------------
11770e10 1433dnl IRDP/pktinfo/icmphdr checks
6f0e3f6e
PJ
1434dnl ---------------------------
1435AC_CHECK_TYPES([struct in_pktinfo],
11770e10
PJ
1436 [AC_CHECK_TYPES([struct icmphdr],
1437 [if test "${enable_irdp}" != "no"; then
1438 AC_DEFINE(HAVE_IRDP,, IRDP)
1439 fi],
1440 [if test "${enable_irdp}" = "yes"; then
1441 AC_MSG_ERROR(['IRDP requires in_pktinfo at the moment!'])
1442 fi], [QUAGGA_INCLUDES])],
6f0e3f6e
PJ
1443 [if test "${enable_irdp}" = "yes"; then
1444 AC_MSG_ERROR(['IRDP requires in_pktinfo at the moment!'])
1445 fi], [QUAGGA_INCLUDES])
29c4c9bd 1446
7ea487bc 1447dnl --------------------------------------
1448dnl checking for getrusage struct and call
1449dnl --------------------------------------
1450AC_MSG_CHECKING(whether getrusage is available)
1451AC_TRY_COMPILE([#include <sys/resource.h>
1452],[struct rusage ac_x; getrusage (RUSAGE_SELF, &ac_x);],
1453[AC_MSG_RESULT(yes)
1454 AC_DEFINE(HAVE_RUSAGE,,rusage)],
1455 AC_MSG_RESULT(no))
1456
c4376c9d
SH
1457dnl --------------------------------------
1458dnl checking for clock_time monotonic struct and call
1459dnl --------------------------------------
6511cab2
PJ
1460AC_CHECK_DECL(CLOCK_MONOTONIC,
1461 [AC_CHECK_LIB(rt, clock_gettime, [LIBS="$LIBS -lrt"])
9964fcfc 1462 AC_DEFINE(HAVE_CLOCK_MONOTONIC,, Have monotonic clock)
6511cab2 1463], [AC_MSG_RESULT(no)], [QUAGGA_INCLUDES])
c4376c9d 1464
edd7c245 1465dnl -------------------
1466dnl capabilities checks
1467dnl -------------------
41d3fc96 1468if test "${enable_capabilities}" != "no"; then
1469 AC_MSG_CHECKING(whether prctl PR_SET_KEEPCAPS is available)
1470 AC_TRY_COMPILE([#include <sys/prctl.h>],[prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);],
1471 [AC_MSG_RESULT(yes)
1472 AC_DEFINE(HAVE_PR_SET_KEEPCAPS,,prctl)
1473 quagga_ac_keepcaps="yes"],
1474 AC_MSG_RESULT(no)
edd7c245 1475 )
41d3fc96 1476 if test x"${quagga_ac_keepcaps}" = x"yes"; then
1477 AC_CHECK_HEADERS(sys/capability.h)
1478 fi
1479 if test x"${ac_cv_header_sys_capability_h}" = x"yes"; then
1480 AC_CHECK_LIB(cap, cap_init,
1481 [AC_DEFINE(HAVE_LCAPS,1,Capabilities)
1482 LIBCAP="-lcap"
ceacedba 1483 quagga_ac_lcaps="yes"]
41d3fc96 1484 )
ceacedba 1485 else
1486 AC_CHECK_HEADERS(priv.h,
1487 [AC_MSG_CHECKING(Solaris style privileges are available)
1488 AC_TRY_COMPILE([#include <priv.h>],[getpflags(PRIV_AWARE);],
1489 [AC_MSG_RESULT(yes)
1490 AC_DEFINE(HAVE_SOLARIS_CAPABILITIES,1,getpflags)
1491 quagga_ac_scaps="yes"],
1492 AC_MSG_RESULT(no)
1493 )
1494 ]
1495 )
1496 fi
1497 if test x"${quagga_ac_scaps}" = x"yes" \
1498 -o x"${quagga_ac_lcaps}" = x"yes"; then
1499 AC_DEFINE(HAVE_CAPABILITIES,1,capabilities)
41d3fc96 1500 fi
edd7c245 1501fi
1502AC_SUBST(LIBCAP)
1503
fb2d1502 1504dnl ---------------------------
1505dnl check for glibc 'backtrace'
1506dnl ---------------------------
eda3529e
DT
1507AC_CHECK_HEADER([execinfo.h],
1508 [AC_CHECK_FUNC([backtrace],
1509 [AC_DEFINE(HAVE_GLIBC_BACKTRACE,,[Glibc backtrace])
1510 AC_DEFINE(HAVE_STACK_TRACE,,[Stack symbol decoding])
1511 ])
1512])
fb2d1502 1513
41be32bf
PJ
1514dnl -----------------------------------------
1515dnl check for malloc mallinfo struct and call
1516dnl this must try and link using LIBS, in
1517dnl order to check no alternative allocator
1518dnl has been specified, which might not provide
1519dnl mallinfo, e.g. such as Umem on Solaris.
1520dnl -----------------------------------------
6f0e3f6e 1521AC_CHECK_HEADER([malloc.h],
41be32bf
PJ
1522 [AC_MSG_CHECKING(whether mallinfo is available)
1523 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <malloc.h>]],
1524 [[struct mallinfo ac_x; ac_x = mallinfo ();]])],
1525 [AC_MSG_RESULT(yes)
1526 AC_DEFINE(HAVE_MALLINFO,,mallinfo)],
1527 AC_MSG_RESULT(no)
1528 )
6f0e3f6e 1529 ], [], QUAGGA_INCLUDES)
41be32bf 1530
408ad943 1531dnl ----------
1532dnl configure date
1533dnl ----------
1534CONFDATE=`date '+%Y%m%d'`
1535AC_SUBST(CONFDATE)
1536
46bc0e43 1537dnl Conditionally enable PIE support for GNU toolchains.
46bc0e43 1538AC_ARG_ENABLE(pie, AS_HELP_STRING([--disable-pie], [Do not build tools as a Position Independent Executables]))
0e9de56d 1539if test "$enable_pie" != "no"; then
46bc0e43
PKJ
1540 AC_CACHE_CHECK([whether $CC accepts PIE flags], [ap_cv_cc_pie], [
1541 save_CFLAGS=$CFLAGS
1542 save_LDFLAGS=$LDFLAGS
1543 CFLAGS="$CFLAGS -fPIE"
1544 LDFLAGS="$LDFLAGS -pie"
1545 AC_LINK_IFELSE([AC_LANG_SOURCE([[static int foo[30000]; int main () { return 0; }]])],
1546 [ap_cv_cc_pie=yes], [ap_cv_cc_pie=no]
1547 )
1548 CFLAGS=$save_CFLAGS
1549 LDFLAGS=$save_LDFLAGS
1550 ])
1551 if test "$ap_cv_cc_pie" = "yes"; then
1552 PICFLAGS="-fPIE"
1553 PILDFLAGS="-pie"
1554 fi
1555fi
1556
1557AC_SUBST(PICFLAGS)
1558AC_SUBST(PILDFLAGS)
1559
7ea487bc 1560dnl ------------------------------
a159ed93 1561dnl set paths for state directory
23bd12c3 1562dnl ------------------------------
e84999d9 1563AC_MSG_CHECKING(directory to use for state file)
23bd12c3 1564if test "${prefix}" = "NONE"; then
e8f2984c 1565 quagga_statedir_prefix="";
23bd12c3 1566else
e8f2984c 1567 quagga_statedir_prefix=${prefix}
23bd12c3 1568fi
1569if test "${localstatedir}" = '${prefix}/var'; then
e84999d9 1570 for QUAGGA_STATE_DIR in ${quagga_statedir_prefix}/var/run dnl
e8f2984c 1571 ${quagga_statedir_prefix}/var/adm dnl
1572 ${quagga_statedir_prefix}/etc dnl
a159ed93 1573 /var/run dnl
1574 /var/adm dnl
1575 /etc dnl
1576 /dev/null;
23bd12c3 1577 do
e8f2984c 1578 test -d $QUAGGA_STATE_DIR && break
23bd12c3 1579 done
e84999d9 1580 quagga_statedir=$QUAGGA_STATE_DIR
23bd12c3 1581else
e8f2984c 1582 quagga_statedir=${localstatedir}
a159ed93 1583fi
e8f2984c 1584if test $quagga_statedir = "/dev/null"; then
a159ed93 1585 AC_MSG_ERROR('STATE DIRECTORY NOT FOUND! FIX OR SPECIFY --localstatedir!')
1586fi
e84999d9
JJ
1587AC_MSG_RESULT(${quagga_statedir})
1588AC_SUBST(quagga_statedir)
a159ed93 1589
e8f2984c 1590AC_DEFINE_UNQUOTED(PATH_ZEBRA_PID, "$quagga_statedir/zebra.pid",zebra PID)
1591AC_DEFINE_UNQUOTED(PATH_RIPD_PID, "$quagga_statedir/ripd.pid",ripd PID)
1592AC_DEFINE_UNQUOTED(PATH_RIPNGD_PID, "$quagga_statedir/ripngd.pid",ripngd PID)
1593AC_DEFINE_UNQUOTED(PATH_BGPD_PID, "$quagga_statedir/bgpd.pid",bgpd PID)
1594AC_DEFINE_UNQUOTED(PATH_OSPFD_PID, "$quagga_statedir/ospfd.pid",ospfd PID)
1595AC_DEFINE_UNQUOTED(PATH_OSPF6D_PID, "$quagga_statedir/ospf6d.pid",ospf6d PID)
5734509c 1596AC_DEFINE_UNQUOTED(PATH_BABELD_PID, "$quagga_statedir/babeld.pid",babeld PID)
9e867fe6 1597AC_DEFINE_UNQUOTED(PATH_ISISD_PID, "$quagga_statedir/isisd.pid",isisd PID)
d0199430 1598AC_DEFINE_UNQUOTED(PATH_WATCHQUAGGA_PID, "$quagga_statedir/watchquagga.pid",watchquagga PID)
e8f2984c 1599AC_DEFINE_UNQUOTED(ZEBRA_SERV_PATH, "$quagga_statedir/zserv.api",zebra api socket)
1600AC_DEFINE_UNQUOTED(ZEBRA_VTYSH_PATH, "$quagga_statedir/zebra.vty",zebra vty socket)
1601AC_DEFINE_UNQUOTED(RIP_VTYSH_PATH, "$quagga_statedir/ripd.vty",rip vty socket)
1602AC_DEFINE_UNQUOTED(RIPNG_VTYSH_PATH, "$quagga_statedir/ripngd.vty",ripng vty socket)
1603AC_DEFINE_UNQUOTED(BGP_VTYSH_PATH, "$quagga_statedir/bgpd.vty",bgpd vty socket)
1604AC_DEFINE_UNQUOTED(OSPF_VTYSH_PATH, "$quagga_statedir/ospfd.vty",ospfd vty socket)
1605AC_DEFINE_UNQUOTED(OSPF6_VTYSH_PATH, "$quagga_statedir/ospf6d.vty",ospf6d vty socket)
5734509c 1606AC_DEFINE_UNQUOTED(BABEL_VTYSH_PATH, "$quagga_statedir/babeld.vty",babeld vty socket)
9e867fe6 1607AC_DEFINE_UNQUOTED(ISIS_VTYSH_PATH, "$quagga_statedir/isisd.vty",isisd vty socket)
515210bd 1608AC_DEFINE_UNQUOTED(DAEMON_VTY_DIR, "$quagga_statedir",daemon vty directory)
7ea487bc 1609
1eb8ef25 1610dnl -------------------------------
1611dnl Quagga sources should always be
1612dnl current wrt interfaces. Dont
1613dnl allow deprecated interfaces to
1614dnl be exposed.
1615dnl -------------------------------
1616AC_DEFINE(QUAGGA_NO_DEPRECATED_INTERFACES, 1, Hide deprecated interfaces)
1617
7ea487bc 1618dnl ---------------------------
1619dnl Check htonl works correctly
1620dnl ---------------------------
1621AC_MSG_CHECKING(for working htonl)
6f0e3f6e
PJ
1622AC_CACHE_VAL(ac_cv_htonl_works,
1623 [AC_LINK_IFELSE([AC_LANG_PROGRAM([QUAGGA_INCLUDES],[htonl (0);])],
1624 [ac_cv_htonl_works=yes], [ac_cv_htonl_works=no])
1625 ]
1626)
7ea487bc 1627AC_MSG_RESULT($ac_cv_htonl_works)
1628
14c17fd8 1629AC_CONFIG_FILES([Makefile lib/Makefile zebra/Makefile ripd/Makefile
d0199430 1630 ripngd/Makefile bgpd/Makefile ospfd/Makefile watchquagga/Makefile
5734509c
PJ
1631 ospf6d/Makefile isisd/Makefile babeld/Makefile vtysh/Makefile
1632 doc/Makefile ospfclient/Makefile tests/Makefile m4/Makefile
1633 redhat/Makefile
69f1fc22 1634 pkgsrc/Makefile
670bbf19 1635 redhat/quagga.spec
b7a97f82 1636 lib/version.h
14c17fd8 1637 doc/defines.texi
f695b01f 1638 isisd/topology/Makefile
cbd04084 1639 pkgsrc/bgpd.sh pkgsrc/ospf6d.sh pkgsrc/ospfd.sh
f31293af 1640 pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh])
26275b05 1641AC_CONFIG_FILES([solaris/Makefile])
1642
670bbf19 1643AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl])
48577196 1644## Hack, but working solution to avoid rebuilding of quagga.info.
1645## It's already in CVS until texinfo 4.7 is more common.
14c17fd8 1646AC_OUTPUT
7ea487bc 1647
1648echo "
c89f6494 1649Quagga configuration
1650--------------------
1651quagga version : ${PACKAGE_VERSION}
1080c13f 1652host operating system : ${host_os}
7ea487bc 1653source code location : ${srcdir}
1654compiler : ${CC}
1655compiler flags : ${CFLAGS}
6f0e3f6e 1656make : ${MAKE-make}
08d7f653 1657includes : ${INCLUDES}
6f0e3f6e 1658linker flags : ${LDFLAGS} ${LIBS} ${LIBCAP} ${LIBREADLINE} ${LIBM}
e8f2984c 1659state file directory : ${quagga_statedir}
dc7a2bf1 1660config file directory : `eval echo \`echo ${sysconfdir}\``
d6b72f7a 1661example directory : `eval echo \`echo ${exampledir}\``
8d4aee5d 1662user to run as : ${enable_user}
1663group to run as : ${enable_group}
1664group for vty sockets : ${enable_vty_group}
aa593d5e 1665config file mask : ${enable_configfile_mask}
1666log file mask : ${enable_logfile_mask}
dc7a2bf1 1667
1668The above user and group must have read/write access to the state file
105b8239
PJ
1669directory and to the config files in the config file directory."
1670
1671if test x"$quagga_cv_gnu_make" = x"no"; then echo "
1672Warning: The ${MAKE-make} programme detected, either in your path or
1673via the MAKE variable, is not GNU Make. GNU make may be installed as
1674gmake on some systems. and is required to complete a build of Quagga
1675" > /dev/stderr
1676fi