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