blob: 87ec96c4fafe95d1bd1012df11a59c64b1c42fac [file] [log] [blame]
paul7ea487b2003-03-17 02:05:07 +00001##
paule8f29842003-08-12 13:08:31 +00002## Configure template file for Quagga.
paul7ea487b2003-03-17 02:05:07 +00003## autoconf will generate configure script.
4##
5## Copyright (c) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
paule8f29842003-08-12 13:08:31 +00006## Portions Copyright (c) 2003 Paul Jakma <paul@dishone.st>
paul7ea487b2003-03-17 02:05:07 +00007##
Paul Jakma105b8232006-05-28 08:02:41 +00008## $Id$
paule8f29842003-08-12 13:08:31 +00009AC_PREREQ(2.53)
paul7ea487b2003-03-17 02:05:07 +000010
Paul Jakmae1f3d392008-06-10 21:25:38 +000011AC_INIT(Quagga, 0.99.10, [http://bugzilla.quagga.net])
paulfa1253d2003-09-24 05:09:26 +000012AC_CONFIG_SRCDIR(lib/zebra.h)
ajsdfb9a542005-04-11 14:55:55 +000013
14dnl -----------------------------------
15dnl Get hostname and other information.
16dnl -----------------------------------
17AC_CANONICAL_BUILD()
18AC_CANONICAL_HOST()
19AC_CANONICAL_TARGET()
20
gdt81b81822004-04-07 22:48:47 +000021AM_INIT_AUTOMAKE(1.6)
paul7ea487b2003-03-17 02:05:07 +000022AM_CONFIG_HEADER(config.h)
23
Greg Troxel1bbaa8c2007-02-06 19:36:47 +000024dnl GNU awk is required for lib/memtype.h made by memtypes.awk.
25dnl BSD awk complains: awk: gensub doesn't support backreferences (subst "\1")
paul03ecfb62005-04-16 15:38:23 +000026AC_CHECK_PROG([GAWK],[gawk],[gawk],[/bin/false])
27AC_ARG_VAR([GAWK],[GNU AWK])
28
gdtd6b72f72003-12-03 17:24:27 +000029dnl default is to match previous behavior
gdtc4f0efe2003-12-04 15:39:25 +000030exampledir=${sysconfdir}
gdtd6b72f72003-12-03 17:24:27 +000031AC_ARG_ENABLE([exampledir],
32 AC_HELP_STRING([--enable-exampledir],
33 [specify alternate directory for examples]),
34 exampledir="$enableval",)
gdtc4f0efe2003-12-04 15:39:25 +000035dnl XXX add --exampledir to autoconf standard directory list somehow
gdtd6b72f72003-12-03 17:24:27 +000036AC_SUBST(exampledir)
37
gdtcbd04082004-08-31 18:16:36 +000038dnl default is to match previous behavior
39pkgsrcrcdir=""
40pkgsrcdir=""
41AC_ARG_ENABLE([pkgsrcrcdir],
42 AC_HELP_STRING([--enable-pkgsrcrcdir],
43 [specify directory for rc.d scripts]),
44 pkgsrcrcdir="$enableval"; pkgsrcdir="pkgsrc",)
45dnl XXX add --pkgsrcrcdir to autoconf standard directory list somehow
46AC_SUBST(pkgsrcdir)
47AC_SUBST(pkgsrcrcdir)
48
paul7ea487b2003-03-17 02:05:07 +000049dnl ------------
50dnl Check CFLAGS
51dnl ------------
52AC_ARG_WITH(cflags,
53[ --with-cflags Set CFLAGS for use in compilation.])
54if test "x$with_cflags" != "x" ; then
55 CFLAGS="$with_cflags" ; cflags_specified=yes ;
56elif test -n "$CFLAGS" ; then
57 cflags_specified=yes ;
58fi
59
hasso1969e4b2005-03-27 13:07:23 +000060dnl --------------------
61dnl Check CC and friends
62dnl --------------------
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +010063AC_LANG([C])
paul7ea487b2003-03-17 02:05:07 +000064AC_PROG_CC
hasso1969e4b2005-03-27 13:07:23 +000065AC_PROG_CPP
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +010066AM_PROG_CC_C_O
hasso1969e4b2005-03-27 13:07:23 +000067AC_PROG_EGREP
Greg Troxel553bdfe2007-02-06 20:10:35 +000068
69dnl autoconf 2.59 appears not to support AC_PROG_SED
70dnl AC_PROG_SED
71AC_CHECK_PROG([SED],[sed],[sed],[/bin/false])
hasso1969e4b2005-03-27 13:07:23 +000072
73dnl ------------------------------------------------------------------
74dnl Intel compiler check. Although Intel tries really hard to make icc
75dnl look like gcc, there are some differences. It's very verbose with
76dnl -Wall and it doesn't support the individual -W options.
77dnl ------------------------------------------------------------------
paul6a4b8832005-11-26 08:28:00 +000078if test "x${GCC}" = "xyes" ; then
79 COMPILER="GCC"
80 AC_MSG_CHECKING([whether we are using the Intel compiler])
81 AC_EGREP_CPP([^__INTEL_COMPILER], [__INTEL_COMPILER],
82 [AC_MSG_RESULT([no])],
83 [COMPILER="ICC"
84 AC_MSG_RESULT([yes])]
85 )
86else
87 AC_MSG_CHECKING([whether we are using SunPro compiler])
88 AC_EGREP_CPP([^__SUNPRO_C.*0x5(7|8|9)], ["__SUNPRO_C" __SUNPRO_C],
89 [AC_MSG_RESULT([no])],
90 [COMPILER="SUNPRO"
91 AC_MSG_RESULT([yes])]
92 )
93fi
paul7ea487b2003-03-17 02:05:07 +000094
paula49c0ff2004-09-30 06:08:58 +000095dnl ---------------------------------------------
paul7ea487b2003-03-17 02:05:07 +000096dnl If CLFAGS doesn\'t exist set default value
paula49c0ff2004-09-30 06:08:58 +000097dnl AC_PROG_CC will have set minimal default
98dnl already, eg "-O2 -g" for gcc, "-g" for others
paul27eebb32004-07-22 18:16:59 +000099dnl (Wall is gcc specific... have to make sure
100dnl gcc is being used before setting it)
101dnl
paul6a4b8832005-11-26 08:28:00 +0000102dnl Intel icc 8.0 also sets __GNUC__,
103dnl but doesn't support all these fancy -W options.
hasso1969e4b2005-03-27 13:07:23 +0000104dnl Intel compiler warnings we ignore:
105dnl 279: controlling expression is constant.
106dnl 869: parameter "xxx" was never referenced - to avoid massive warnings
107dnl about "self", "vty", "argc" and "argv" never referenced in DEFUN
108dnl macro.
109dnl 981: operands are evaluated in unspecified order.
paul6a4b8832005-11-26 08:28:00 +0000110dnl
111dnl Sun Studio 10 / SunPro 5.7 is also supported,
112dnl so lets set some sane CFLAGS for it.
113dnl ---------------------------------------------
hasso1969e4b2005-03-27 13:07:23 +0000114
paul6a4b8832005-11-26 08:28:00 +0000115AC_MSG_CHECKING([whether to set a default CFLAGS])
116if test "x${cflags_specified}" = "x" ; then
117 case ${COMPILER} in
118 "ICC")
119 CFLAGS="-Os -g -Wall -wd 279,869,981"
120 AC_MSG_RESULT([Intel default])
121 ;;
122 "GCC")
Andrew J. Schorr5fa05092007-04-30 19:14:08 +0000123 CFLAGS="-Os -fno-omit-frame-pointer -g -std=gnu99 -Wall"
paul6a4b8832005-11-26 08:28:00 +0000124 CFLAGS="${CFLAGS} -Wsign-compare -Wpointer-arith"
125 CFLAGS="${CFLAGS} -Wbad-function-cast -Wwrite-strings"
126 CFLAGS="${CFLAGS} -Wmissing-prototypes -Wmissing-declarations"
127 CFLAGS="${CFLAGS} -Wchar-subscripts -Wcast-qual"
128 # TODO: conditionally addd -Wpacked if handled
129 AC_MSG_RESULT([gcc default])
130 ;;
131 "SUNPRO")
Paul Jakma105b8232006-05-28 08:02:41 +0000132 CFLAGS="-xO4 -v -g -xspace -xcode=pic32 -xstrconst -xc99"
paul6a4b8832005-11-26 08:28:00 +0000133 AC_MSG_RESULT([SunPro default])
134 ;;
135 *)
136 AC_MSG_RESULT([unknown compiler])
137 ;;
138 esac
139else
140 AC_MSG_RESULT([CFLAGS supplied by user])
hasso1969e4b2005-03-27 13:07:23 +0000141fi
142
paul7ea487b2003-03-17 02:05:07 +0000143dnl --------------
144dnl Check programs
145dnl --------------
paul7ea487b2003-03-17 02:05:07 +0000146AC_PROG_INSTALL
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000147AC_PROG_LN_S
paul7ea487b2003-03-17 02:05:07 +0000148AC_PROG_MAKE_SET
149AC_CHECK_TOOL(AR, ar)
paul7ea487b2003-03-17 02:05:07 +0000150
Paul Jakma105b8232006-05-28 08:02:41 +0000151dnl ---------------------------
152dnl We, perhaps unfortunately,
153dnl depend on GNU Make specific
154dnl constructs.
155dnl Give the user a warning if
156dnl not GNU Make.
157dnl ---------------------------
158AC_CACHE_CHECK([if ${MAKE-make} is GNU make], [quagga_cv_gnu_make],
159 [quagga_cv_gnu_make=no
160 if ${MAKE-make} --version 2>/dev/null | \
161 grep '^GNU Make ' >/dev/null ; then
162 quagga_cv_gnu_make=yes;
163 fi
164 ]
165)
166
Paul Jakmad46d2a22007-05-10 16:53:04 +0000167dnl -----------------
168dnl System extensions
169dnl -----------------
paul7ea487b2003-03-17 02:05:07 +0000170AC_AIX
Paul Jakmad46d2a22007-05-10 16:53:04 +0000171AC_GNU_SOURCE
paul7ea487b2003-03-17 02:05:07 +0000172
gdt87efd642004-06-30 17:36:11 +0000173dnl -------
174dnl libtool
175dnl -------
paul0fc42942004-08-19 04:41:21 +0000176AC_PROG_LIBTOOL
gdt87efd642004-06-30 17:36:11 +0000177
paul7ea487b2003-03-17 02:05:07 +0000178dnl ----------------------
179dnl Packages configuration
180dnl ----------------------
181AC_ARG_ENABLE(vtysh,
gdtfc9d0742004-06-30 14:25:12 +0000182[ --enable-vtysh include integrated vty shell for Quagga])
paul7ea487b2003-03-17 02:05:07 +0000183AC_ARG_ENABLE(ipv6,
184[ --disable-ipv6 turn off IPv6 related features and daemons])
185AC_ARG_ENABLE(zebra,
186[ --disable-zebra do not build zebra daemon])
187AC_ARG_ENABLE(bgpd,
188[ --disable-bgpd do not build bgpd])
189AC_ARG_ENABLE(ripd,
190[ --disable-ripd do not build ripd])
191AC_ARG_ENABLE(ripngd,
192[ --disable-ripngd do not build ripngd])
193AC_ARG_ENABLE(ospfd,
194[ --disable-ospfd do not build ospfd])
paul7ea487b2003-03-17 02:05:07 +0000195AC_ARG_ENABLE(ospf6d,
196[ --disable-ospf6d do not build ospf6d])
ajsd0199432004-12-22 14:03:52 +0000197AC_ARG_ENABLE(watchquagga,
198[ --disable-watchquagga do not build watchquagga])
jardin9e867fe2003-12-23 08:56:18 +0000199AC_ARG_ENABLE(isisd,
hassoae399ab2004-09-13 20:22:18 +0000200[ --enable-isisd build isisd])
Greg Troxel97cee872007-08-02 13:36:56 +0000201AC_ARG_ENABLE(solaris,
202[ --enable-solaris build solaris])
paul7ea487b2003-03-17 02:05:07 +0000203AC_ARG_ENABLE(bgp-announce,
204[ --disable-bgp-announce, turn off BGP route announcement])
205AC_ARG_ENABLE(netlink,
206[ --enable-netlink force to use Linux netlink interface])
207AC_ARG_ENABLE(broken-aliases,
208[ --enable-broken-aliases enable aliases as distinct interfaces for Linux 2.2.X])
209AC_ARG_ENABLE(snmp,
210[ --enable-snmp enable SNMP support])
211AC_ARG_WITH(libpam,
212[ --with-libpam use libpam for PAM support in vtysh])
hasso71c0fb52003-05-25 20:18:13 +0000213AC_ARG_ENABLE(tcp-zebra,
paul7ea487b2003-03-17 02:05:07 +0000214[ --enable-tcp-zebra enable TCP/IP socket connection between zebra and protocol daemon])
paul7ea487b2003-03-17 02:05:07 +0000215AC_ARG_ENABLE(opaque-lsa,
paul1ef74ef2003-03-21 15:16:05 +0000216[ --enable-opaque-lsa enable OSPF Opaque-LSA with OSPFAPI support (RFC2370)])
217AC_ARG_ENABLE(ospfapi,
218[ --disable-ospfapi do not build OSPFAPI to access the OSPF LSA Database,
219 (this is the default if --enable-opaque-lsa is not set)])
220AC_ARG_ENABLE(ospfclient,
221[ --disable-ospfclient do not build OSPFAPI client for OSPFAPI,
222 (this is the default if --disable-ospfapi is set)])
paul7ea487b2003-03-17 02:05:07 +0000223AC_ARG_ENABLE(ospf-te,
224[ --enable-ospf-te enable Traffic Engineering Extension to OSPF])
225AC_ARG_ENABLE(multipath,
226[ --enable-multipath=ARG enable multipath function, ARG must be digit])
Paul P Komkoff Jrfe86b482008-08-13 16:56:05 +0100227AC_ARG_ENABLE(user,
228 AC_HELP_STRING([--enable-user=user], [user to run Quagga suite as (default quagga)]))
229AC_ARG_ENABLE(group,
230 AC_HELP_STRING([--enable-group=group], [group to run Quagga suite as (default quagga)]))
pauledd7c242003-06-04 13:59:38 +0000231AC_ARG_ENABLE(vty_group,
paul6b6942f2004-10-22 04:55:05 +0000232[ --enable-vty-group=ARG set vty sockets to have specified group as owner])
gdtaa593d52003-12-22 20:15:53 +0000233AC_ARG_ENABLE(configfile_mask,
234[ --enable-configfile-mask=ARG set mask for config files])
235AC_ARG_ENABLE(logfile_mask,
236[ --enable-logfile-mask=ARG set mask for log files])
pauledd7c242003-06-04 13:59:38 +0000237
hasso71c0fb52003-05-25 20:18:13 +0000238AC_ARG_ENABLE(rtadv,
paul6b6942f2004-10-22 04:55:05 +0000239[ --disable-rtadv disable IPV6 router advertisement feature])
hassoca776982004-06-12 14:33:05 +0000240AC_ARG_ENABLE(irdp,
paul6b6942f2004-10-22 04:55:05 +0000241[ --enable-irdp enable IRDP server support in zebra])
hassof695b012005-04-02 19:03:39 +0000242AC_ARG_ENABLE(isis_topology,
243[ --enable-isis-topology enable IS-IS topology generator])
hasso41d3fc92004-04-06 11:59:00 +0000244AC_ARG_ENABLE(capabilities,
245[ --disable-capabilities disable using POSIX capabilities])
paul6b6942f2004-10-22 04:55:05 +0000246AC_ARG_ENABLE(gcc_ultra_verbose,
247[ --enable-gcc-ultra-verbose enable ultra verbose GCC warnings])
ajs3cade262004-12-29 17:50:22 +0000248AC_ARG_ENABLE(gcc-rdynamic,
249[ --enable-gcc-rdynamic enable gcc linking with -rdynamic for better backtraces])
ajs924b9222005-04-16 17:11:24 +0000250AC_ARG_ENABLE(time-check,
251[ --disable-time-check disable slow thread warning messages])
paul6b6942f2004-10-22 04:55:05 +0000252
253if test x"${enable_gcc_ultra_verbose}" = x"yes" ; then
254 CFLAGS="${CFLAGS} -W -Wcast-qual -Wstrict-prototypes"
255 CFLAGS="${CFLAGS} -Wmissing-declarations -Wmissing-noreturn"
256 CFLAGS="${CFLAGS} -Wmissing-format-attribute -Wunreachable-code"
257 CFLAGS="${CFLAGS} -Wpacked -Wpadded"
258fi
paul7ea487b2003-03-17 02:05:07 +0000259
ajs3cade262004-12-29 17:50:22 +0000260if test x"${enable_gcc_rdynamic}" = x"yes" ; then
261 LDFLAGS="${LDFLAGS} -rdynamic"
262fi
263
ajs924b9222005-04-16 17:11:24 +0000264if test x"${enable_time_check}" != x"no" ; then
265 if test x"${enable_time_check}" = x"yes" -o x"${enable_time_check}" = x ; then
266 AC_DEFINE(CONSUMED_TIME_CHECK,5000000,Consumed Time Check)
267 else
268 AC_DEFINE_UNQUOTED(CONSUMED_TIME_CHECK,$enable_time_check,Consumed Time Check)
269 fi
270fi
271
paul7ea487b2003-03-17 02:05:07 +0000272if test "${enable_broken_aliases}" = "yes"; then
273 if test "${enable_netlink}" = "yes"
274 then
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000275 AC_MSG_FAILURE([Sorry you can not use netlink with broken aliases])
paul7ea487b2003-03-17 02:05:07 +0000276 fi
277 AC_DEFINE(HAVE_BROKEN_ALIASES,,Broken Alias)
278 enable_netlink=no
279fi
280
281if test "${enable_tcp_zebra}" = "yes"; then
282 AC_DEFINE(HAVE_TCP_ZEBRA,,Use TCP for zebra communication)
283fi
284
paul7ea487b2003-03-17 02:05:07 +0000285if test "${enable_opaque_lsa}" = "yes"; then
286 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
287fi
288
289if test "${enable_ospf_te}" = "yes"; then
290 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
291 AC_DEFINE(HAVE_OSPF_TE,,OSPF TE)
292fi
293
gdtd2a0ccc2003-12-03 18:13:48 +0000294AC_MSG_CHECKING(if zebra should be configurable to send Route Advertisements)
295if test "${enable_rtadv}" != "no"; then
hasso71c0fb52003-05-25 20:18:13 +0000296 AC_MSG_RESULT(yes)
gdtd2a0ccc2003-12-03 18:13:48 +0000297 AC_DEFINE(HAVE_RTADV,,Enable IPv6 Routing Advertisement support)
paul2487bea2003-05-25 23:51:31 +0000298else
299 AC_MSG_RESULT(no)
hasso71c0fb52003-05-25 20:18:13 +0000300fi
paul7ea487b2003-03-17 02:05:07 +0000301
hassoca776982004-06-12 14:33:05 +0000302if test "${enable_irdp}" = "yes"; then
303 AC_DEFINE(HAVE_IRDP,, IRDP )
304fi
305
hassof695b012005-04-02 19:03:39 +0000306if test "${enable_isisd}" = "yes" && test "${enable_isis_topology}" = yes; then
307 AC_DEFINE(TOPOLOGY_GENERATE,,Enable IS-IS topology generator code)
308 ISIS_TOPOLOGY_INCLUDES="-I./topology"
309 ISIS_TOPOLOGY_DIR="topology"
310 ISIS_TOPOLOGY_LIB="./topology/libtopology.a"
311fi
312
313AC_SUBST(ISIS_TOPOLOGY_INCLUDES)
314AC_SUBST(ISIS_TOPOLOGY_DIR)
315AC_SUBST(ISIS_TOPOLOGY_LIB)
316
paul79cb2162003-06-06 12:19:53 +0000317if test "${enable_user}" = "yes" || test x"${enable_user}" = x""; then
paule8f29842003-08-12 13:08:31 +0000318 enable_user="quagga"
pauledd7c242003-06-04 13:59:38 +0000319elif test "${enable_user}" = "no"; then
320 enable_user="root"
321fi
pauledd7c242003-06-04 13:59:38 +0000322
paul79cb2162003-06-06 12:19:53 +0000323if test "${enable_group}" = "yes" || test x"${enable_group}" = x""; then
paule8f29842003-08-12 13:08:31 +0000324 enable_group="quagga"
pauledd7c242003-06-04 13:59:38 +0000325elif test "${enable_group}" = "no"; then
326 enable_group="root"
327fi
pauledd7c242003-06-04 13:59:38 +0000328
329if test x"${enable_vty_group}" = x"yes" ; then
paul8d4aee52003-06-06 00:30:35 +0000330 AC_MSG_ERROR([--enable-vty-group requires a group as argument, not yes])
paul79cb2162003-06-06 12:19:53 +0000331elif test x"${enable_vty_group}" != x""; then
paul8d4aee52003-06-06 00:30:35 +0000332 if test x"${enable_vty_group}" != x"no"; then
pauledd7c242003-06-04 13:59:38 +0000333 AC_DEFINE_UNQUOTED(VTY_GROUP, "${enable_vty_group}", VTY Sockets Group)
334 fi
335fi
paul26275b02005-04-11 07:10:47 +0000336AC_SUBST([enable_user])
337AC_SUBST([enable_group])
338AC_SUBST([enable_vty_group])
339AC_DEFINE_UNQUOTED(QUAGGA_USER, "${enable_user}", Quagga User)
340AC_DEFINE_UNQUOTED(QUAGGA_GROUP, "${enable_group}", Quagga Group)
pauledd7c242003-06-04 13:59:38 +0000341
gdtaa593d52003-12-22 20:15:53 +0000342enable_configfile_mask=${enable_configfile_mask:-0600}
343AC_DEFINE_UNQUOTED(CONFIGFILE_MASK, ${enable_configfile_mask}, Mask for config files)
344
345enable_logfile_mask=${enable_logfile_mask:-0600}
346AC_DEFINE_UNQUOTED(LOGFILE_MASK, ${enable_logfile_mask}, Mask for log files)
347
paul7ea487b2003-03-17 02:05:07 +0000348MULTIPATH_NUM=1
349
350case "${enable_multipath}" in
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000351 [[0-9]|[1-9][0-9]])
paul7ea487b2003-03-17 02:05:07 +0000352 MULTIPATH_NUM="${enable_multipath}"
353 ;;
354 "")
355 ;;
356 *)
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000357 AC_MSG_FAILURE([Please specify digit to enable multipath ARG])
paul7ea487b2003-03-17 02:05:07 +0000358 ;;
359esac
360
paul7ea487b2003-03-17 02:05:07 +0000361AC_SUBST(MULTIPATH_NUM)
362
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000363dnl ------------------------------------
364dnl Check C keywords and standard types
365dnl ------------------------------------
366AC_C_CONST
367AC_C_INLINE
368AC_C_RESTRICT
369AC_C_VOLATILE
pauldc7a2bf2003-10-22 00:07:44 +0000370AC_HEADER_STDC
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000371AC_HEADER_TIME
372AC_HEADER_SYS_WAIT
373dnl AC_TYPE_PID_T
374AC_TYPE_UID_T
375AC_TYPE_MODE_T
376AC_TYPE_SIZE_T
377AC_TYPE_SIGNAL
378AC_STRUCT_TM
pauldc7a2bf2003-10-22 00:07:44 +0000379
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000380dnl -------------------------
381dnl Check other header files.
382dnl -------------------------
383AC_CHECK_HEADERS([stropts.h sys/ksym.h sys/times.h sys/select.h \
384 sys/types.h linux/version.h netdb.h asm/types.h \
385 sys/param.h limits.h signal.h libutil.h \
386 sys/socket.h netinet/in.h])
387
388dnl Utility macro to avoid retyping includes all the time
389m4_define([QUAGGA_INCLUDES],
390[#ifdef SUNOS_5
391#define _XPG4_2
392#define __EXTENSIONS__
393#endif
394#include <stdio.h>
395#if STDC_HEADERS
396# include <stdlib.h>
397# include <stddef.h>
398#else
399# if HAVE_STDLIB_H
400# include <stdlib.h>
401# endif
402#endif
403#if HAVE_SYS_TYPES_H
404# include <sys/types.h>
405#endif
406/* sys/conf.h depends on param.h on FBSD at least */
407#if HAVE_SYS_PARAM_H
408# include <sys/param.h>
409#endif
410/* Required for MAXSIG */
411#if HAVE_SIGNAL_H
412# include <signal.h>
413#endif
414#if HAVE_SYS_SOCKET_H
415# include <sys/socket.h>
416#endif
417#if HAVE_NETINET_IN_H
418# include <netinet/in.h>
419#endif
420])dnl
421
422AC_CHECK_HEADERS([sys/un.h net/if.h netinet/in_systm.h netinet/in_var.h \
423 net/if_dl.h net/if_var.h net/netopt.h net/route.h \
Paul Jakma11770e12007-06-22 16:14:42 +0000424 inet/nd.h arpa/inet.h netinet/ip_icmp.h \
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000425 fcntl.h stddef.h sys/ioctl.h syslog.h wchar.h wctype.h \
426 sys/sysctl.h sys/sockio.h kvm.h sys/conf.h],
427 [], [], QUAGGA_INCLUDES)
428
429AC_CHECK_HEADERS([ucontext.h], [], [],
430[#ifndef __USE_GNU
431#define __USE_GNU
432#endif /* __USE_GNU */
433QUAGGA_INCLUDES
434])
435
436m4_define([QUAGGA_INCLUDES],
437QUAGGA_INCLUDES
438[#if HAVE_NET_IF_H
439# include <net/if.h>
440#endif
441#if HAVE_SYS_UN_H
442# include <sys/un.h>
443#endif
444#if HAVE_NETINET_IN_SYSTM_H
445# include <netinet/in_systm.h>
446#endif
447#if HAVE_NETINET_IN_VAR_H
448# include <netinet/in_var.h>
449#endif
450#if HAVE_NET_IF_DL_H
451# include <net/if_dl.h>
452#endif
453#if HAVE_NET_IF_VAR_H
454# include <net/if_var.h>
455#endif
456#if HAVE_NET_NETOPT_H
457# include <net/netopt.h>
458#endif
459#if HAVE_NET_ROUTE_H
460# include <net/route.h>
461#endif
462#if HAVE_INET_ND_H
463# include <inet/nd.h>
464#endif
465#if HAVE_ARPA_INET_H
466# include <arpa/inet.h>
467#endif
Paul Jakma11770e12007-06-22 16:14:42 +0000468/* Required for IDRP */
469#if HAVE_NETINET_IP_ICMP_H
470# include <netinet/ip_icmp.h>
471#endif
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000472])dnl
pauldc7a2bf2003-10-22 00:07:44 +0000473
gdtfa3232e2003-12-03 17:52:30 +0000474dnl V6 headers are checked below, after we check for v6
paul7ea487b2003-03-17 02:05:07 +0000475
paul7ea487b2003-03-17 02:05:07 +0000476dnl Some systems (Solaris 2.x) require libnsl (Network Services Library)
477case "$host" in
paulafd8a122005-03-12 06:36:10 +0000478 [*-sunos5.[6-7]*] | [*-solaris2.[6-7]*])
paul7ea487b2003-03-17 02:05:07 +0000479 opsys=sol2-6
paulafd8a122005-03-12 06:36:10 +0000480 AC_DEFINE(SUNOS_56, 1, SunOS 5.6 to 5.7)
paul19877dd2004-05-11 10:49:35 +0000481 AC_DEFINE(SUNOS_5, 1, SunOS 5)
paul7ea487b2003-03-17 02:05:07 +0000482 AC_CHECK_LIB(xnet, main)
483 CURSES=-lcurses
484 ;;
paul1b73de82005-04-10 16:31:51 +0000485 [*-sunos5.[8-9]] \
486 | [*-sunos5.1[0-9]] \
487 | [*-sunos5.1[0-9].[0-9]] \
488 | [*-solaris2.[8-9]] \
489 | [*-solaris2.1[0-9]] \
490 | [*-solaris2.1[0-9].[0-9]])
paulafd8a122005-03-12 06:36:10 +0000491 opsys=sol8
Paul Jakmafb66b292006-05-28 08:26:15 +0000492 AC_DEFINE(SUNOS_59, 1, [SunOS 5.8 up])
493 AC_DEFINE(SUNOS_5, 1, [SunOS 5])
paul19877dd2004-05-11 10:49:35 +0000494 AC_CHECK_LIB(socket, main)
495 AC_CHECK_LIB(nsl, main)
paul1b73de82005-04-10 16:31:51 +0000496 AC_CHECK_LIB(umem, main)
Paul Jakmafb66b292006-05-28 08:26:15 +0000497 AC_CHECK_FUNCS([printstack],
498 [AC_DEFINE([HAVE_PRINTSTACK],1,[Solaris printstack])
499 AC_DEFINE([HAVE_STACK_TRACE],1,[Stack symbols decode functionality])
500 ])
paul19877dd2004-05-11 10:49:35 +0000501 CURSES=-lcurses
502 ;;
paul7ea487b2003-03-17 02:05:07 +0000503 *-sunos5* | *-solaris2*)
paul19877dd2004-05-11 10:49:35 +0000504 AC_DEFINE(SUNOS_5,,SunOS 5, Unknown SunOS)
paul7ea487b2003-03-17 02:05:07 +0000505 AC_CHECK_LIB(socket, main)
506 AC_CHECK_LIB(nsl, main)
507 CURSES=-lcurses
508 ;;
hassoc45eb832005-02-19 13:58:06 +0000509 *-linux*)
paul7ea487b2003-03-17 02:05:07 +0000510 opsys=gnu-linux
511 AC_DEFINE(GNU_LINUX,,GNU Linux)
512 ;;
513 *-nec-sysv4*)
514 AC_CHECK_LIB(nsl, gethostbyname)
515 AC_CHECK_LIB(socket, socket)
516 ;;
paul7ea487b2003-03-17 02:05:07 +0000517 *-openbsd*)
518 opsys=openbsd
519 AC_DEFINE(OPEN_BSD,,OpenBSD)
520 ;;
521 *-bsdi*)
522 opsys=bsdi
523 OTHER_METHOD="mtu_kvm.o"
524 AC_CHECK_LIB(kvm, main)
525 ;;
paul49e3b3c2003-10-23 20:39:50 +0000526 *-irix6.5)
pauldc7a2bf2003-10-22 00:07:44 +0000527 opsys=irix
528 AC_DEFINE(IRIX_65,,IRIX 6.5)
529 ;;
paul7ea487b2003-03-17 02:05:07 +0000530esac
531
532dnl ---------------------
533dnl Integrated VTY option
534dnl ---------------------
535case "${enable_vtysh}" in
536 "yes") VTYSH="vtysh";
537 AC_DEFINE(VTYSH,,VTY shell)
gdtfc9d0742004-06-30 14:25:12 +0000538 AC_PATH_PROG(PERL, perl)
539dnl Vtysh uses libreadline, which looks for termcap functions at
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000540dnl configure time. We follow readlines search order.
gdtfc9d0742004-06-30 14:25:12 +0000541dnl The required procedures are in libtermcap on NetBSD, in
542dnl [TODO] on Linux, and in [TODO] on Solaris.
hassoc0689392005-08-25 12:00:58 +0000543 AC_CHECK_LIB(termcap, tputs, LIBREADLINE="$LIBREADLINE -ltermcap",
paula9694592005-08-25 14:50:05 +0000544 [AC_CHECK_LIB(tinfo, tputs, LIBREADLINE="$LIBREADLINE -ltinfo",
545 [AC_CHECK_LIB(curses, tputs, LIBREADLINE="$LIBREADLINE -lcurses",
546 [AC_CHECK_LIB(ncurses, tputs,
547 LIBREADLINE="$LIBREADLINE -lncurses")]
548 )]
549 )]
550 )
551 AC_CHECK_LIB(readline, main, LIBREADLINE="$LIBREADLINE -lreadline",,
552 "$LIBREADLINE")
paul7ea487b2003-03-17 02:05:07 +0000553 if test $ac_cv_lib_readline_main = no; then
gdtfc9d0742004-06-30 14:25:12 +0000554 AC_MSG_ERROR([vtysh needs libreadline but was not found and usable on your system.])
paul7ea487b2003-03-17 02:05:07 +0000555 fi
556 AC_CHECK_HEADER(readline/history.h)
557 if test $ac_cv_header_readline_history_h = no;then
558 AC_MSG_ERROR([readline is too old to have readline/history.h, please update to the latest readline library.])
559 fi
paula9694592005-08-25 14:50:05 +0000560 AC_CHECK_LIB(readline, rl_completion_matches,
561 LIBREADLINE="$LIBREADLINE",, "$LIBREADLINE")
paul3d3de8c2003-05-23 10:33:49 +0000562 if test $ac_cv_lib_readline_rl_completion_matches = no; then
563 AC_DEFINE(rl_completion_matches,completion_matches,Old readline)
564 fi
565 ;;
paul7ea487b2003-03-17 02:05:07 +0000566 "no" ) VTYSH="";;
567 * ) ;;
568esac
hassoc0689392005-08-25 12:00:58 +0000569AC_SUBST(LIBREADLINE)
paul7ea487b2003-03-17 02:05:07 +0000570
571dnl ----------
572dnl PAM module
573dnl ----------
574if test "$with_libpam" = "yes"; then
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000575 AC_CHECK_HEADER([security/pam_misc.h],
576 [AC_DEFINE(HAVE_PAM_MISC_H,,Have pam_misc.h)
577 AC_DEFINE(PAM_CONV_FUNC,misc_conv,Have misc_conv)
578 pam_conv_func="misc_conv"
579 ],
580 [], QUAGGA_INCLUDES)
581 AC_CHECK_HEADER([security/openpam.h],
582 [AC_DEFINE(HAVE_OPENPAM_H,,Have openpam.h)
583 AC_DEFINE(PAM_CONV_FUNC,openpam_ttyconv,Have openpam_ttyconv)
584 pam_conv_func="openpam_ttyconv"
585 ],
586 [], QUAGGA_INCLUDES)
paul24cd4352003-05-06 12:16:27 +0000587 if test -z "$ac_cv_header_security_pam_misc_h$ac_cv_header_security_openpam_h" ; then
588 AC_MSG_WARN([*** pam support will not be built ***])
589 with_libpam="no"
590 fi
591fi
592
593if test "$with_libpam" = "yes"; then
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000594dnl took this test from proftpds configure.in and suited to our needs
paul7ea487b2003-03-17 02:05:07 +0000595dnl -------------------------------------------------------------------------
596dnl
597dnl This next check looks funky due to a linker problem with some versions
598dnl of the PAM library. Prior to 0.72 release, the Linux PAM shared library
599dnl omitted requiring libdl linking information. PAM-0.72 or better ships
600dnl with RedHat 6.2 and Debian 2.2 or better.
601AC_CHECK_LIB(pam, pam_start,
paul24cd4352003-05-06 12:16:27 +0000602 [AC_CHECK_LIB(pam, $pam_conv_func,
paul7ea487b2003-03-17 02:05:07 +0000603 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
604 LIBPAM="-lpam"],
605 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
606 LIBPAM="-lpam -lpam_misc"]
607 )
608 ],
609
610 [AC_CHECK_LIB(pam, pam_end,
paul24cd4352003-05-06 12:16:27 +0000611 [AC_CHECK_LIB(pam, $pam_conv_func,
paula159ed92003-06-04 11:01:45 +0000612 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000613 LIBPAM="-lpam -ldl"],
paula159ed92003-06-04 11:01:45 +0000614 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000615 LIBPAM="-lpam -ldl -lpam_misc"]
616 )
617 ],AC_MSG_WARN([*** pam support will not be built ***]),
618 [-ldl])
619 ]
620)
621fi
622AC_SUBST(LIBPAM)
623
624dnl -------------------------------
625dnl Endian-ness check
626dnl -------------------------------
627AC_WORDS_BIGENDIAN
628
629dnl -------------------------------
630dnl check the size in byte of the C
631dnl -------------------------------
632dnl AC_CHECK_SIZEOF(char)
633dnl AC_CHECK_SIZEOF(int)
634dnl AC_CHECK_SIZEOF(short)
635dnl AC_CHECK_SIZEOF(long)
636
637dnl ----------------------------
638dnl check existance of functions
639dnl ----------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000640AC_FUNC_CHOWN
641AC_FUNC_FNMATCH
642AC_FUNC_FORK
643AC_FUNC_MALLOC
644AC_FUNC_MEMCMP
645AC_FUNC_MKTIME
646AC_FUNC_STRFTIME
647AC_FUNC_REALLOC
648AC_FUNC_STAT
649AC_FUNC_SELECT_ARGTYPES
650AC_FUNC_STRFTIME
Paul Jakmad46d2a22007-05-10 16:53:04 +0000651dnl Avoid AC_FUNC_STRNLEN because it pulls in AC_SYSTEM_EXTENSIONS which
652dnl can lead to strange side effects. So we just check for strnlen
653dnl directly, see below.
Paul Jakma2b5cb412007-05-10 17:05:16 +0000654dnl AC_FUNC_STRNLENdnl
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000655AC_FUNC_VPRINTF
656
657dnl -------------------------------
658dnl bgpd needs pow() and hence libm
659dnl -------------------------------
660TMPLIBS="$LIBS"
661AC_CHECK_HEADER([math.h],
662 [AC_CHECK_LIB([m], [pow],
663 [LIBM="-lm"
664 LIBS="$LIBS $LIBM"
665 AC_DEFINE(HAVE_LIBM,, Have libm)
666 AC_CHECK_FUNCS(pow,[],[LIBM=""])
667 ])
668])
669if test x"$LIBM" = x ; then
670 AC_MSG_WARN([Unable to find working pow function - bgpd may not link])
671fi
672LIBS="$TMPLIBS"
673AC_SUBST(LIBM)
674
675dnl ---------------
676dnl other functions
677dnl ---------------
678AC_CHECK_FUNCS([dup2 ftruncate getcwd gethostbyname getpagesize gettimeofday \
Paul Jakmad46d2a22007-05-10 16:53:04 +0000679 inet_ntoa inet_aton strnlen \
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000680 memchr memmove memset select socket \
681 strcasecmp strchr strcspn strdup strerror \
682 strncasecmp strndup strrchr strspn strstr \
683 strtol strtoul strlcat strlcpy \
684 daemon snprintf vsnprintf \
685 if_nametoindex if_indextoname getifaddrs \
686 uname fcntl])
687
paula159ed92003-06-04 11:01:45 +0000688AC_CHECK_FUNCS(setproctitle, ,
689 [AC_CHECK_LIB(util, setproctitle,
690 [LIBS="$LIBS -lutil"
691 AC_DEFINE(HAVE_SETPROCTITLE,, Have setproctitle)
692 ]
693 )
694 ]
695)
paul7ea487b2003-03-17 02:05:07 +0000696
697dnl ------------------------------------
698dnl Determine routing get and set method
699dnl ------------------------------------
700AC_MSG_CHECKING(zebra between kernel interface method)
701if test x"$opsys" = x"gnu-linux"; then
702 if test "${enable_netlink}" = "yes";then
703 AC_MSG_RESULT(netlink)
704 RT_METHOD=rt_netlink.o
705 AC_DEFINE(HAVE_NETLINK,,netlink)
706 netlink=yes
707 elif test "${enable_netlink}" = "no"; then
708 AC_MSG_RESULT(ioctl)
709 RT_METHOD=rt_ioctl.o
710 netlink=no
711 else
712 AC_MSG_RESULT(netlink)
713 RT_METHOD=rt_netlink.o
714 AC_DEFINE(HAVE_NETLINK,,netlink)
715 netlink=yes
716 fi
paul19877dd2004-05-11 10:49:35 +0000717elif test x"$opsys" = x"sol2-6";then
718 AC_MSG_RESULT(Route socket)
719 KERNEL_METHOD="kernel_socket.o"
720 RT_METHOD="rt_socket.o"
paulafd8a122005-03-12 06:36:10 +0000721elif test x"$opsys" = x"sol8";then
paul19877dd2004-05-11 10:49:35 +0000722 AC_MSG_RESULT(Route socket)
723 KERNEL_METHOD="kernel_socket.o"
724 RT_METHOD="rt_socket.o"
725elif test "$opsys" = "irix" ; then
726 AC_MSG_RESULT(Route socket)
727 KERNEL_METHOD="kernel_socket.o"
728 RT_METHOD="rt_socket.o"
paul7ea487b2003-03-17 02:05:07 +0000729else
paul19877dd2004-05-11 10:49:35 +0000730 AC_TRY_RUN([#include <errno.h>
paul7ea487b2003-03-17 02:05:07 +0000731#include <sys/types.h>
732#include <sys/socket.h>
733
734main ()
735{
736 int ac_sock;
737
738 ac_sock = socket (AF_ROUTE, SOCK_RAW, 0);
739 if (ac_sock < 0 && errno == EINVAL)
740 exit (1);
741 exit (0);
742}],
743 [KERNEL_METHOD=kernel_socket.o
744 RT_METHOD=rt_socket.o
745 AC_MSG_RESULT(socket)],
746 [RT_METHOD=rt_ioctl.o
747 AC_MSG_RESULT(ioctl)],
748 [KERNEL_METHOD=kernel_socket.o
749 RT_METHOD=rt_socket.o
750 AC_MSG_RESULT(socket)])
paul7ea487b2003-03-17 02:05:07 +0000751fi
752AC_SUBST(RT_METHOD)
753AC_SUBST(KERNEL_METHOD)
754AC_SUBST(OTHER_METHOD)
755
Paul Jakma238497f2007-08-07 18:49:18 +0000756dnl --------------------------
757dnl Determine IS-IS I/O method
758dnl --------------------------
759AC_CHECK_HEADER(net/bpf.h)
760AC_CHECK_HEADER(sys/dlpi.h)
761AC_MSG_CHECKING(zebra IS-IS I/O method)
762if test x"$opsys" = x"gnu-linux"; then
763 AC_MSG_RESULT(pfpacket)
764 ISIS_METHOD=isis_pfpacket.o
765elif test x"$opsys" = x"sol2-6" -o x"$opsys" = x"sol8"; then
766 AC_MSG_RESULT(DLPI)
767 ISIS_METHOD="isis_dlpi.o"
768else
769 if test $ac_cv_header_net_bpf_h = no; then
770 if test $ac_cv_header_sys_dlpi_h = no; then
771 AC_MSG_RESULT(none)
772 AC_MSG_WARN([*** IS-IS support will not be built ***])
773 ISISD=""
774 else
775 AC_MSG_RESULT(DLPI)
776 fi
777 ISIS_METHOD="isis_dlpi.o"
778 else
779 AC_MSG_RESULT(BPF)
780 ISIS_METHOD="isis_bpf.o"
781 fi
782fi
783AC_SUBST(ISIS_METHOD)
784
ajsb99760a2005-01-04 16:24:43 +0000785dnl ------------------------------------
786dnl check for broken CMSG_FIRSTHDR macro
787dnl ------------------------------------
gdt6c200462005-01-04 17:02:48 +0000788AC_MSG_CHECKING(for broken CMSG_FIRSTHDR)
hasso5b087522005-04-03 23:46:37 +0000789AC_RUN_IFELSE([AC_LANG_SOURCE([[
ajsb99760a2005-01-04 16:24:43 +0000790#ifdef SUNOS_5
791#define _XPG4_2
792#define __EXTENSIONS__
793#endif
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000794#ifdef HAVE_STDLIB_H
795# include <stdlib.h>
796#endif
797#ifdef HAVE_SYS_TYPES_H
ajsb99760a2005-01-04 16:24:43 +0000798#include <sys/types.h>
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000799#endif
800#ifdef HAVE_SYS_SOCKET_H
ajsb99760a2005-01-04 16:24:43 +0000801#include <sys/socket.h>
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000802#endif
ajsb99760a2005-01-04 16:24:43 +0000803
804main()
805{
806 struct msghdr msg;
807 char buf[4];
808
809 msg.msg_control = buf;
810 msg.msg_controllen = 0;
811
812 if (CMSG_FIRSTHDR(&msg) != NULL)
813 exit(0);
814 exit (1);
hasso5b087522005-04-03 23:46:37 +0000815}]])],[AC_MSG_RESULT(yes - using workaround) AC_DEFINE(HAVE_BROKEN_CMSG_FIRSTHDR,,Broken CMSG_FIRSTHDR)],
hassod33e8d72005-04-03 13:07:21 +0000816[AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)])
ajsb99760a2005-01-04 16:24:43 +0000817
paul7ea487b2003-03-17 02:05:07 +0000818dnl ------------------------------
819dnl check kernel route read method
820dnl ------------------------------
821AC_CACHE_CHECK(route read method check, zebra_rtread,
822[if test "$netlink" = yes; then
823 RTREAD_METHOD="rtread_netlink.o"
824 zebra_rtread="netlink"
825else
826for zebra_rtread in /proc/net/route /dev/ip /dev/null;
827do
828 test x`ls $zebra_rtread 2>/dev/null` = x"$zebra_rtread" && break
829done
830case $zebra_rtread in
831 "/proc/net/route") RTREAD_METHOD="rtread_proc.o"
832 zebra_rtread="proc";;
paul9c30ab62003-07-08 08:36:17 +0000833 "/dev/ip")
834 case "$host" in
835 *-freebsd*) RTREAD_METHOD=rtread_sysctl.o
836 zebra_rtread="sysctl";;
837 *) RTREAD_METHOD="rtread_getmsg.o"
838 zebra_rtread="getmsg";;
839 esac;;
paul7ea487b2003-03-17 02:05:07 +0000840 *) RTREAD_METHOD="rtread_sysctl.o"
841 zebra_rtread="sysctl";;
842esac
843fi])
844AC_SUBST(RTREAD_METHOD)
845
846dnl -----------------------------
847dnl check interface lookup method
848dnl -----------------------------
paul19877dd2004-05-11 10:49:35 +0000849IOCTL_METHOD=ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000850AC_MSG_CHECKING(interface looking up method)
851if test "$netlink" = yes; then
852 AC_MSG_RESULT(netlink)
853 IF_METHOD=if_netlink.o
paul19877dd2004-05-11 10:49:35 +0000854elif test "$opsys" = "sol2-6";then
855 AC_MSG_RESULT(Solaris GIF)
856 IF_METHOD=if_ioctl.o
paulafd8a122005-03-12 06:36:10 +0000857elif test "$opsys" = "sol8";then
paul19877dd2004-05-11 10:49:35 +0000858 AC_MSG_RESULT(Solaris GLIF)
859 IF_METHOD=if_ioctl_solaris.o
860 IOCTL_METHOD=ioctl_solaris.o
861elif test "$opsys" = "irix" ; then
862 AC_MSG_RESULT(IRIX)
863 IF_METHOD=if_ioctl.o
864elif test "$opsys" = "openbsd";then
865 AC_MSG_RESULT(openbsd)
866 IF_METHOD=if_ioctl.o
867elif grep NET_RT_IFLIST /usr/include/sys/socket.h >/dev/null 2>&1; then
868 AC_MSG_RESULT(sysctl)
paul7ea487b2003-03-17 02:05:07 +0000869 IF_METHOD=if_sysctl.o
870 AC_DEFINE(HAVE_NET_RT_IFLIST,,NET_RT_IFLIST)
paul19877dd2004-05-11 10:49:35 +0000871else
paul7ea487b2003-03-17 02:05:07 +0000872 AC_MSG_RESULT(ioctl)
873 IF_METHOD=if_ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000874fi
875AC_SUBST(IF_METHOD)
paul19877dd2004-05-11 10:49:35 +0000876AC_SUBST(IOCTL_METHOD)
paul7ea487b2003-03-17 02:05:07 +0000877
paul42c98192005-05-07 02:22:51 +0000878dnl ---------------------------------------------------------------
879dnl figure out how to specify an interface in multicast sockets API
880dnl ---------------------------------------------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000881AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [], [], QUAGGA_INCLUDES)
paul42c98192005-05-07 02:22:51 +0000882
883AC_MSG_CHECKING([for BSD struct ip_mreq hack])
884AC_TRY_COMPILE([#ifdef HAVE_SYS_PARAM_H
885#include <sys/param.h>
886#endif],[#if (defined(__FreeBSD__) && (__FreeBSD_version >= 500022 || (__FreeBSD_version < 500000 && __FreeBSD_version >= 440000))) || (defined(__NetBSD__) && defined(__NetBSD_Version__) && __NetBSD_Version__ >= 106010000)
887 return (0);
888#else
889 #error No support for BSD struct ip_mreq hack detected
890#endif],[AC_MSG_RESULT(yes)
891AC_DEFINE(HAVE_BSD_STRUCT_IP_MREQ_HACK,,[Can pass ifindex in struct ip_mreq])],
892AC_MSG_RESULT(no))
893
Andrew J. Schorrc543a172008-01-10 15:24:32 +0000894dnl ---------------------------------------------------------------
895dnl figure out how to check link-state
896dnl ---------------------------------------------------------------
Andrew J. Schorr6418bed2008-01-11 16:33:59 +0000897AC_CHECK_HEADER([net/if.h],
898 [AC_CHECK_HEADER( [net/if_media.h],
899 [m4_define([LINK_DETECT_INCLUDES],
900 QUAGGA_INCLUDES
901 [#include <net/if_media.h>
902 ])
903 AC_CHECK_MEMBERS( [struct ifmediareq.ifm_status],
904 AC_DEFINE(HAVE_BSD_LINK_DETECT,,[BSD link-detect]),
905 [], LINK_DETECT_INCLUDES)],
906 [],
907 QUAGGA_INCLUDES)],
908 [], QUAGGA_INCLUDES )
Andrew J. Schorrc543a172008-01-10 15:24:32 +0000909
Paul Jakma0df7c912008-07-21 21:02:49 +0000910dnl ------------------------
911dnl TCP_MD5SIG socket option
912dnl ------------------------
913
914AC_CHECK_HEADER([netinet/tcp.h],
915 [m4_define([MD5_INCLUDES],
916 QUAGGA_INCLUDES
917 [#include <netinet/tcp.h>
918 ])
919 AC_CHECK_DECLS([TCP_MD5SIG], [], [], MD5_INCLUDES)],
920 [],
921 QUAGGA_INCLUDES)
922if test $ac_cv_have_decl_TCP_MD5SIG = no; then
923 AC_CHECK_HEADER([linux/tcp.h],
924 [m4_define([MD5_INCLUDES],
925 QUAGGA_INCLUDES
926 [#include <linux/tcp.h>
927 ])
928 AC_CHECK_DECLS([TCP_MD5SIG], [], [], MD5_INCLUDES)])
929fi
930
paul7ea487b2003-03-17 02:05:07 +0000931dnl -----------------------
932dnl check proc file system.
933dnl -----------------------
Stephen Hemmingercadfb2c2008-08-16 18:03:44 +0100934if test "$netlink" != yes; then
935 if test -r /proc/net/dev; then
936 AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev)
937 IF_PROC=if_proc.o
938 fi
939 if test -r /proc/net/if_inet6; then
940 AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6)
941 IF_PROC=if_proc.o
942 fi
paul7ea487b2003-03-17 02:05:07 +0000943fi
944AC_SUBST(IF_PROC)
945
946dnl -----------------------------
947dnl check ipforward detect method
948dnl -----------------------------
949AC_CACHE_CHECK(ipforward method check, zebra_ipforward_path,
950[for zebra_ipforward_path in /proc/net/snmp /dev/ip /dev/null;
951do
952 test x`ls $zebra_ipforward_path 2>/dev/null` = x"$zebra_ipforward_path" && break
953done
954case $zebra_ipforward_path in
955 "/proc/net/snmp") IPFORWARD=ipforward_proc.o
956 zebra_ipforward_path="proc";;
957 "/dev/ip")
958 case "$host" in
959 *-nec-sysv4*) IPFORWARD=ipforward_ews.o
960 zebra_ipforward_path="ews";;
paul9c30ab62003-07-08 08:36:17 +0000961 *-freebsd*) IPFORWARD=ipforward_sysctl.o
962 zebra_ipforward_path="sysctl";;
paul7ea487b2003-03-17 02:05:07 +0000963 *) IPFORWARD=ipforward_solaris.o
964 zebra_ipforward_path="solaris";;
965 esac;;
966 *) IPFORWARD=ipforward_sysctl.o
967 zebra_ipforward_path="sysctl";;
968esac])
969AC_SUBST(IPFORWARD)
970
971AC_CHECK_FUNCS(getaddrinfo, [have_getaddrinfo=yes], [have_getaddrinfo=no])
972
973dnl ----------
974dnl IPv6 check
975dnl ----------
976AC_MSG_CHECKING(whether does this OS have IPv6 stack)
977if test "${enable_ipv6}" = "no"; then
978 AC_MSG_RESULT(disabled)
979else
980dnl ----------
981dnl INRIA IPv6
982dnl ----------
paula159ed92003-06-04 11:01:45 +0000983 if grep IPV6_INRIA_VERSION /usr/include/netinet/in.h >/dev/null 2>&1; then
984 zebra_cv_ipv6=yes
985 AC_DEFINE(HAVE_IPV6,1,INRIA IPv6)
986 AC_DEFINE(INRIA_IPV6,1,INRIA IPv6)
987 RIPNGD="ripngd"
988 OSPF6D="ospf6d"
989 LIB_IPV6=""
990 AC_MSG_RESULT(INRIA IPv6)
paul7ea487b2003-03-17 02:05:07 +0000991dnl ---------
992dnl KAME IPv6
993dnl ---------
paula159ed92003-06-04 11:01:45 +0000994 elif grep WIDE /usr/include/netinet6/in6.h >/dev/null 2>&1; then
995 zebra_cv_ipv6=yes
996 AC_DEFINE(HAVE_IPV6,1,KAME IPv6)
997 AC_DEFINE(KAME,1,KAME IPv6)
998 RIPNGD="ripngd"
999 OSPF6D="ospf6d"
1000 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
paul7ea487b2003-03-17 02:05:07 +00001001 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +00001002 fi
1003 AC_MSG_RESULT(KAME)
hasso71c0fb52003-05-25 20:18:13 +00001004dnl -------------------------
1005dnl MUSICA IPv6
1006dnl default host check
1007dnl It is not used by Kheops
1008dnl -------------------------
paula159ed92003-06-04 11:01:45 +00001009 elif grep MUSICA /usr/include6/netinet6/in6.h >/dev/null 2>&1; then
1010 zebra_cv_ipv6=yes
1011 AC_DEFINE(HAVE_IPV6,1,Musicia IPv6)
1012 AC_DEFINE(MUSICA,1,Musica IPv6 stack)
1013 AC_DEFINE(KAME,1,KAME IPv6 stack)
1014 RIPNGD="ripngd"
1015 OSPF6D="ospf6d"
1016 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
hasso71c0fb52003-05-25 20:18:13 +00001017 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +00001018 fi
1019 AC_MSG_RESULT(MUSICA)
paul7ea487b2003-03-17 02:05:07 +00001020dnl ---------
1021dnl NRL check
1022dnl ---------
paula159ed92003-06-04 11:01:45 +00001023 elif grep NRL /usr/include/netinet6/in6.h >/dev/null 2>&1; then
1024 zebra_cv_ipv6=yes
1025 AC_DEFINE(HAVE_IPV6,1,NRL IPv6)
1026 AC_DEFINE(NRL,1,NRL)
1027 RIPNGD="ripngd"
1028 OSPF6D="ospf6d"
1029 if test x"$opsys" = x"bsdi";then
paul7ea487b2003-03-17 02:05:07 +00001030 AC_DEFINE(BSDI_NRL,,BSDI)
1031 AC_MSG_RESULT(BSDI_NRL)
paula159ed92003-06-04 11:01:45 +00001032 else
paul7ea487b2003-03-17 02:05:07 +00001033 AC_MSG_RESULT(NRL)
paula159ed92003-06-04 11:01:45 +00001034 fi
paul19877dd2004-05-11 10:49:35 +00001035dnl ------------------------------------
1036dnl Solaris 9, 10 and potentially higher
1037dnl ------------------------------------
paulafd8a122005-03-12 06:36:10 +00001038 elif test x"$opsys" = x"sol8"; then
paul19877dd2004-05-11 10:49:35 +00001039 zebra_cv_ipv6=yes;
1040 AC_DEFINE(HAVE_IPV6, 1, IPv6)
1041 AC_DEFINE(SOLARIS_IPV6, 1, Solaris IPv6)
1042 RIPNGD="ripngd"
1043 OSPF6D="ospf6d"
1044 AC_MSG_RESULT(Solaris IPv6)
paul7ea487b2003-03-17 02:05:07 +00001045dnl ----------
1046dnl Linux IPv6
1047dnl ----------
paula159ed92003-06-04 11:01:45 +00001048 elif test "${enable_ipv6}" = "yes"; then
1049 AC_EGREP_CPP(yes, [
1050 #include <linux/version.h>
1051 /* 2.1.128 or later */
1052 #if LINUX_VERSION_CODE >= 0x020180
1053 yes
1054 #endif],
1055 [zebra_cv_ipv6=yes
1056 zebra_cv_linux_ipv6=yes
1057 AC_MSG_RESULT(Linux IPv6)])
1058 else
1059 if test x`ls /proc/net/ipv6_route 2>/dev/null` = x"/proc/net/ipv6_route"
1060 then
paul7ea487b2003-03-17 02:05:07 +00001061 zebra_cv_ipv6=yes
1062 zebra_cv_linux_ipv6=yes
1063 AC_MSG_RESULT(Linux IPv6)
paula159ed92003-06-04 11:01:45 +00001064 fi
1065 fi
paul7ea487b2003-03-17 02:05:07 +00001066
paula159ed92003-06-04 11:01:45 +00001067 if test "$zebra_cv_linux_ipv6" = "yes";then
hasso850d39f2005-06-30 13:52:20 +00001068 AC_MSG_CHECKING(whether libc has IPv6 support)
1069 AC_TRY_LINK([#include <netinet/in.h>
1070 ],[ int a; a = (int) in6addr_any.s6_addr[0]; if (a != 12345) return a; ],
1071 [AC_MSG_RESULT(yes)
1072 zebra_cv_ipv6=yes
1073 zebra_cv_linux_ipv6=yes],
1074 [AC_MSG_RESULT(no)
1075 zebra_cv_ipv6=no
1076 zebra_cv_linux_ipv6=no])
1077 fi
1078
1079 if test "$zebra_cv_linux_ipv6" = "yes";then
paula159ed92003-06-04 11:01:45 +00001080 AC_MSG_CHECKING(for GNU libc >= 2.1)
1081 AC_DEFINE(HAVE_IPV6,1,Linux IPv6)
1082 AC_EGREP_CPP(yes, [
paul7ea487b2003-03-17 02:05:07 +00001083#include <features.h>
1084#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
1085 yes
paula159ed92003-06-04 11:01:45 +00001086#endif],
1087 [glibc=yes
1088 AC_DEFINE(LINUX_IPV6,1,Linux IPv6 stack)
1089 AC_MSG_RESULT(yes)],
1090 AC_MSG_RESULT(no)
1091 )
1092 RIPNGD="ripngd"
1093 OSPF6D="ospf6d"
1094 if test "$glibc" != "yes"; then
paul7ea487b2003-03-17 02:05:07 +00001095 INCLUDES="-I/usr/inet6/include"
1096 if test x`ls /usr/inet6/lib/libinet6.a 2>/dev/null` != x;then
1097 LIB_IPV6="-L/usr/inet6/lib -linet6"
1098 fi
paula159ed92003-06-04 11:01:45 +00001099 fi
1100 fi
paul7ea487b2003-03-17 02:05:07 +00001101
1102dnl -----------------------
1103dnl Set IPv6 related values
1104dnl -----------------------
paula159ed92003-06-04 11:01:45 +00001105 LIBS="$LIB_IPV6 $LIBS"
1106 AC_SUBST(LIB_IPV6)
paul7ea487b2003-03-17 02:05:07 +00001107
paula159ed92003-06-04 11:01:45 +00001108 if test x"$RIPNGD" = x""; then
1109 AC_MSG_RESULT(IPv4 only)
1110 fi
paul7ea487b2003-03-17 02:05:07 +00001111fi
1112
gdtfa3232e2003-12-03 17:52:30 +00001113dnl ------------------
1114dnl IPv6 header checks
1115dnl ------------------
1116if test "x${zebra_cv_ipv6}" = "xyes"; then
1117AC_CHECK_HEADERS([netinet6/in6.h netinet/in6_var.h netinet/icmp6.h \
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001118 netinet6/in6_var.h netinet6/nd6.h], [], [],
1119 QUAGGA_INCLUDES)
gdtfa3232e2003-12-03 17:52:30 +00001120fi
1121
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001122m4_define([QUAGGA_INCLUDES],dnl
1123QUAGGA_INCLUDES
1124[#if HAVE_NETINET6_IN6_H
1125#include <netinet6/in6.h>
1126#endif
1127#if HAVE_NETINET_IN6_VAR_H
1128#include <netinet/in6_var.h>
1129#endif
1130#if HAVE_NETINET_ICMP6_H
1131# include <netinet/icmp6.h>
1132#endif
1133#if HAVE_NETINET6_IN6_VAR_H
1134# include <netinet6/in6_var.h>
1135#endif
1136#if HAVE_NETINET6_ND6_H
Hasso Tepperfbf24542007-06-25 19:30:59 +00001137# include <netinet6/nd6.h>
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001138#endif
1139])dnl
1140
paul7ea487b2003-03-17 02:05:07 +00001141dnl --------------------
1142dnl Daemon disable check
1143dnl --------------------
1144if test "${enable_zebra}" = "no";then
1145 ZEBRA=""
1146else
1147 ZEBRA="zebra"
1148fi
1149
1150if test "${enable_bgpd}" = "no";then
1151 BGPD=""
1152else
1153 BGPD="bgpd"
1154fi
1155
1156if test "${enable_ripd}" = "no";then
1157 RIPD=""
1158else
1159 RIPD="ripd"
1160fi
1161
1162if test "${enable_ospfd}" = "no";then
1163 OSPFD=""
1164else
1165 OSPFD="ospfd"
1166fi
1167
ajsd0199432004-12-22 14:03:52 +00001168if test "${enable_watchquagga}" = "no";then
1169 WATCHQUAGGA=""
1170else
1171 WATCHQUAGGA="watchquagga"
1172fi
1173
paul1ef74ef2003-03-21 15:16:05 +00001174OSPFCLIENT=""
1175if test "${enable_opaque_lsa}" = "yes"; then
1176 if test "${enable_ospfapi}" != "no";then
paul9a569842003-03-28 01:45:13 +00001177 AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI)
paul1ef74ef2003-03-21 15:16:05 +00001178
1179 if test "${enable_ospfclient}" != "no";then
1180 OSPFCLIENT="ospfclient"
1181 fi
1182 fi
1183
paul7ea487b2003-03-17 02:05:07 +00001184fi
1185
1186case "${enable_ripngd}" in
1187 "yes") RIPNGD="ripngd";;
1188 "no" ) RIPNGD="";;
1189 * ) ;;
1190esac
1191
1192case "${enable_ospf6d}" in
1193 "yes") OSPF6D="ospf6d";;
1194 "no" ) OSPF6D="";;
1195 * ) ;;
1196esac
1197
jardin9e867fe2003-12-23 08:56:18 +00001198case "${enable_isisd}" in
1199 "yes") ISISD="isisd";;
1200 "no" ) ISISD="";;
hassoae399ab2004-09-13 20:22:18 +00001201 * ) ;;
jardin9e867fe2003-12-23 08:56:18 +00001202esac
1203
Greg Troxel97cee872007-08-02 13:36:56 +00001204# XXX Perhaps auto-enable on Solaris, but that's messy for cross builds.
1205case "${enable_solaris}" in
1206 "yes") SOLARIS="solaris";;
1207 "no" ) SOLARIS="";;
1208 * ) ;;
1209esac
1210
paul7ea487b2003-03-17 02:05:07 +00001211if test "${enable_bgp_announce}" = "no";then
Paul Jakma750e8142008-07-22 21:11:48 +00001212 AC_DEFINE(DISABLE_BGP_ANNOUNCE,1,Disable BGP installation to zebra)
1213else
1214 AC_DEFINE(DISABLE_BGP_ANNOUNCE,0,Disable BGP installation to zebra)
paul7ea487b2003-03-17 02:05:07 +00001215fi
1216
1217AC_SUBST(ZEBRA)
1218AC_SUBST(BGPD)
1219AC_SUBST(RIPD)
1220AC_SUBST(RIPNGD)
1221AC_SUBST(OSPFD)
1222AC_SUBST(OSPF6D)
ajsd0199432004-12-22 14:03:52 +00001223AC_SUBST(WATCHQUAGGA)
jardin9e867fe2003-12-23 08:56:18 +00001224AC_SUBST(ISISD)
Greg Troxel97cee872007-08-02 13:36:56 +00001225AC_SUBST(SOLARIS)
paul7ea487b2003-03-17 02:05:07 +00001226AC_SUBST(VTYSH)
1227AC_SUBST(INCLUDES)
1228AC_SUBST(CURSES)
1229AC_SUBST(OSPFCLIENT)
paul1ef74ef2003-03-21 15:16:05 +00001230AC_SUBST(OSPFAPI)
paul7ea487b2003-03-17 02:05:07 +00001231AC_CHECK_LIB(c, inet_ntop, [AC_DEFINE(HAVE_INET_NTOP,,inet_ntop)])
1232AC_CHECK_LIB(c, inet_pton, [AC_DEFINE(HAVE_INET_PTON,,inet_pton)])
1233AC_CHECK_LIB(crypt, crypt)
1234AC_CHECK_LIB(resolv, res_init)
paul7ea487b2003-03-17 02:05:07 +00001235
1236dnl ---------------------------------------------------
1237dnl BSD/OS 4.1 define inet_XtoY function as __inet_XtoY
1238dnl ---------------------------------------------------
paula159ed92003-06-04 11:01:45 +00001239AC_CHECK_FUNC(__inet_ntop, AC_DEFINE(HAVE_INET_NTOP,,__inet_ntop))
1240AC_CHECK_FUNC(__inet_pton, AC_DEFINE(HAVE_INET_PTON,,__inet_pton))
1241AC_CHECK_FUNC(__inet_aton, AC_DEFINE(HAVE_INET_ATON,,__inet_aton))
paul7ea487b2003-03-17 02:05:07 +00001242
1243dnl ---------------------------
1244dnl check system has GNU regexp
1245dnl ---------------------------
1246dnl AC_MSG_CHECKING(whether system has GNU regex)
1247AC_CHECK_LIB(c, regexec,
1248[AC_DEFINE(HAVE_GNU_REGEX,,GNU regexp library)
1249 LIB_REGEX=""],
1250[LIB_REGEX="regex.o"])
1251AC_SUBST(LIB_REGEX)
1252
1253dnl ------------------
paulb1fc9ac2006-01-31 10:09:27 +00001254dnl check Net-SNMP library
paul7ea487b2003-03-17 02:05:07 +00001255dnl ------------------
paulb1fc9ac2006-01-31 10:09:27 +00001256if test "${enable_snmp}" = "yes"; then
1257 LIBS="${LIBS} -lcrypto"
1258 AC_CHECK_LIB(netsnmp, asn_parse_int,
1259 [AC_DEFINE(HAVE_NETSNMP,,Net SNMP)
1260 AC_DEFINE(HAVE_SNMP,,SNMP)
1261 LIBS="${LIBS} -lnetsnmp"],
1262 [AC_MSG_ERROR([--enable-snmp given, but cannot find support for SNMP])])
1263
1264 for ac_snmp in /usr/include \
1265 /usr/local/include \
1266 /dev/null; do
1267 test -f "${ac_snmp}/net-snmp/library/asn1.h" && break
paul7ea487b2003-03-17 02:05:07 +00001268 done
paulb1fc9ac2006-01-31 10:09:27 +00001269
paul7ea487b2003-03-17 02:05:07 +00001270 case ${ac_snmp} in
paulb1fc9ac2006-01-31 10:09:27 +00001271 /dev/null)
1272 AC_MSG_ERROR([--enable-snmp given, but can not find header])
1273 ;;
1274 *)
1275 SNMP_INCLUDES="-I${ac_snmp}/net-snmp"
1276 SNMP_INCLUDES="${SNMP_INCLUDES} -I${ac_snmp}/net-snmp/library"
1277 ;;
paul7ea487b2003-03-17 02:05:07 +00001278 esac
paulb1fc9ac2006-01-31 10:09:27 +00001279
1280 AC_SUBST(SNMP_INCLUDES)
paul7ea487b2003-03-17 02:05:07 +00001281fi
1282
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001283dnl ---------------------------
1284dnl sockaddr and netinet checks
1285dnl ---------------------------
1286AC_CHECK_TYPES([struct sockaddr, struct sockaddr_in,
1287 struct sockaddr_in6, struct sockaddr_un, struct sockaddr_dl,
1288 socklen_t,
1289 struct ifaliasreq, struct if6_aliasreq, struct in6_aliasreq,
1290 struct nd_opt_adv_interval, struct rt_addrinfo,
Paul Jakma11770e12007-06-22 16:14:42 +00001291 struct nd_opt_homeagent_info, struct nd_opt_adv_interval],
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001292 [], [], QUAGGA_INCLUDES)
paul7ea487b2003-03-17 02:05:07 +00001293
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001294AC_CHECK_MEMBERS([struct sockaddr.sa_len,
1295 struct sockaddr_in.sin_len, struct sockaddr_un.sun_len,
1296 struct sockaddr_in6.sin6_scope_id,
1297 struct if6_aliasreq.ifra_lifetime,
1298 struct nd_opt_adv_interval.nd_opt_ai_type],
1299 [], [], QUAGGA_INCLUDES)
hasso71c0fb52003-05-25 20:18:13 +00001300
paul7ea487b2003-03-17 02:05:07 +00001301dnl ---------------------------
Paul Jakma11770e12007-06-22 16:14:42 +00001302dnl IRDP/pktinfo/icmphdr checks
paul7ea487b2003-03-17 02:05:07 +00001303dnl ---------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001304AC_CHECK_TYPES([struct in_pktinfo],
Paul Jakma11770e12007-06-22 16:14:42 +00001305 [AC_CHECK_TYPES([struct icmphdr],
1306 [if test "${enable_irdp}" != "no"; then
1307 AC_DEFINE(HAVE_IRDP,, IRDP)
1308 fi],
1309 [if test "${enable_irdp}" = "yes"; then
1310 AC_MSG_ERROR(['IRDP requires in_pktinfo at the moment!'])
1311 fi], [QUAGGA_INCLUDES])],
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001312 [if test "${enable_irdp}" = "yes"; then
1313 AC_MSG_ERROR(['IRDP requires in_pktinfo at the moment!'])
1314 fi], [QUAGGA_INCLUDES])
vincent29c4c9b2005-03-25 13:05:47 +00001315
paul7ea487b2003-03-17 02:05:07 +00001316dnl --------------------------------------
1317dnl checking for getrusage struct and call
1318dnl --------------------------------------
1319AC_MSG_CHECKING(whether getrusage is available)
1320AC_TRY_COMPILE([#include <sys/resource.h>
1321],[struct rusage ac_x; getrusage (RUSAGE_SELF, &ac_x);],
1322[AC_MSG_RESULT(yes)
1323 AC_DEFINE(HAVE_RUSAGE,,rusage)],
1324 AC_MSG_RESULT(no))
1325
pauledd7c242003-06-04 13:59:38 +00001326dnl -------------------
1327dnl capabilities checks
1328dnl -------------------
hasso41d3fc92004-04-06 11:59:00 +00001329if test "${enable_capabilities}" != "no"; then
1330 AC_MSG_CHECKING(whether prctl PR_SET_KEEPCAPS is available)
1331 AC_TRY_COMPILE([#include <sys/prctl.h>],[prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);],
1332 [AC_MSG_RESULT(yes)
1333 AC_DEFINE(HAVE_PR_SET_KEEPCAPS,,prctl)
1334 quagga_ac_keepcaps="yes"],
1335 AC_MSG_RESULT(no)
pauledd7c242003-06-04 13:59:38 +00001336 )
hasso41d3fc92004-04-06 11:59:00 +00001337 if test x"${quagga_ac_keepcaps}" = x"yes"; then
1338 AC_CHECK_HEADERS(sys/capability.h)
1339 fi
1340 if test x"${ac_cv_header_sys_capability_h}" = x"yes"; then
1341 AC_CHECK_LIB(cap, cap_init,
1342 [AC_DEFINE(HAVE_LCAPS,1,Capabilities)
1343 LIBCAP="-lcap"
paulceacedb2005-09-29 14:39:32 +00001344 quagga_ac_lcaps="yes"]
hasso41d3fc92004-04-06 11:59:00 +00001345 )
paulceacedb2005-09-29 14:39:32 +00001346 else
1347 AC_CHECK_HEADERS(priv.h,
1348 [AC_MSG_CHECKING(Solaris style privileges are available)
1349 AC_TRY_COMPILE([#include <priv.h>],[getpflags(PRIV_AWARE);],
1350 [AC_MSG_RESULT(yes)
1351 AC_DEFINE(HAVE_SOLARIS_CAPABILITIES,1,getpflags)
1352 quagga_ac_scaps="yes"],
1353 AC_MSG_RESULT(no)
1354 )
1355 ]
1356 )
1357 fi
1358 if test x"${quagga_ac_scaps}" = x"yes" \
1359 -o x"${quagga_ac_lcaps}" = x"yes"; then
1360 AC_DEFINE(HAVE_CAPABILITIES,1,capabilities)
hasso41d3fc92004-04-06 11:59:00 +00001361 fi
pauledd7c242003-06-04 13:59:38 +00001362fi
1363AC_SUBST(LIBCAP)
1364
paulfb2d1502003-06-04 09:40:54 +00001365dnl ---------------------------
1366dnl check for glibc 'backtrace'
1367dnl ---------------------------
1368if test "${glibc}" = "yes"; then
Paul Jakmafb66b292006-05-28 08:26:15 +00001369 AC_CHECK_HEADER([execinfo.h],
1370 [AC_CHECK_FUNC([backtrace],
1371 [AC_DEFINE(HAVE_GLIBC_BACKTRACE,,[Glibc backtrace])
1372 AC_DEFINE(HAVE_STACK_TRACE,,[Stack symbol decoding])
1373 ])
1374 ])
paulfb2d1502003-06-04 09:40:54 +00001375fi
1376
Paul Jakma41be32b2006-03-30 13:53:59 +00001377dnl -----------------------------------------
1378dnl check for malloc mallinfo struct and call
1379dnl this must try and link using LIBS, in
1380dnl order to check no alternative allocator
1381dnl has been specified, which might not provide
1382dnl mallinfo, e.g. such as Umem on Solaris.
1383dnl -----------------------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001384AC_CHECK_HEADER([malloc.h],
Paul Jakma41be32b2006-03-30 13:53:59 +00001385 [AC_MSG_CHECKING(whether mallinfo is available)
1386 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <malloc.h>]],
1387 [[struct mallinfo ac_x; ac_x = mallinfo ();]])],
1388 [AC_MSG_RESULT(yes)
1389 AC_DEFINE(HAVE_MALLINFO,,mallinfo)],
1390 AC_MSG_RESULT(no)
1391 )
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001392 ], [], QUAGGA_INCLUDES)
Paul Jakma41be32b2006-03-30 13:53:59 +00001393
paul408ad942003-05-20 00:03:33 +00001394dnl ----------
1395dnl configure date
1396dnl ----------
1397CONFDATE=`date '+%Y%m%d'`
1398AC_SUBST(CONFDATE)
1399
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +01001400dnl Conditionally enable PIE support for GNU toolchains.
1401enable_pie=yes
1402
1403AC_ARG_ENABLE(pie, AS_HELP_STRING([--disable-pie], [Do not build tools as a Position Independent Executables]))
1404if test "$enable_pie" = "yes"; then
1405 AC_CACHE_CHECK([whether $CC accepts PIE flags], [ap_cv_cc_pie], [
1406 save_CFLAGS=$CFLAGS
1407 save_LDFLAGS=$LDFLAGS
1408 CFLAGS="$CFLAGS -fPIE"
1409 LDFLAGS="$LDFLAGS -pie"
1410 AC_LINK_IFELSE([AC_LANG_SOURCE([[static int foo[30000]; int main () { return 0; }]])],
1411 [ap_cv_cc_pie=yes], [ap_cv_cc_pie=no]
1412 )
1413 CFLAGS=$save_CFLAGS
1414 LDFLAGS=$save_LDFLAGS
1415 ])
1416 if test "$ap_cv_cc_pie" = "yes"; then
1417 PICFLAGS="-fPIE"
1418 PILDFLAGS="-pie"
1419 fi
1420fi
1421
1422AC_SUBST(PICFLAGS)
1423AC_SUBST(PILDFLAGS)
1424
paul7ea487b2003-03-17 02:05:07 +00001425dnl ------------------------------
paula159ed92003-06-04 11:01:45 +00001426dnl set paths for state directory
paul23bd12c2003-04-07 06:11:09 +00001427dnl ------------------------------
1428if test "${prefix}" = "NONE"; then
paule8f29842003-08-12 13:08:31 +00001429 quagga_statedir_prefix="";
paul23bd12c2003-04-07 06:11:09 +00001430else
paule8f29842003-08-12 13:08:31 +00001431 quagga_statedir_prefix=${prefix}
paul23bd12c2003-04-07 06:11:09 +00001432fi
1433if test "${localstatedir}" = '${prefix}/var'; then
paula159ed92003-06-04 11:01:45 +00001434 AC_CACHE_CHECK(state directory,ac_statedir,
paule8f29842003-08-12 13:08:31 +00001435 [for QUAGGA_STATE_DIR in ${quagga_statedir_prefix}/var/run dnl
1436 ${quagga_statedir_prefix}/var/adm dnl
1437 ${quagga_statedir_prefix}/etc dnl
paula159ed92003-06-04 11:01:45 +00001438 /var/run dnl
1439 /var/adm dnl
1440 /etc dnl
1441 /dev/null;
paul23bd12c2003-04-07 06:11:09 +00001442 do
paule8f29842003-08-12 13:08:31 +00001443 test -d $QUAGGA_STATE_DIR && break
paul23bd12c2003-04-07 06:11:09 +00001444 done
paule8f29842003-08-12 13:08:31 +00001445 quagga_statedir=$QUAGGA_STATE_DIR])
paul23bd12c2003-04-07 06:11:09 +00001446else
paule8f29842003-08-12 13:08:31 +00001447 quagga_statedir=${localstatedir}
paula159ed92003-06-04 11:01:45 +00001448 AC_MSG_CHECKING(directory to use for state file)
paule8f29842003-08-12 13:08:31 +00001449 AC_MSG_RESULT(${quagga_statedir})
paul26275b02005-04-11 07:10:47 +00001450 AC_SUBST(quagga_statedir)
paul23bd12c2003-04-07 06:11:09 +00001451fi
paule8f29842003-08-12 13:08:31 +00001452if test $quagga_statedir = "/dev/null"; then
paula159ed92003-06-04 11:01:45 +00001453 AC_MSG_ERROR('STATE DIRECTORY NOT FOUND! FIX OR SPECIFY --localstatedir!')
1454fi
1455
paule8f29842003-08-12 13:08:31 +00001456AC_DEFINE_UNQUOTED(PATH_ZEBRA_PID, "$quagga_statedir/zebra.pid",zebra PID)
1457AC_DEFINE_UNQUOTED(PATH_RIPD_PID, "$quagga_statedir/ripd.pid",ripd PID)
1458AC_DEFINE_UNQUOTED(PATH_RIPNGD_PID, "$quagga_statedir/ripngd.pid",ripngd PID)
1459AC_DEFINE_UNQUOTED(PATH_BGPD_PID, "$quagga_statedir/bgpd.pid",bgpd PID)
1460AC_DEFINE_UNQUOTED(PATH_OSPFD_PID, "$quagga_statedir/ospfd.pid",ospfd PID)
1461AC_DEFINE_UNQUOTED(PATH_OSPF6D_PID, "$quagga_statedir/ospf6d.pid",ospf6d PID)
jardin9e867fe2003-12-23 08:56:18 +00001462AC_DEFINE_UNQUOTED(PATH_ISISD_PID, "$quagga_statedir/isisd.pid",isisd PID)
ajsd0199432004-12-22 14:03:52 +00001463AC_DEFINE_UNQUOTED(PATH_WATCHQUAGGA_PID, "$quagga_statedir/watchquagga.pid",watchquagga PID)
paule8f29842003-08-12 13:08:31 +00001464AC_DEFINE_UNQUOTED(ZEBRA_SERV_PATH, "$quagga_statedir/zserv.api",zebra api socket)
1465AC_DEFINE_UNQUOTED(ZEBRA_VTYSH_PATH, "$quagga_statedir/zebra.vty",zebra vty socket)
1466AC_DEFINE_UNQUOTED(RIP_VTYSH_PATH, "$quagga_statedir/ripd.vty",rip vty socket)
1467AC_DEFINE_UNQUOTED(RIPNG_VTYSH_PATH, "$quagga_statedir/ripngd.vty",ripng vty socket)
1468AC_DEFINE_UNQUOTED(BGP_VTYSH_PATH, "$quagga_statedir/bgpd.vty",bgpd vty socket)
1469AC_DEFINE_UNQUOTED(OSPF_VTYSH_PATH, "$quagga_statedir/ospfd.vty",ospfd vty socket)
1470AC_DEFINE_UNQUOTED(OSPF6_VTYSH_PATH, "$quagga_statedir/ospf6d.vty",ospf6d vty socket)
jardin9e867fe2003-12-23 08:56:18 +00001471AC_DEFINE_UNQUOTED(ISIS_VTYSH_PATH, "$quagga_statedir/isisd.vty",isisd vty socket)
ajs515210b2004-12-22 15:35:12 +00001472AC_DEFINE_UNQUOTED(DAEMON_VTY_DIR, "$quagga_statedir",daemon vty directory)
paul7ea487b2003-03-17 02:05:07 +00001473
paul1eb8ef22005-04-07 07:30:20 +00001474dnl -------------------------------
1475dnl Quagga sources should always be
1476dnl current wrt interfaces. Dont
1477dnl allow deprecated interfaces to
1478dnl be exposed.
1479dnl -------------------------------
1480AC_DEFINE(QUAGGA_NO_DEPRECATED_INTERFACES, 1, Hide deprecated interfaces)
1481
paul7ea487b2003-03-17 02:05:07 +00001482dnl ---------------------------
1483dnl Check htonl works correctly
1484dnl ---------------------------
1485AC_MSG_CHECKING(for working htonl)
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001486AC_CACHE_VAL(ac_cv_htonl_works,
1487 [AC_LINK_IFELSE([AC_LANG_PROGRAM([QUAGGA_INCLUDES],[htonl (0);])],
1488 [ac_cv_htonl_works=yes], [ac_cv_htonl_works=no])
1489 ]
1490)
paul7ea487b2003-03-17 02:05:07 +00001491AC_MSG_RESULT($ac_cv_htonl_works)
1492
paul14c17fd2004-11-07 22:34:23 +00001493AC_CONFIG_FILES([Makefile lib/Makefile zebra/Makefile ripd/Makefile
ajsd0199432004-12-22 14:03:52 +00001494 ripngd/Makefile bgpd/Makefile ospfd/Makefile watchquagga/Makefile
jardin9e867fe2003-12-23 08:56:18 +00001495 ospf6d/Makefile isisd/Makefile vtysh/Makefile doc/Makefile
paul14c17fd2004-11-07 22:34:23 +00001496 ospfclient/Makefile tests/Makefile m4/Makefile redhat/Makefile
gdt69f1fc22004-08-27 15:57:35 +00001497 pkgsrc/Makefile
paul670bbf12004-11-12 09:05:00 +00001498 redhat/quagga.spec
gdtb7a97f82004-07-23 16:23:56 +00001499 lib/version.h
paul14c17fd2004-11-07 22:34:23 +00001500 doc/defines.texi
hassof695b012005-04-02 19:03:39 +00001501 isisd/topology/Makefile
gdtcbd04082004-08-31 18:16:36 +00001502 pkgsrc/bgpd.sh pkgsrc/ospf6d.sh pkgsrc/ospfd.sh
paulf31293a2004-11-12 09:27:04 +00001503 pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh])
paul26275b02005-04-11 07:10:47 +00001504AC_CONFIG_FILES([solaris/Makefile])
1505
paul670bbf12004-11-12 09:05:00 +00001506AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl])
hasso48577192004-11-19 06:41:49 +00001507## Hack, but working solution to avoid rebuilding of quagga.info.
1508## It's already in CVS until texinfo 4.7 is more common.
paul14c17fd2004-11-07 22:34:23 +00001509AC_OUTPUT
paul7ea487b2003-03-17 02:05:07 +00001510
1511echo "
hassoc89f6492004-08-26 12:21:28 +00001512Quagga configuration
1513--------------------
1514quagga version : ${PACKAGE_VERSION}
paul7ea487b2003-03-17 02:05:07 +00001515host operationg system : ${host_os}
1516source code location : ${srcdir}
1517compiler : ${CC}
1518compiler flags : ${CFLAGS}
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001519make : ${MAKE-make}
hasso2d582282005-03-28 15:29:07 +00001520includes : ${INCLUDES} ${SNMP_INCLUDES}
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001521linker flags : ${LDFLAGS} ${LIBS} ${LIBCAP} ${LIBREADLINE} ${LIBM}
paule8f29842003-08-12 13:08:31 +00001522state file directory : ${quagga_statedir}
pauldc7a2bf2003-10-22 00:07:44 +00001523config file directory : `eval echo \`echo ${sysconfdir}\``
gdtd6b72f72003-12-03 17:24:27 +00001524example directory : `eval echo \`echo ${exampledir}\``
paul8d4aee52003-06-06 00:30:35 +00001525user to run as : ${enable_user}
1526group to run as : ${enable_group}
1527group for vty sockets : ${enable_vty_group}
gdtaa593d52003-12-22 20:15:53 +00001528config file mask : ${enable_configfile_mask}
1529log file mask : ${enable_logfile_mask}
pauldc7a2bf2003-10-22 00:07:44 +00001530
1531The above user and group must have read/write access to the state file
Paul Jakma105b8232006-05-28 08:02:41 +00001532directory and to the config files in the config file directory."
1533
1534if test x"$quagga_cv_gnu_make" = x"no"; then echo "
1535Warning: The ${MAKE-make} programme detected, either in your path or
1536via the MAKE variable, is not GNU Make. GNU make may be installed as
1537gmake on some systems. and is required to complete a build of Quagga
1538" > /dev/stderr
1539fi