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