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