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