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