]> git.proxmox.com Git - mirror_frr.git/blame - configure.ac
* rip_routemap.c: Make "match interface" routemap command match both -
[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##
14c1f187 8## $Id: configure.ac,v 1.108 2005/05/13 20:11:53 paul Exp $
e8f2984c 9AC_PREREQ(2.53)
7ea487bc 10
0c2029e9 11AC_INIT(Quagga, 0.99.1, [http://bugzilla.quagga.net])
fa1253d0 12AC_CONFIG_SRCDIR(lib/zebra.h)
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
03ecfb67 24dnl we need gawk for memtypes.awk
25AC_CHECK_PROG([GAWK],[gawk],[gawk],[/bin/false])
26AC_ARG_VAR([GAWK],[GNU AWK])
27
d6b72f7a 28dnl default is to match previous behavior
c4f0efe6 29exampledir=${sysconfdir}
d6b72f7a 30AC_ARG_ENABLE([exampledir],
31 AC_HELP_STRING([--enable-exampledir],
32 [specify alternate directory for examples]),
33 exampledir="$enableval",)
c4f0efe6 34dnl XXX add --exampledir to autoconf standard directory list somehow
d6b72f7a 35AC_SUBST(exampledir)
36
cbd04084 37dnl default is to match previous behavior
38pkgsrcrcdir=""
39pkgsrcdir=""
40AC_ARG_ENABLE([pkgsrcrcdir],
41 AC_HELP_STRING([--enable-pkgsrcrcdir],
42 [specify directory for rc.d scripts]),
43 pkgsrcrcdir="$enableval"; pkgsrcdir="pkgsrc",)
44dnl XXX add --pkgsrcrcdir to autoconf standard directory list somehow
45AC_SUBST(pkgsrcdir)
46AC_SUBST(pkgsrcrcdir)
47
7ea487bc 48dnl ------------
49dnl Check CFLAGS
50dnl ------------
51AC_ARG_WITH(cflags,
52[ --with-cflags Set CFLAGS for use in compilation.])
53if test "x$with_cflags" != "x" ; then
54 CFLAGS="$with_cflags" ; cflags_specified=yes ;
55elif test -n "$CFLAGS" ; then
56 cflags_specified=yes ;
57fi
58
1969e4b9 59dnl --------------------
60dnl Check CC and friends
61dnl --------------------
7ea487bc 62AC_PROG_CC
1969e4b9 63AC_PROG_CPP
64AC_PROG_EGREP
65
66dnl ------------------------------------------------------------------
67dnl Intel compiler check. Although Intel tries really hard to make icc
68dnl look like gcc, there are some differences. It's very verbose with
69dnl -Wall and it doesn't support the individual -W options.
70dnl ------------------------------------------------------------------
71AC_MSG_CHECKING([whether we are using the Intel compiler])
72AC_EGREP_CPP([^__INTEL_COMPILER], [__INTEL_COMPILER],
73 ICC="no"
74 AC_MSG_RESULT([no]),
75 ICC="yes"
76 AC_MSG_RESULT([yes])
77)
7ea487bc 78
a49c0ff6 79dnl ---------------------------------------------
7ea487bc 80dnl If CLFAGS doesn\'t exist set default value
a49c0ff6 81dnl AC_PROG_CC will have set minimal default
82dnl already, eg "-O2 -g" for gcc, "-g" for others
27eebb3e 83dnl (Wall is gcc specific... have to make sure
84dnl gcc is being used before setting it)
1969e4b9 85dnl Intel icc 8.0 also sets __GNUC__, but
86dnl doesn't support all these fancy -W options.
a49c0ff6 87dnl ---------------------------------------------
27eebb3e 88dnl
7ea487bc 89if test "x$cflags_specified" = "x" ; then
1969e4b9 90 if test "x${GCC}" = "xyes" && test "x${ICC}" = "xno"; then
7fd63b38 91 CFLAGS="-Os -g -Wall -Wsign-compare -Wpointer-arith"
7347a2ad 92 CFLAGS="${CFLAGS} -Wbad-function-cast -Wwrite-strings"
a49c0ff6 93 fi
7fd63b38 94 # TODO: conditionally addd -Wpacked if handled
7ea487bc 95fi
96
1969e4b9 97dnl ---------------------------------------------------------------------
98dnl Intel compiler warnings we ignore:
99dnl 279: controlling expression is constant.
100dnl 869: parameter "xxx" was never referenced - to avoid massive warnings
101dnl about "self", "vty", "argc" and "argv" never referenced in DEFUN
102dnl macro.
103dnl 981: operands are evaluated in unspecified order.
104dnl ---------------------------------------------------------------------
105
106if test "$ICC" = "yes"; then
107 CFLAGS="-Os -g -Wall -wd 279,869,981"
108fi
109
7ea487bc 110dnl --------------
111dnl Check programs
112dnl --------------
7ea487bc 113AC_PROG_INSTALL
114AC_PROG_MAKE_SET
115AC_CHECK_TOOL(AR, ar)
116AC_CHECK_TOOL(RANLIB, ranlib, :)
117
118dnl ---------
119dnl AIX check
120dnl ---------
121AC_AIX
122
87efd646 123dnl -------
124dnl libtool
125dnl -------
0fc42949 126AC_PROG_LIBTOOL
87efd646 127
7ea487bc 128dnl ----------------------
129dnl Packages configuration
130dnl ----------------------
131AC_ARG_ENABLE(vtysh,
fc9d0745 132[ --enable-vtysh include integrated vty shell for Quagga])
7ea487bc 133AC_ARG_ENABLE(ipv6,
134[ --disable-ipv6 turn off IPv6 related features and daemons])
135AC_ARG_ENABLE(zebra,
136[ --disable-zebra do not build zebra daemon])
137AC_ARG_ENABLE(bgpd,
138[ --disable-bgpd do not build bgpd])
139AC_ARG_ENABLE(ripd,
140[ --disable-ripd do not build ripd])
141AC_ARG_ENABLE(ripngd,
142[ --disable-ripngd do not build ripngd])
143AC_ARG_ENABLE(ospfd,
144[ --disable-ospfd do not build ospfd])
7ea487bc 145AC_ARG_ENABLE(ospf6d,
146[ --disable-ospf6d do not build ospf6d])
d0199430 147AC_ARG_ENABLE(watchquagga,
148[ --disable-watchquagga do not build watchquagga])
9e867fe6 149AC_ARG_ENABLE(isisd,
ae399ab0 150[ --enable-isisd build isisd])
7ea487bc 151AC_ARG_ENABLE(bgp-announce,
152[ --disable-bgp-announce, turn off BGP route announcement])
153AC_ARG_ENABLE(netlink,
154[ --enable-netlink force to use Linux netlink interface])
155AC_ARG_ENABLE(broken-aliases,
156[ --enable-broken-aliases enable aliases as distinct interfaces for Linux 2.2.X])
157AC_ARG_ENABLE(snmp,
158[ --enable-snmp enable SNMP support])
159AC_ARG_WITH(libpam,
160[ --with-libpam use libpam for PAM support in vtysh])
71c0fb50 161AC_ARG_ENABLE(tcp-zebra,
7ea487bc 162[ --enable-tcp-zebra enable TCP/IP socket connection between zebra and protocol daemon])
7ea487bc 163AC_ARG_ENABLE(opaque-lsa,
1ef74ef7 164[ --enable-opaque-lsa enable OSPF Opaque-LSA with OSPFAPI support (RFC2370)])
165AC_ARG_ENABLE(ospfapi,
166[ --disable-ospfapi do not build OSPFAPI to access the OSPF LSA Database,
167 (this is the default if --enable-opaque-lsa is not set)])
168AC_ARG_ENABLE(ospfclient,
169[ --disable-ospfclient do not build OSPFAPI client for OSPFAPI,
170 (this is the default if --disable-ospfapi is set)])
7ea487bc 171AC_ARG_ENABLE(ospf-te,
172[ --enable-ospf-te enable Traffic Engineering Extension to OSPF])
173AC_ARG_ENABLE(multipath,
174[ --enable-multipath=ARG enable multipath function, ARG must be digit])
e8f2984c 175AC_ARG_ENABLE(quagga_user,
176[ --enable-user=ARG user to run Quagga suite as (default quagga)])
177AC_ARG_ENABLE(quagga_group,
178[ --enable-group=ARG group to run Quagga suite as (default quagga)])
edd7c245 179AC_ARG_ENABLE(vty_group,
6b6942f9 180[ --enable-vty-group=ARG set vty sockets to have specified group as owner])
aa593d5e 181AC_ARG_ENABLE(configfile_mask,
182[ --enable-configfile-mask=ARG set mask for config files])
183AC_ARG_ENABLE(logfile_mask,
184[ --enable-logfile-mask=ARG set mask for log files])
edd7c245 185
71c0fb50 186AC_ARG_ENABLE(rtadv,
6b6942f9 187[ --disable-rtadv disable IPV6 router advertisement feature])
ca776988 188AC_ARG_ENABLE(irdp,
6b6942f9 189[ --enable-irdp enable IRDP server support in zebra])
f695b01f 190AC_ARG_ENABLE(isis_topology,
191[ --enable-isis-topology enable IS-IS topology generator])
41d3fc96 192AC_ARG_ENABLE(capabilities,
193[ --disable-capabilities disable using POSIX capabilities])
6b6942f9 194AC_ARG_ENABLE(gcc_ultra_verbose,
195[ --enable-gcc-ultra-verbose enable ultra verbose GCC warnings])
3cade26f 196AC_ARG_ENABLE(gcc-rdynamic,
197[ --enable-gcc-rdynamic enable gcc linking with -rdynamic for better backtraces])
924b9229 198AC_ARG_ENABLE(time-check,
199[ --disable-time-check disable slow thread warning messages])
6b6942f9 200
201if test x"${enable_gcc_ultra_verbose}" = x"yes" ; then
202 CFLAGS="${CFLAGS} -W -Wcast-qual -Wstrict-prototypes"
203 CFLAGS="${CFLAGS} -Wmissing-declarations -Wmissing-noreturn"
204 CFLAGS="${CFLAGS} -Wmissing-format-attribute -Wunreachable-code"
205 CFLAGS="${CFLAGS} -Wpacked -Wpadded"
206fi
7ea487bc 207
3cade26f 208if test x"${enable_gcc_rdynamic}" = x"yes" ; then
209 LDFLAGS="${LDFLAGS} -rdynamic"
210fi
211
924b9229 212if test x"${enable_time_check}" != x"no" ; then
213 if test x"${enable_time_check}" = x"yes" -o x"${enable_time_check}" = x ; then
214 AC_DEFINE(CONSUMED_TIME_CHECK,5000000,Consumed Time Check)
215 else
216 AC_DEFINE_UNQUOTED(CONSUMED_TIME_CHECK,$enable_time_check,Consumed Time Check)
217 fi
218fi
219
7ea487bc 220if test "${enable_broken_aliases}" = "yes"; then
221 if test "${enable_netlink}" = "yes"
222 then
223 echo "Sorry, you can't use netlink with broken aliases"
224 exit 1
225 fi
226 AC_DEFINE(HAVE_BROKEN_ALIASES,,Broken Alias)
227 enable_netlink=no
228fi
229
230if test "${enable_tcp_zebra}" = "yes"; then
231 AC_DEFINE(HAVE_TCP_ZEBRA,,Use TCP for zebra communication)
232fi
233
7ea487bc 234if test "${enable_opaque_lsa}" = "yes"; then
235 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
236fi
237
238if test "${enable_ospf_te}" = "yes"; then
239 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
240 AC_DEFINE(HAVE_OSPF_TE,,OSPF TE)
241fi
242
d2a0ccc6 243AC_MSG_CHECKING(if zebra should be configurable to send Route Advertisements)
244if test "${enable_rtadv}" != "no"; then
71c0fb50 245 AC_MSG_RESULT(yes)
d2a0ccc6 246 AC_DEFINE(HAVE_RTADV,,Enable IPv6 Routing Advertisement support)
2487bea1 247else
248 AC_MSG_RESULT(no)
71c0fb50 249fi
7ea487bc 250
ca776988 251if test "${enable_irdp}" = "yes"; then
252 AC_DEFINE(HAVE_IRDP,, IRDP )
253fi
254
f695b01f 255if test "${enable_isisd}" = "yes" && test "${enable_isis_topology}" = yes; then
256 AC_DEFINE(TOPOLOGY_GENERATE,,Enable IS-IS topology generator code)
257 ISIS_TOPOLOGY_INCLUDES="-I./topology"
258 ISIS_TOPOLOGY_DIR="topology"
259 ISIS_TOPOLOGY_LIB="./topology/libtopology.a"
260fi
261
262AC_SUBST(ISIS_TOPOLOGY_INCLUDES)
263AC_SUBST(ISIS_TOPOLOGY_DIR)
264AC_SUBST(ISIS_TOPOLOGY_LIB)
265
79cb2169 266if test "${enable_user}" = "yes" || test x"${enable_user}" = x""; then
e8f2984c 267 enable_user="quagga"
edd7c245 268elif test "${enable_user}" = "no"; then
269 enable_user="root"
270fi
edd7c245 271
79cb2169 272if test "${enable_group}" = "yes" || test x"${enable_group}" = x""; then
e8f2984c 273 enable_group="quagga"
edd7c245 274elif test "${enable_group}" = "no"; then
275 enable_group="root"
276fi
edd7c245 277
278if test x"${enable_vty_group}" = x"yes" ; then
8d4aee5d 279 AC_MSG_ERROR([--enable-vty-group requires a group as argument, not yes])
79cb2169 280elif test x"${enable_vty_group}" != x""; then
8d4aee5d 281 if test x"${enable_vty_group}" != x"no"; then
edd7c245 282 AC_DEFINE_UNQUOTED(VTY_GROUP, "${enable_vty_group}", VTY Sockets Group)
283 fi
284fi
26275b05 285AC_SUBST([enable_user])
286AC_SUBST([enable_group])
287AC_SUBST([enable_vty_group])
288AC_DEFINE_UNQUOTED(QUAGGA_USER, "${enable_user}", Quagga User)
289AC_DEFINE_UNQUOTED(QUAGGA_GROUP, "${enable_group}", Quagga Group)
edd7c245 290
aa593d5e 291enable_configfile_mask=${enable_configfile_mask:-0600}
292AC_DEFINE_UNQUOTED(CONFIGFILE_MASK, ${enable_configfile_mask}, Mask for config files)
293
294enable_logfile_mask=${enable_logfile_mask:-0600}
295AC_DEFINE_UNQUOTED(LOGFILE_MASK, ${enable_logfile_mask}, Mask for log files)
296
7ea487bc 297changequote(, )dnl
298
299MULTIPATH_NUM=1
300
301case "${enable_multipath}" in
302 [0-9]|[1-9][0-9])
303 MULTIPATH_NUM="${enable_multipath}"
304 ;;
305 "")
306 ;;
307 *)
308 echo "Please specify digit to --enable-multipath ARG."
309 exit 1
310 ;;
311esac
312
313changequote([, ])dnl
314
315AC_SUBST(MULTIPATH_NUM)
316
317dnl -------------------
318dnl Check header files.
319dnl -------------------
dc7a2bf1 320AC_HEADER_STDC
321AC_CHECK_HEADERS([string.h stropts.h sys/conf.h sys/ksym.h sys/time.h \
322 sys/times.h sys/select.h sys/sysctl.h sys/sockio.h \
323 sys/types.h linux/version.h kvm.h netdb.h asm/types.h \
42c98199 324 sys/param.h libutil.h limits.h])
dc7a2bf1 325
835b7f1b 326AC_CHECK_HEADERS([sys/socket.h netinet/in_systm.h netinet/in.h \
f3bd1a78 327 net/if_dl.h net/netopt.h inet/nd.h net/route.h \
835b7f1b 328 net/if.h net/if_var.h netinet/in_var.h])
dc7a2bf1 329
fa3232e1 330dnl V6 headers are checked below, after we check for v6
7ea487bc 331
332dnl check some types
333AC_C_CONST
334dnl AC_TYPE_PID_T
335AC_TYPE_SIGNAL
336
337dnl Some systems (Solaris 2.x) require libnsl (Network Services Library)
338case "$host" in
afd8a129 339 [*-sunos5.[6-7]*] | [*-solaris2.[6-7]*])
7ea487bc 340 opsys=sol2-6
afd8a129 341 AC_DEFINE(SUNOS_56, 1, SunOS 5.6 to 5.7)
19877dd2 342 AC_DEFINE(SUNOS_5, 1, SunOS 5)
7ea487bc 343 AC_CHECK_LIB(xnet, main)
344 CURSES=-lcurses
345 ;;
1b73de8b 346 [*-sunos5.[8-9]] \
347 | [*-sunos5.1[0-9]] \
348 | [*-sunos5.1[0-9].[0-9]] \
349 | [*-solaris2.[8-9]] \
350 | [*-solaris2.1[0-9]] \
351 | [*-solaris2.1[0-9].[0-9]])
afd8a129 352 opsys=sol8
353 AC_DEFINE(SUNOS_59,,SunOS 5.8 up)
19877dd2 354 AC_DEFINE(SUNOS_5, 1, SunOS 5)
355 AC_CHECK_LIB(socket, main)
356 AC_CHECK_LIB(nsl, main)
1b73de8b 357 AC_CHECK_LIB(umem, main)
19877dd2 358 CURSES=-lcurses
359 ;;
7ea487bc 360 *-sunos5* | *-solaris2*)
19877dd2 361 AC_DEFINE(SUNOS_5,,SunOS 5, Unknown SunOS)
7ea487bc 362 AC_CHECK_LIB(socket, main)
363 AC_CHECK_LIB(nsl, main)
364 CURSES=-lcurses
365 ;;
c45eb839 366 *-linux*)
7ea487bc 367 opsys=gnu-linux
368 AC_DEFINE(GNU_LINUX,,GNU Linux)
369 ;;
370 *-nec-sysv4*)
371 AC_CHECK_LIB(nsl, gethostbyname)
372 AC_CHECK_LIB(socket, socket)
373 ;;
7ea487bc 374 *-openbsd*)
375 opsys=openbsd
376 AC_DEFINE(OPEN_BSD,,OpenBSD)
377 ;;
378 *-bsdi*)
379 opsys=bsdi
380 OTHER_METHOD="mtu_kvm.o"
381 AC_CHECK_LIB(kvm, main)
382 ;;
49e3b3c0 383 *-irix6.5)
dc7a2bf1 384 opsys=irix
385 AC_DEFINE(IRIX_65,,IRIX 6.5)
386 ;;
7ea487bc 387esac
388
389dnl ---------------------
390dnl Integrated VTY option
391dnl ---------------------
392case "${enable_vtysh}" in
393 "yes") VTYSH="vtysh";
394 AC_DEFINE(VTYSH,,VTY shell)
fc9d0745 395 AC_PATH_PROG(PERL, perl)
396dnl Vtysh uses libreadline, which looks for termcap functions at
397dnl configure time. We follow readline's search order.
398dnl The required procedures are in libtermcap on NetBSD, in
399dnl [TODO] on Linux, and in [TODO] on Solaris.
400 AC_CHECK_LIB(termcap, tputs, ,
401 AC_CHECK_LIB(tinfo, tputs, ,
402 AC_CHECK_LIB(curses, tputs, ,
403 AC_CHECK_LIB(ncurses, tputs))))
7ea487bc 404 AC_CHECK_LIB(readline, main)
405 if test $ac_cv_lib_readline_main = no; then
fc9d0745 406 AC_MSG_ERROR([vtysh needs libreadline but was not found and usable on your system.])
7ea487bc 407 fi
408 AC_CHECK_HEADER(readline/history.h)
409 if test $ac_cv_header_readline_history_h = no;then
410 AC_MSG_ERROR([readline is too old to have readline/history.h, please update to the latest readline library.])
411 fi
3d3de8c4 412 AC_CHECK_LIB(readline, rl_completion_matches)
413 if test $ac_cv_lib_readline_rl_completion_matches = no; then
414 AC_DEFINE(rl_completion_matches,completion_matches,Old readline)
415 fi
416 ;;
7ea487bc 417 "no" ) VTYSH="";;
418 * ) ;;
419esac
420
421dnl ----------
422dnl PAM module
423dnl ----------
24cd435b 424if test "$with_libpam" = "yes"; then
24cd435b 425 AC_CHECK_HEADER(security/pam_misc.h)
426 if test "$ac_cv_header_security_pam_misc_h" = yes; then
427 AC_DEFINE(HAVE_PAM_MISC_H,,Have pam_misc.h)
428 AC_DEFINE(PAM_CONV_FUNC,misc_conv,Have misc_conv)
429 pam_conv_func="misc_conv"
24cd435b 430 fi
24cd435b 431 AC_CHECK_HEADER(security/openpam.h)
432 if test "$ac_cv_header_security_openpam_h" = yes; then
433 AC_DEFINE(HAVE_OPENPAM_H,,Have openpam.h)
434 AC_DEFINE(PAM_CONV_FUNC,openpam_ttyconv,Have openpam_ttyconv)
435 pam_conv_func="openpam_ttyconv"
24cd435b 436 fi
437 if test -z "$ac_cv_header_security_pam_misc_h$ac_cv_header_security_openpam_h" ; then
438 AC_MSG_WARN([*** pam support will not be built ***])
439 with_libpam="no"
440 fi
441fi
442
7ea487bc 443if test "$with_libpam" = "yes"; then
444dnl took this test from proftpd's configure.in and suited to our needs
445dnl -------------------------------------------------------------------------
446dnl
447dnl This next check looks funky due to a linker problem with some versions
448dnl of the PAM library. Prior to 0.72 release, the Linux PAM shared library
449dnl omitted requiring libdl linking information. PAM-0.72 or better ships
450dnl with RedHat 6.2 and Debian 2.2 or better.
451AC_CHECK_LIB(pam, pam_start,
24cd435b 452 [AC_CHECK_LIB(pam, $pam_conv_func,
7ea487bc 453 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
454 LIBPAM="-lpam"],
455 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
456 LIBPAM="-lpam -lpam_misc"]
457 )
458 ],
459
460 [AC_CHECK_LIB(pam, pam_end,
24cd435b 461 [AC_CHECK_LIB(pam, $pam_conv_func,
a159ed93 462 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
7ea487bc 463 LIBPAM="-lpam -ldl"],
a159ed93 464 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
7ea487bc 465 LIBPAM="-lpam -ldl -lpam_misc"]
466 )
467 ],AC_MSG_WARN([*** pam support will not be built ***]),
468 [-ldl])
469 ]
470)
471fi
472AC_SUBST(LIBPAM)
473
474dnl -------------------------------
475dnl Endian-ness check
476dnl -------------------------------
477AC_WORDS_BIGENDIAN
478
479dnl -------------------------------
480dnl check the size in byte of the C
481dnl -------------------------------
482dnl AC_CHECK_SIZEOF(char)
483dnl AC_CHECK_SIZEOF(int)
484dnl AC_CHECK_SIZEOF(short)
485dnl AC_CHECK_SIZEOF(long)
486
487dnl ----------------------------
488dnl check existance of functions
489dnl ----------------------------
49e3b3c0 490AC_CHECK_FUNCS(memset memcpy strerror inet_aton daemon snprintf vsnprintf \
04bd484b 491 strlcat strlcpy if_nametoindex if_indextoname getifaddrs \
3cb98dee 492 fcntl strnlen)
a159ed93 493AC_CHECK_FUNCS(setproctitle, ,
494 [AC_CHECK_LIB(util, setproctitle,
495 [LIBS="$LIBS -lutil"
496 AC_DEFINE(HAVE_SETPROCTITLE,, Have setproctitle)
497 ]
498 )
499 ]
500)
7ea487bc 501
502dnl ------------------------------------
503dnl Determine routing get and set method
504dnl ------------------------------------
505AC_MSG_CHECKING(zebra between kernel interface method)
506if test x"$opsys" = x"gnu-linux"; then
507 if test "${enable_netlink}" = "yes";then
508 AC_MSG_RESULT(netlink)
509 RT_METHOD=rt_netlink.o
510 AC_DEFINE(HAVE_NETLINK,,netlink)
511 netlink=yes
512 elif test "${enable_netlink}" = "no"; then
513 AC_MSG_RESULT(ioctl)
514 RT_METHOD=rt_ioctl.o
515 netlink=no
516 else
517 AC_MSG_RESULT(netlink)
518 RT_METHOD=rt_netlink.o
519 AC_DEFINE(HAVE_NETLINK,,netlink)
520 netlink=yes
521 fi
19877dd2 522elif test x"$opsys" = x"sol2-6";then
523 AC_MSG_RESULT(Route socket)
524 KERNEL_METHOD="kernel_socket.o"
525 RT_METHOD="rt_socket.o"
afd8a129 526elif test x"$opsys" = x"sol8";then
19877dd2 527 AC_MSG_RESULT(Route socket)
528 KERNEL_METHOD="kernel_socket.o"
529 RT_METHOD="rt_socket.o"
530elif test "$opsys" = "irix" ; then
531 AC_MSG_RESULT(Route socket)
532 KERNEL_METHOD="kernel_socket.o"
533 RT_METHOD="rt_socket.o"
7ea487bc 534else
19877dd2 535 AC_TRY_RUN([#include <errno.h>
7ea487bc 536#include <sys/types.h>
537#include <sys/socket.h>
538
539main ()
540{
541 int ac_sock;
542
543 ac_sock = socket (AF_ROUTE, SOCK_RAW, 0);
544 if (ac_sock < 0 && errno == EINVAL)
545 exit (1);
546 exit (0);
547}],
548 [KERNEL_METHOD=kernel_socket.o
549 RT_METHOD=rt_socket.o
550 AC_MSG_RESULT(socket)],
551 [RT_METHOD=rt_ioctl.o
552 AC_MSG_RESULT(ioctl)],
553 [KERNEL_METHOD=kernel_socket.o
554 RT_METHOD=rt_socket.o
555 AC_MSG_RESULT(socket)])
7ea487bc 556fi
557AC_SUBST(RT_METHOD)
558AC_SUBST(KERNEL_METHOD)
559AC_SUBST(OTHER_METHOD)
560
b99760ab 561dnl ------------------------------------
562dnl check for broken CMSG_FIRSTHDR macro
563dnl ------------------------------------
6c20046f 564AC_MSG_CHECKING(for broken CMSG_FIRSTHDR)
5b087528 565AC_RUN_IFELSE([AC_LANG_SOURCE([[
b99760ab 566#ifdef SUNOS_5
567#define _XPG4_2
568#define __EXTENSIONS__
569#endif
570#include <stdlib.h>
571#include <sys/types.h>
572#include <sys/socket.h>
573
574main()
575{
576 struct msghdr msg;
577 char buf[4];
578
579 msg.msg_control = buf;
580 msg.msg_controllen = 0;
581
582 if (CMSG_FIRSTHDR(&msg) != NULL)
583 exit(0);
584 exit (1);
5b087528 585}]])],[AC_MSG_RESULT(yes - using workaround) AC_DEFINE(HAVE_BROKEN_CMSG_FIRSTHDR,,Broken CMSG_FIRSTHDR)],
d33e8d7b 586[AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)])
b99760ab 587
7ea487bc 588dnl ------------------------------
589dnl check kernel route read method
590dnl ------------------------------
591AC_CACHE_CHECK(route read method check, zebra_rtread,
592[if test "$netlink" = yes; then
593 RTREAD_METHOD="rtread_netlink.o"
594 zebra_rtread="netlink"
595else
596for zebra_rtread in /proc/net/route /dev/ip /dev/null;
597do
598 test x`ls $zebra_rtread 2>/dev/null` = x"$zebra_rtread" && break
599done
600case $zebra_rtread in
601 "/proc/net/route") RTREAD_METHOD="rtread_proc.o"
602 zebra_rtread="proc";;
9c30ab6b 603 "/dev/ip")
604 case "$host" in
605 *-freebsd*) RTREAD_METHOD=rtread_sysctl.o
606 zebra_rtread="sysctl";;
607 *) RTREAD_METHOD="rtread_getmsg.o"
608 zebra_rtread="getmsg";;
609 esac;;
7ea487bc 610 *) RTREAD_METHOD="rtread_sysctl.o"
611 zebra_rtread="sysctl";;
612esac
613fi])
614AC_SUBST(RTREAD_METHOD)
615
616dnl -----------------------------
617dnl check interface lookup method
618dnl -----------------------------
19877dd2 619IOCTL_METHOD=ioctl.o
7ea487bc 620AC_MSG_CHECKING(interface looking up method)
621if test "$netlink" = yes; then
622 AC_MSG_RESULT(netlink)
623 IF_METHOD=if_netlink.o
19877dd2 624elif test "$opsys" = "sol2-6";then
625 AC_MSG_RESULT(Solaris GIF)
626 IF_METHOD=if_ioctl.o
afd8a129 627elif test "$opsys" = "sol8";then
19877dd2 628 AC_MSG_RESULT(Solaris GLIF)
629 IF_METHOD=if_ioctl_solaris.o
630 IOCTL_METHOD=ioctl_solaris.o
631elif test "$opsys" = "irix" ; then
632 AC_MSG_RESULT(IRIX)
633 IF_METHOD=if_ioctl.o
634elif test "$opsys" = "openbsd";then
635 AC_MSG_RESULT(openbsd)
636 IF_METHOD=if_ioctl.o
637elif grep NET_RT_IFLIST /usr/include/sys/socket.h >/dev/null 2>&1; then
638 AC_MSG_RESULT(sysctl)
7ea487bc 639 IF_METHOD=if_sysctl.o
640 AC_DEFINE(HAVE_NET_RT_IFLIST,,NET_RT_IFLIST)
19877dd2 641else
7ea487bc 642 AC_MSG_RESULT(ioctl)
643 IF_METHOD=if_ioctl.o
7ea487bc 644fi
645AC_SUBST(IF_METHOD)
19877dd2 646AC_SUBST(IOCTL_METHOD)
7ea487bc 647
42c98199 648dnl ---------------------------------------------------------------
649dnl figure out how to specify an interface in multicast sockets API
650dnl ---------------------------------------------------------------
651AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex],,,[#ifdef HAVE_SYS_TYPES_H
652#include <sys/types.h>
653#endif
654#ifdef HAVE_NETINET_IN_H
655#include <netinet/in.h>
656#endif])
657
658AC_MSG_CHECKING([for BSD struct ip_mreq hack])
659AC_TRY_COMPILE([#ifdef HAVE_SYS_PARAM_H
660#include <sys/param.h>
661#endif],[#if (defined(__FreeBSD__) && (__FreeBSD_version >= 500022 || (__FreeBSD_version < 500000 && __FreeBSD_version >= 440000))) || (defined(__NetBSD__) && defined(__NetBSD_Version__) && __NetBSD_Version__ >= 106010000)
662 return (0);
663#else
664 #error No support for BSD struct ip_mreq hack detected
665#endif],[AC_MSG_RESULT(yes)
666AC_DEFINE(HAVE_BSD_STRUCT_IP_MREQ_HACK,,[Can pass ifindex in struct ip_mreq])],
667AC_MSG_RESULT(no))
668
7ea487bc 669dnl -----------------------
670dnl check proc file system.
671dnl -----------------------
672if test -r /proc/net/dev; then
673 AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev)
674 IF_PROC=if_proc.o
675fi
676
677if test -r /proc/net/if_inet6; then
678 AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6)
679 IF_PROC=if_proc.o
680fi
681AC_SUBST(IF_PROC)
682
683dnl -----------------------------
684dnl check ipforward detect method
685dnl -----------------------------
686AC_CACHE_CHECK(ipforward method check, zebra_ipforward_path,
687[for zebra_ipforward_path in /proc/net/snmp /dev/ip /dev/null;
688do
689 test x`ls $zebra_ipforward_path 2>/dev/null` = x"$zebra_ipforward_path" && break
690done
691case $zebra_ipforward_path in
692 "/proc/net/snmp") IPFORWARD=ipforward_proc.o
693 zebra_ipforward_path="proc";;
694 "/dev/ip")
695 case "$host" in
696 *-nec-sysv4*) IPFORWARD=ipforward_ews.o
697 zebra_ipforward_path="ews";;
9c30ab6b 698 *-freebsd*) IPFORWARD=ipforward_sysctl.o
699 zebra_ipforward_path="sysctl";;
7ea487bc 700 *) IPFORWARD=ipforward_solaris.o
701 zebra_ipforward_path="solaris";;
702 esac;;
703 *) IPFORWARD=ipforward_sysctl.o
704 zebra_ipforward_path="sysctl";;
705esac])
706AC_SUBST(IPFORWARD)
707
708AC_CHECK_FUNCS(getaddrinfo, [have_getaddrinfo=yes], [have_getaddrinfo=no])
709
710dnl ----------
711dnl IPv6 check
712dnl ----------
713AC_MSG_CHECKING(whether does this OS have IPv6 stack)
714if test "${enable_ipv6}" = "no"; then
715 AC_MSG_RESULT(disabled)
716else
717dnl ----------
718dnl INRIA IPv6
719dnl ----------
a159ed93 720 if grep IPV6_INRIA_VERSION /usr/include/netinet/in.h >/dev/null 2>&1; then
721 zebra_cv_ipv6=yes
722 AC_DEFINE(HAVE_IPV6,1,INRIA IPv6)
723 AC_DEFINE(INRIA_IPV6,1,INRIA IPv6)
724 RIPNGD="ripngd"
725 OSPF6D="ospf6d"
726 LIB_IPV6=""
727 AC_MSG_RESULT(INRIA IPv6)
7ea487bc 728dnl ---------
729dnl KAME IPv6
730dnl ---------
a159ed93 731 elif grep WIDE /usr/include/netinet6/in6.h >/dev/null 2>&1; then
732 zebra_cv_ipv6=yes
733 AC_DEFINE(HAVE_IPV6,1,KAME IPv6)
734 AC_DEFINE(KAME,1,KAME IPv6)
735 RIPNGD="ripngd"
736 OSPF6D="ospf6d"
737 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
7ea487bc 738 LIB_IPV6="-L/usr/local/v6/lib -linet6"
a159ed93 739 fi
740 AC_MSG_RESULT(KAME)
71c0fb50 741dnl -------------------------
742dnl MUSICA IPv6
743dnl default host check
744dnl It is not used by Kheops
745dnl -------------------------
a159ed93 746 elif grep MUSICA /usr/include6/netinet6/in6.h >/dev/null 2>&1; then
747 zebra_cv_ipv6=yes
748 AC_DEFINE(HAVE_IPV6,1,Musicia IPv6)
749 AC_DEFINE(MUSICA,1,Musica IPv6 stack)
750 AC_DEFINE(KAME,1,KAME IPv6 stack)
751 RIPNGD="ripngd"
752 OSPF6D="ospf6d"
753 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
71c0fb50 754 LIB_IPV6="-L/usr/local/v6/lib -linet6"
a159ed93 755 fi
756 AC_MSG_RESULT(MUSICA)
7ea487bc 757dnl ---------
758dnl NRL check
759dnl ---------
a159ed93 760 elif grep NRL /usr/include/netinet6/in6.h >/dev/null 2>&1; then
761 zebra_cv_ipv6=yes
762 AC_DEFINE(HAVE_IPV6,1,NRL IPv6)
763 AC_DEFINE(NRL,1,NRL)
764 RIPNGD="ripngd"
765 OSPF6D="ospf6d"
766 if test x"$opsys" = x"bsdi";then
7ea487bc 767 AC_DEFINE(BSDI_NRL,,BSDI)
768 AC_MSG_RESULT(BSDI_NRL)
a159ed93 769 else
7ea487bc 770 AC_MSG_RESULT(NRL)
a159ed93 771 fi
19877dd2 772dnl ------------------------------------
773dnl Solaris 9, 10 and potentially higher
774dnl ------------------------------------
afd8a129 775 elif test x"$opsys" = x"sol8"; then
19877dd2 776 zebra_cv_ipv6=yes;
777 AC_DEFINE(HAVE_IPV6, 1, IPv6)
778 AC_DEFINE(SOLARIS_IPV6, 1, Solaris IPv6)
779 RIPNGD="ripngd"
780 OSPF6D="ospf6d"
781 AC_MSG_RESULT(Solaris IPv6)
7ea487bc 782dnl ----------
783dnl Linux IPv6
784dnl ----------
a159ed93 785 elif test "${enable_ipv6}" = "yes"; then
786 AC_EGREP_CPP(yes, [
787 #include <linux/version.h>
788 /* 2.1.128 or later */
789 #if LINUX_VERSION_CODE >= 0x020180
790 yes
791 #endif],
792 [zebra_cv_ipv6=yes
793 zebra_cv_linux_ipv6=yes
794 AC_MSG_RESULT(Linux IPv6)])
795 else
796 if test x`ls /proc/net/ipv6_route 2>/dev/null` = x"/proc/net/ipv6_route"
797 then
7ea487bc 798 zebra_cv_ipv6=yes
799 zebra_cv_linux_ipv6=yes
800 AC_MSG_RESULT(Linux IPv6)
a159ed93 801 fi
802 fi
7ea487bc 803
a159ed93 804 if test "$zebra_cv_linux_ipv6" = "yes";then
805 AC_MSG_CHECKING(for GNU libc >= 2.1)
806 AC_DEFINE(HAVE_IPV6,1,Linux IPv6)
807 AC_EGREP_CPP(yes, [
7ea487bc 808#include <features.h>
809#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
810 yes
a159ed93 811#endif],
812 [glibc=yes
813 AC_DEFINE(LINUX_IPV6,1,Linux IPv6 stack)
814 AC_MSG_RESULT(yes)],
815 AC_MSG_RESULT(no)
816 )
817 RIPNGD="ripngd"
818 OSPF6D="ospf6d"
819 if test "$glibc" != "yes"; then
7ea487bc 820 INCLUDES="-I/usr/inet6/include"
821 if test x`ls /usr/inet6/lib/libinet6.a 2>/dev/null` != x;then
822 LIB_IPV6="-L/usr/inet6/lib -linet6"
823 fi
a159ed93 824 fi
825 fi
7ea487bc 826
827dnl -----------------------
828dnl Set IPv6 related values
829dnl -----------------------
a159ed93 830 LIBS="$LIB_IPV6 $LIBS"
831 AC_SUBST(LIB_IPV6)
7ea487bc 832
a159ed93 833 if test x"$RIPNGD" = x""; then
834 AC_MSG_RESULT(IPv4 only)
835 fi
7ea487bc 836fi
837
fa3232e1 838dnl ------------------
839dnl IPv6 header checks
840dnl ------------------
841if test "x${zebra_cv_ipv6}" = "xyes"; then
842AC_CHECK_HEADERS([netinet6/in6.h netinet/in6_var.h netinet/icmp6.h \
843 netinet6/in6_var.h netinet6/nd6.h])
844fi
845
7ea487bc 846dnl --------------------
847dnl Daemon disable check
848dnl --------------------
849if test "${enable_zebra}" = "no";then
850 ZEBRA=""
851else
852 ZEBRA="zebra"
853fi
854
855if test "${enable_bgpd}" = "no";then
856 BGPD=""
857else
858 BGPD="bgpd"
859fi
860
861if test "${enable_ripd}" = "no";then
862 RIPD=""
863else
864 RIPD="ripd"
865fi
866
867if test "${enable_ospfd}" = "no";then
868 OSPFD=""
869else
870 OSPFD="ospfd"
871fi
872
d0199430 873if test "${enable_watchquagga}" = "no";then
874 WATCHQUAGGA=""
875else
876 WATCHQUAGGA="watchquagga"
877fi
878
1ef74ef7 879OSPFCLIENT=""
880if test "${enable_opaque_lsa}" = "yes"; then
881 if test "${enable_ospfapi}" != "no";then
9a569848 882 AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI)
1ef74ef7 883
884 if test "${enable_ospfclient}" != "no";then
885 OSPFCLIENT="ospfclient"
886 fi
887 fi
888
7ea487bc 889fi
890
891case "${enable_ripngd}" in
892 "yes") RIPNGD="ripngd";;
893 "no" ) RIPNGD="";;
894 * ) ;;
895esac
896
897case "${enable_ospf6d}" in
898 "yes") OSPF6D="ospf6d";;
899 "no" ) OSPF6D="";;
900 * ) ;;
901esac
902
9e867fe6 903case "${enable_isisd}" in
904 "yes") ISISD="isisd";;
905 "no" ) ISISD="";;
ae399ab0 906 * ) ;;
9e867fe6 907esac
908
7ea487bc 909if test "${enable_bgp_announce}" = "no";then
910 AC_DEFINE(DISABLE_BGP_ANNOUNCE,,Disable BGP installation to zebra)
911fi
912
913AC_SUBST(ZEBRA)
914AC_SUBST(BGPD)
915AC_SUBST(RIPD)
916AC_SUBST(RIPNGD)
917AC_SUBST(OSPFD)
918AC_SUBST(OSPF6D)
d0199430 919AC_SUBST(WATCHQUAGGA)
9e867fe6 920AC_SUBST(ISISD)
7ea487bc 921AC_SUBST(VTYSH)
922AC_SUBST(INCLUDES)
923AC_SUBST(CURSES)
924AC_SUBST(OSPFCLIENT)
1ef74ef7 925AC_SUBST(OSPFAPI)
7ea487bc 926AC_CHECK_LIB(c, inet_ntop, [AC_DEFINE(HAVE_INET_NTOP,,inet_ntop)])
927AC_CHECK_LIB(c, inet_pton, [AC_DEFINE(HAVE_INET_PTON,,inet_pton)])
928AC_CHECK_LIB(crypt, crypt)
929AC_CHECK_LIB(resolv, res_init)
930AC_CHECK_LIB(m, main)
931
932dnl ---------------------------------------------------
933dnl BSD/OS 4.1 define inet_XtoY function as __inet_XtoY
934dnl ---------------------------------------------------
a159ed93 935AC_CHECK_FUNC(__inet_ntop, AC_DEFINE(HAVE_INET_NTOP,,__inet_ntop))
936AC_CHECK_FUNC(__inet_pton, AC_DEFINE(HAVE_INET_PTON,,__inet_pton))
937AC_CHECK_FUNC(__inet_aton, AC_DEFINE(HAVE_INET_ATON,,__inet_aton))
7ea487bc 938
939dnl ---------------------------
940dnl check system has GNU regexp
941dnl ---------------------------
942dnl AC_MSG_CHECKING(whether system has GNU regex)
943AC_CHECK_LIB(c, regexec,
944[AC_DEFINE(HAVE_GNU_REGEX,,GNU regexp library)
945 LIB_REGEX=""],
946[LIB_REGEX="regex.o"])
947AC_SUBST(LIB_REGEX)
948
949dnl ------------------
950dnl check SNMP library
951dnl ------------------
952if test "${enable_snmp}" = "yes";then
953dnl AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
7ea487bc 954 if test "${HAVE_SNMP}" = ""; then
1ef74ef7 955 old_libs="${LIBS}"
956 LIBS="-L/usr/lib"
7ea487bc 957 unset ac_cv_lib_snmp_asn_parse_int
1ef74ef7 958 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
959 if test "${NEED_CRYPTO}" = ""; then
960 AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes ])
961 else
962 AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes; NEED_CRYPTO=yes;LIBS="$LIBS -lcrypto" ],,"-lcrypto")
963 fi
964 LIBS="${old_libs}"
7ea487bc 965 fi
7ea487bc 966 if test "${HAVE_SNMP}" = ""; then
1ef74ef7 967 old_libs="${LIBS}"
968 LIBS="-L/usr/lib"
969 unset ac_cv_lib_snmp_asn_parse_int
970 AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes, )
971 if test "${HAVE_SNMP}" = ""; then
972 unset ac_cv_lib_snmp_asn_parse_int
973 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
974 if test "${NEED_CRYPTO}" = "yes"; then
975 AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
976 fi
977 fi
978 LIBS="${old_libs}"
7ea487bc 979 fi
1ef74ef7 980
ac7c4bb6 981 if test "${HAVE_SNMP}" = ""; then
1ef74ef7 982 old_libs="${LIBS}"
983 LIBS="-L/usr/local/lib"
984 unset ac_cv_lib_snmp_asn_parse_int
985 AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
986 if test "${HAVE_SNMP}" = ""; then
987 unset ac_cv_lib_snmp_asn_parse_int
988 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
989 if test "${NEED_CRYPTO}" = "yes"; then
990 AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
991 fi
992 fi
993 LIBS="${old_libs}"
ac7c4bb6 994 fi
1ef74ef7 995
7ea487bc 996 if test "${HAVE_SNMP}" = "yes"; then
997 for ac_snmp in /usr/include/net-snmp/library/asn1.h /usr/include/ucd-snmp/asn1.h /usr/local/include/ucd-snmp/asn1.h /dev/null
998 do
999 test -f "${ac_snmp}" && break
1000 done
1ef74ef7 1001
7ea487bc 1002 case ${ac_snmp} in
1003 /usr/include/net-snmp/*)
1004 AC_DEFINE(HAVE_SNMP,,SNMP)
1ef74ef7 1005 AC_DEFINE(HAVE_NETSNMP,,SNMP)
7ea487bc 1006 AC_DEFINE(UCD_COMPATIBLE,,SNMP)
2d58228e 1007 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/net-snmp -I/usr/include/net-snmp/library"
ac7c4bb6 1008 if test "${HAVE_NETSNMP}" = "yes"; then
1ef74ef7 1009 LIBS="${LIBS} -lnetsnmp"
ac7c4bb6 1010 else
1ef74ef7 1011 LIBS="${LIBS} -lsnmp"
ac7c4bb6 1012 fi
7ea487bc 1013 ;;
1014 /usr/include/ucd-snmp/*)
1015 AC_DEFINE(HAVE_SNMP,,SNMP)
2d58228e 1016 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/ucd-snmp"
7ea487bc 1017 LIBS="${LIBS} -lsnmp"
1018 ;;
1019 /usr/local/include/ucd-snmp/*)
1020 AC_DEFINE(HAVE_SNMP,,SNMP)
2d58228e 1021 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/ucd-snmp"
7ea487bc 1022 LIBS="${LIBS} -L/usr/local/lib -lsnmp"
1023 ;;
f3bd1a78 1024 /usr/local/include/net-snmp/*)
1025 AC_DEFINE(HAVE_SNMP,,SNMP)
1026 AC_DEFINE(HAVE_NET_SNMP,,SNMP)
1027 AC_DEFINE(UCD_COMPATIBLE,,SNMP)
2d58228e 1028 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/net-snmp"
f3bd1a78 1029 LIBS="${LIBS} -L/usr/local/lib -lnetsnmp"
1030 ;;
7ea487bc 1031 esac
1032 if test "${NEED_CRYPTO}" = "yes"; then
1033 LIBS="${LIBS} -lcrypto"
1034 fi
1035 fi
1036fi
1037
6cf9df08 1038if test "${enable_snmp}" = "yes" -a "${HAVE_SNMP}" != "yes"; then
1039 AC_MSG_ERROR([--enable-snmp given, but cannot find support for SNMP])
1040fi
1041
2d58228e 1042AC_SUBST(SNMP_INCLUDES)
1043
7ea487bc 1044dnl ----------------------------
1045dnl check sa_len of sockaddr
1046dnl ----------------------------
1047AC_MSG_CHECKING(whether struct sockaddr has a sa_len field)
1048AC_TRY_COMPILE([#include <sys/types.h>
1049#include <sys/socket.h>
1050],[static struct sockaddr ac_i;int ac_j = sizeof (ac_i.sa_len);],
1051[AC_MSG_RESULT(yes)
1052 AC_DEFINE(HAVE_SA_LEN,,sa_len)],
1053 AC_MSG_RESULT(no))
1054
1055dnl ----------------------------
1056dnl check sin_len of sockaddr_in
1057dnl ----------------------------
1058AC_MSG_CHECKING(whether struct sockaddr_in has a sin_len field)
1059AC_TRY_COMPILE([#include <sys/types.h>
1060#include <netinet/in.h>
1061],[static struct sockaddr_in ac_i;int ac_j = sizeof (ac_i.sin_len);],
1062[AC_MSG_RESULT(yes)
1063 AC_DEFINE(HAVE_SIN_LEN,,sin_len)],
1064 AC_MSG_RESULT(no))
1065
1066dnl ----------------------------
1067dnl check sun_len of sockaddr_un
1068dnl ----------------------------
1069AC_MSG_CHECKING(whether struct sockaddr_un has a sun_len field)
1070AC_TRY_COMPILE([#include <sys/types.h>
1071#include <sys/un.h>
1072],[static struct sockaddr_un ac_i;int ac_j = sizeof (ac_i.sun_len);],
1073[AC_MSG_RESULT(yes)
1074 AC_DEFINE(HAVE_SUN_LEN,,sun_len)],
1075 AC_MSG_RESULT(no))
1076
1077dnl -----------------------------------
1078dnl check sin6_scope_id of sockaddr_in6
1079dnl -----------------------------------
1080if test "$zebra_cv_ipv6" = yes; then
1081 AC_MSG_CHECKING(whether struct sockaddr_in6 has a sin6_scope_id field)
1082 AC_TRY_COMPILE([#include <sys/types.h>
1083#include <netinet/in.h>
1084],[static struct sockaddr_in6 ac_i;int ac_j = sizeof (ac_i.sin6_scope_id);],
1085[AC_MSG_RESULT(yes)
1086 AC_DEFINE(HAVE_SIN6_SCOPE_ID,,scope id)],
1087 AC_MSG_RESULT(no))
1088fi
1089
1090dnl ----------------------------
1091dnl check socklen_t exist or not
1092dnl ----------------------------
1093AC_MSG_CHECKING(whther socklen_t is defined)
1094AC_TRY_COMPILE([#include <sys/types.h>
1095#include <sys/socket.h>
1096#include <netinet/in.h>
1097],[socklen_t ac_x;],
1098[AC_MSG_RESULT(yes)
1099 AC_DEFINE(HAVE_SOCKLEN_T,,socklen_t)],
1100 AC_MSG_RESULT(no))
1101
1102dnl ------------------------
1103dnl check struct sockaddr_dl
1104dnl ------------------------
1105AC_MSG_CHECKING(whether struct sockaddr_dl exist)
1106AC_EGREP_HEADER(sockaddr_dl,
1107net/if_dl.h,
1108[AC_MSG_RESULT(yes)
1109 AC_DEFINE(HAVE_SOCKADDR_DL,,sockaddr_dl)],
1110 AC_MSG_RESULT(no))
1111
1112dnl --------------------------
1113dnl check structure ifaliasreq
1114dnl --------------------------
1115AC_MSG_CHECKING(whether struct ifaliasreq exist)
1116AC_EGREP_HEADER(ifaliasreq,
1117net/if.h,
1118[AC_MSG_RESULT(yes)
1119 AC_DEFINE(HAVE_IFALIASREQ,,ifaliasreq)],
1120 AC_MSG_RESULT(no))
1121
1122dnl ----------------------------
1123dnl check structure in6_aliasreq
1124dnl ----------------------------
71c0fb50 1125AC_MSG_CHECKING(whether struct in6_aliasreq exist)
7ea487bc 1126AC_EGREP_HEADER(in6_aliasreq,
1127netinet6/in6_var.h,
1128[AC_MSG_RESULT(yes)
1129 AC_DEFINE(HAVE_IN6_ALIASREQ,,in6_aliasreq)],
1130 AC_MSG_RESULT(no))
1131
71c0fb50 1132dnl -----------------------------------
1133dnl check ifra_lifetime of in6_aliasreq
1134dnl -----------------------------------
1135AC_MSG_CHECKING(whether in6_aliasreq.ifra_lifetime exist)
1136AC_TRY_COMPILE([#include <sys/types.h>
1137#include <netinet6/in6_var.h>
1138],[static struct if6_aliasreq ac_i;int ac_j = sizeof (ac_i.ifra_lifetime);],
1139[AC_MSG_RESULT(yes)
a159ed93 1140 AC_DEFINE(HAVE_IFRA_LIFETIME,,Have in6_aliasreq.ifra_lifetime)],
71c0fb50 1141 AC_MSG_RESULT(no))
1142
7ea487bc 1143dnl ---------------------------
1144dnl check structure rt_addrinfo
1145dnl ---------------------------
1146AC_MSG_CHECKING(whether struct rt_addrinfo exist)
1147AC_EGREP_HEADER(rt_addrinfo,
1148net/route.h,
1149[AC_MSG_RESULT(yes)
1150 AC_DEFINE(HAVE_RT_ADDRINFO,,rt_addrinfo)],
1151 AC_MSG_RESULT(no))
1152
1153dnl --------------------------
1154dnl check structure in_pktinfo
1155dnl --------------------------
1156AC_MSG_CHECKING(whether struct in_pktinfo exist)
1157AC_TRY_COMPILE([#include <netinet/in.h>
1158],[struct in_pktinfo ac_x;],
1159[AC_MSG_RESULT(yes)
1160 AC_DEFINE(HAVE_INPKTINFO,,in_pktinfo)],
1161 AC_MSG_RESULT(no))
1162
29c4c9bd 1163dnl ----------------------------------
1164dnl check struct nd_opt_homeagent_info
1165dnl ----------------------------------
1166AC_MSG_CHECKING(whether struct nd_opt_homeagent_info exist)
1167AC_EGREP_HEADER(nd_opt_homeagent_info,
1168netinet/icmp6.h,
1169[AC_MSG_RESULT(yes)
1170 AC_DEFINE(HAVE_ND_OPT_HOMEAGENT_INFO,,nd_opt_homeagent_info)],
1171 AC_MSG_RESULT(no))
1172
1173dnl --------------------------------
1174dnl check struct nd_opt_adv_interval
1175dnl --------------------------------
1176AC_MSG_CHECKING(whether struct nd_opt_adv_interval exist)
1177AC_EGREP_HEADER(nd_opt_adv_interval,
1178netinet/icmp6.h,
1179[AC_MSG_RESULT(yes)
1180 AC_DEFINE(HAVE_ND_OPT_ADV_INTERVAL,,nd_opt_adv_interval)],
1181 AC_MSG_RESULT(no))
1182
1183dnl ------------------------------------
1184dnl check fields in nd_opt_adv_interval
1185dnl ------------------------------------
1186AC_MSG_CHECKING(whether nd_opt_ai_type field exist)
1187AC_EGREP_HEADER(nd_opt_ai_type,
1188netinet/icmp6.h,
1189[AC_MSG_RESULT(yes)
1190 AC_DEFINE(HAVE_ND_OPT_ADV_INTERVAL_AI_FIELDS,,nd_opt_ai_type)],
1191 AC_MSG_RESULT(no))
1192
7ea487bc 1193dnl --------------------------------------
1194dnl checking for getrusage struct and call
1195dnl --------------------------------------
1196AC_MSG_CHECKING(whether getrusage is available)
1197AC_TRY_COMPILE([#include <sys/resource.h>
1198],[struct rusage ac_x; getrusage (RUSAGE_SELF, &ac_x);],
1199[AC_MSG_RESULT(yes)
1200 AC_DEFINE(HAVE_RUSAGE,,rusage)],
1201 AC_MSG_RESULT(no))
1202
edd7c245 1203dnl -------------------
1204dnl capabilities checks
1205dnl -------------------
41d3fc96 1206if test "${enable_capabilities}" != "no"; then
1207 AC_MSG_CHECKING(whether prctl PR_SET_KEEPCAPS is available)
1208 AC_TRY_COMPILE([#include <sys/prctl.h>],[prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);],
1209 [AC_MSG_RESULT(yes)
1210 AC_DEFINE(HAVE_PR_SET_KEEPCAPS,,prctl)
1211 quagga_ac_keepcaps="yes"],
1212 AC_MSG_RESULT(no)
edd7c245 1213 )
41d3fc96 1214 if test x"${quagga_ac_keepcaps}" = x"yes"; then
1215 AC_CHECK_HEADERS(sys/capability.h)
1216 fi
1217 if test x"${ac_cv_header_sys_capability_h}" = x"yes"; then
1218 AC_CHECK_LIB(cap, cap_init,
1219 [AC_DEFINE(HAVE_LCAPS,1,Capabilities)
1220 LIBCAP="-lcap"
1221 ]
1222 )
1223 fi
edd7c245 1224fi
1225AC_SUBST(LIBCAP)
1226
40abf239 1227dnl -------------------
1228dnl test for ucontext.h
1229dnl -------------------
1230AC_CHECK_HEADERS(ucontext.h)
1231
fb2d1502 1232dnl ---------------------------
1233dnl check for glibc 'backtrace'
1234dnl ---------------------------
1235if test "${glibc}" = "yes"; then
1236 AC_CHECK_HEADER(execinfo.h)
1237fi
1238if test x"${ac_cv_header_execinfo_h}" = x"yes"; then
1239 AC_CHECK_FUNC(backtrace,
1240 [AC_DEFINE(HAVE_GLIBC_BACKTRACE,,Glibc backtrace)]
1241 )
1242fi
1243
408ad943 1244dnl ----------
1245dnl configure date
1246dnl ----------
1247CONFDATE=`date '+%Y%m%d'`
1248AC_SUBST(CONFDATE)
1249
7ea487bc 1250dnl ------------------------------
a159ed93 1251dnl set paths for state directory
23bd12c3 1252dnl ------------------------------
1253if test "${prefix}" = "NONE"; then
e8f2984c 1254 quagga_statedir_prefix="";
23bd12c3 1255else
e8f2984c 1256 quagga_statedir_prefix=${prefix}
23bd12c3 1257fi
1258if test "${localstatedir}" = '${prefix}/var'; then
a159ed93 1259 AC_CACHE_CHECK(state directory,ac_statedir,
e8f2984c 1260 [for QUAGGA_STATE_DIR in ${quagga_statedir_prefix}/var/run dnl
1261 ${quagga_statedir_prefix}/var/adm dnl
1262 ${quagga_statedir_prefix}/etc dnl
a159ed93 1263 /var/run dnl
1264 /var/adm dnl
1265 /etc dnl
1266 /dev/null;
23bd12c3 1267 do
e8f2984c 1268 test -d $QUAGGA_STATE_DIR && break
23bd12c3 1269 done
e8f2984c 1270 quagga_statedir=$QUAGGA_STATE_DIR])
23bd12c3 1271else
e8f2984c 1272 quagga_statedir=${localstatedir}
a159ed93 1273 AC_MSG_CHECKING(directory to use for state file)
e8f2984c 1274 AC_MSG_RESULT(${quagga_statedir})
26275b05 1275 AC_SUBST(quagga_statedir)
a159ed93 1276fi
e8f2984c 1277if test $quagga_statedir = "/dev/null"; then
a159ed93 1278 AC_MSG_ERROR('STATE DIRECTORY NOT FOUND! FIX OR SPECIFY --localstatedir!')
1279fi
1280
e8f2984c 1281AC_DEFINE_UNQUOTED(PATH_ZEBRA_PID, "$quagga_statedir/zebra.pid",zebra PID)
1282AC_DEFINE_UNQUOTED(PATH_RIPD_PID, "$quagga_statedir/ripd.pid",ripd PID)
1283AC_DEFINE_UNQUOTED(PATH_RIPNGD_PID, "$quagga_statedir/ripngd.pid",ripngd PID)
1284AC_DEFINE_UNQUOTED(PATH_BGPD_PID, "$quagga_statedir/bgpd.pid",bgpd PID)
1285AC_DEFINE_UNQUOTED(PATH_OSPFD_PID, "$quagga_statedir/ospfd.pid",ospfd PID)
1286AC_DEFINE_UNQUOTED(PATH_OSPF6D_PID, "$quagga_statedir/ospf6d.pid",ospf6d PID)
9e867fe6 1287AC_DEFINE_UNQUOTED(PATH_ISISD_PID, "$quagga_statedir/isisd.pid",isisd PID)
d0199430 1288AC_DEFINE_UNQUOTED(PATH_WATCHQUAGGA_PID, "$quagga_statedir/watchquagga.pid",watchquagga PID)
e8f2984c 1289AC_DEFINE_UNQUOTED(ZEBRA_SERV_PATH, "$quagga_statedir/zserv.api",zebra api socket)
1290AC_DEFINE_UNQUOTED(ZEBRA_VTYSH_PATH, "$quagga_statedir/zebra.vty",zebra vty socket)
1291AC_DEFINE_UNQUOTED(RIP_VTYSH_PATH, "$quagga_statedir/ripd.vty",rip vty socket)
1292AC_DEFINE_UNQUOTED(RIPNG_VTYSH_PATH, "$quagga_statedir/ripngd.vty",ripng vty socket)
1293AC_DEFINE_UNQUOTED(BGP_VTYSH_PATH, "$quagga_statedir/bgpd.vty",bgpd vty socket)
1294AC_DEFINE_UNQUOTED(OSPF_VTYSH_PATH, "$quagga_statedir/ospfd.vty",ospfd vty socket)
1295AC_DEFINE_UNQUOTED(OSPF6_VTYSH_PATH, "$quagga_statedir/ospf6d.vty",ospf6d vty socket)
9e867fe6 1296AC_DEFINE_UNQUOTED(ISIS_VTYSH_PATH, "$quagga_statedir/isisd.vty",isisd vty socket)
515210bd 1297AC_DEFINE_UNQUOTED(DAEMON_VTY_DIR, "$quagga_statedir",daemon vty directory)
7ea487bc 1298
1eb8ef25 1299dnl -------------------------------
1300dnl Quagga sources should always be
1301dnl current wrt interfaces. Dont
1302dnl allow deprecated interfaces to
1303dnl be exposed.
1304dnl -------------------------------
1305AC_DEFINE(QUAGGA_NO_DEPRECATED_INTERFACES, 1, Hide deprecated interfaces)
1306
7ea487bc 1307dnl ---------------------------
1308dnl Check htonl works correctly
1309dnl ---------------------------
1310AC_MSG_CHECKING(for working htonl)
1311AC_CACHE_VAL(ac_cv_htonl_works, [
1312AC_TRY_LINK([#ifdef HAVE_SYS_TYPES_H
1313#include <sys/types.h>
1314#endif
1315#ifdef HAVE_NETDB_H
1316#include <netdb.h>
1317#endif
1318#ifdef HAVE_NETINET_IN_H
1319#include <netinet/in.h>
1320#endif],
1321[htonl (0);],
1322ac_cv_htonl_works=yes,
1323ac_cv_htonl_works=no)])
1324AC_MSG_RESULT($ac_cv_htonl_works)
1325
14c17fd8 1326AC_CONFIG_FILES([Makefile lib/Makefile zebra/Makefile ripd/Makefile
d0199430 1327 ripngd/Makefile bgpd/Makefile ospfd/Makefile watchquagga/Makefile
9e867fe6 1328 ospf6d/Makefile isisd/Makefile vtysh/Makefile doc/Makefile
14c17fd8 1329 ospfclient/Makefile tests/Makefile m4/Makefile redhat/Makefile
69f1fc22 1330 pkgsrc/Makefile
670bbf19 1331 redhat/quagga.spec
b7a97f82 1332 lib/version.h
14c17fd8 1333 doc/defines.texi
f695b01f 1334 isisd/topology/Makefile
cbd04084 1335 pkgsrc/bgpd.sh pkgsrc/ospf6d.sh pkgsrc/ospfd.sh
f31293af 1336 pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh])
26275b05 1337AC_CONFIG_FILES([solaris/Makefile])
1338
670bbf19 1339AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl])
48577196 1340## Hack, but working solution to avoid rebuilding of quagga.info.
1341## It's already in CVS until texinfo 4.7 is more common.
14c1f187 1342AC_CONFIG_COMMANDS([info-time],[touch doc/quagga.info])
14c17fd8 1343AC_OUTPUT
7ea487bc 1344
1345echo "
c89f6494 1346Quagga configuration
1347--------------------
1348quagga version : ${PACKAGE_VERSION}
7ea487bc 1349host operationg system : ${host_os}
1350source code location : ${srcdir}
1351compiler : ${CC}
1352compiler flags : ${CFLAGS}
2d58228e 1353includes : ${INCLUDES} ${SNMP_INCLUDES}
71c0fb50 1354linker flags : ${LDFLAGS} ${LIBS}
e8f2984c 1355state file directory : ${quagga_statedir}
dc7a2bf1 1356config file directory : `eval echo \`echo ${sysconfdir}\``
d6b72f7a 1357example directory : `eval echo \`echo ${exampledir}\``
8d4aee5d 1358user to run as : ${enable_user}
1359group to run as : ${enable_group}
1360group for vty sockets : ${enable_vty_group}
aa593d5e 1361config file mask : ${enable_configfile_mask}
1362log file mask : ${enable_logfile_mask}
dc7a2bf1 1363
1364The above user and group must have read/write access to the state file
1365directory and to the config files in the config file directory.
7ea487bc 1366"