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