blob: dcca9682ce4ed6aa3b2061ef6414aa0f86981492 [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##
paule8f29842003-08-12 13:08:31 +00008AC_PREREQ(2.53)
paul7ea487b2003-03-17 02:05:07 +00009
David Lamparter828f2352012-05-01 21:43:53 +020010AC_INIT(Quagga, 0.99.21, [https://bugzilla.quagga.net])
paulfa1253d2003-09-24 05:09:26 +000011AC_CONFIG_SRCDIR(lib/zebra.h)
Paul Jakma62c9f502009-07-19 17:33:21 +010012AC_CONFIG_MACRO_DIR([m4])
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
Jeremy Jackson7ec57362009-01-21 22:10:40 -050024AC_CHECK_PROG([GAWK],[gawk],[gawk],[not-in-PATH])
25if test "x$GAWK" = "xnot-in-PATH" ; then
26 AC_MSG_ERROR([GNU awk is required for lib/memtype.h made by memtypes.awk.
27BSD awk complains: awk: gensub doesn't support backreferences (subst "\1") ])
28fi
paul03ecfb62005-04-16 15:38:23 +000029AC_ARG_VAR([GAWK],[GNU AWK])
30
gdtd6b72f72003-12-03 17:24:27 +000031dnl default is to match previous behavior
gdtc4f0efe2003-12-04 15:39:25 +000032exampledir=${sysconfdir}
gdtd6b72f72003-12-03 17:24:27 +000033AC_ARG_ENABLE([exampledir],
34 AC_HELP_STRING([--enable-exampledir],
35 [specify alternate directory for examples]),
36 exampledir="$enableval",)
gdtc4f0efe2003-12-04 15:39:25 +000037dnl XXX add --exampledir to autoconf standard directory list somehow
gdtd6b72f72003-12-03 17:24:27 +000038AC_SUBST(exampledir)
39
gdtcbd04082004-08-31 18:16:36 +000040dnl default is to match previous behavior
41pkgsrcrcdir=""
42pkgsrcdir=""
43AC_ARG_ENABLE([pkgsrcrcdir],
44 AC_HELP_STRING([--enable-pkgsrcrcdir],
45 [specify directory for rc.d scripts]),
46 pkgsrcrcdir="$enableval"; pkgsrcdir="pkgsrc",)
47dnl XXX add --pkgsrcrcdir to autoconf standard directory list somehow
48AC_SUBST(pkgsrcdir)
49AC_SUBST(pkgsrcrcdir)
50
paul7ea487b2003-03-17 02:05:07 +000051dnl ------------
52dnl Check CFLAGS
53dnl ------------
54AC_ARG_WITH(cflags,
55[ --with-cflags Set CFLAGS for use in compilation.])
56if test "x$with_cflags" != "x" ; then
57 CFLAGS="$with_cflags" ; cflags_specified=yes ;
58elif test -n "$CFLAGS" ; then
59 cflags_specified=yes ;
60fi
61
hasso1969e4b2005-03-27 13:07:23 +000062dnl --------------------
63dnl Check CC and friends
64dnl --------------------
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +010065AC_LANG([C])
paul7ea487b2003-03-17 02:05:07 +000066AC_PROG_CC
hasso1969e4b2005-03-27 13:07:23 +000067AC_PROG_CPP
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +010068AM_PROG_CC_C_O
hasso1969e4b2005-03-27 13:07:23 +000069AC_PROG_EGREP
Greg Troxel553bdfe2007-02-06 20:10:35 +000070
71dnl autoconf 2.59 appears not to support AC_PROG_SED
72dnl AC_PROG_SED
73AC_CHECK_PROG([SED],[sed],[sed],[/bin/false])
hasso1969e4b2005-03-27 13:07:23 +000074
Paul Jakmafa482832012-03-08 13:51:21 +000075dnl pdflatex and latexmk are needed to build HACKING.pdf
76AC_CHECK_PROG([PDFLATEX],[pdflatex],[pdflatex],[/bin/false])
77AC_CHECK_PROG([LATEXMK],[latexmk],[latexmk],[/bin/false])
78if test "x$PDFLATEX" = "x/bin/false" -o "x$LATEXMK" = "x/bin/false"; then
79 AC_MSG_WARN([Will not be able to make PDF versions of TeX documents])
80else
81 HAVE_LATEX=true
82fi
83AM_CONDITIONAL([HAVE_LATEX], [test "x$HAVE_LATEX" = "xtrue"])
84
hasso1969e4b2005-03-27 13:07:23 +000085dnl ------------------------------------------------------------------
86dnl Intel compiler check. Although Intel tries really hard to make icc
87dnl look like gcc, there are some differences. It's very verbose with
88dnl -Wall and it doesn't support the individual -W options.
89dnl ------------------------------------------------------------------
paul6a4b8832005-11-26 08:28:00 +000090if test "x${GCC}" = "xyes" ; then
91 COMPILER="GCC"
92 AC_MSG_CHECKING([whether we are using the Intel compiler])
93 AC_EGREP_CPP([^__INTEL_COMPILER], [__INTEL_COMPILER],
94 [AC_MSG_RESULT([no])],
95 [COMPILER="ICC"
96 AC_MSG_RESULT([yes])]
97 )
98else
99 AC_MSG_CHECKING([whether we are using SunPro compiler])
100 AC_EGREP_CPP([^__SUNPRO_C.*0x5(7|8|9)], ["__SUNPRO_C" __SUNPRO_C],
101 [AC_MSG_RESULT([no])],
102 [COMPILER="SUNPRO"
103 AC_MSG_RESULT([yes])]
104 )
105fi
paul7ea487b2003-03-17 02:05:07 +0000106
paula49c0ff2004-09-30 06:08:58 +0000107dnl ---------------------------------------------
paul7ea487b2003-03-17 02:05:07 +0000108dnl If CLFAGS doesn\'t exist set default value
paula49c0ff2004-09-30 06:08:58 +0000109dnl AC_PROG_CC will have set minimal default
110dnl already, eg "-O2 -g" for gcc, "-g" for others
paul27eebb32004-07-22 18:16:59 +0000111dnl (Wall is gcc specific... have to make sure
112dnl gcc is being used before setting it)
113dnl
paul6a4b8832005-11-26 08:28:00 +0000114dnl Intel icc 8.0 also sets __GNUC__,
115dnl but doesn't support all these fancy -W options.
hasso1969e4b2005-03-27 13:07:23 +0000116dnl Intel compiler warnings we ignore:
117dnl 279: controlling expression is constant.
118dnl 869: parameter "xxx" was never referenced - to avoid massive warnings
119dnl about "self", "vty", "argc" and "argv" never referenced in DEFUN
120dnl macro.
121dnl 981: operands are evaluated in unspecified order.
paul6a4b8832005-11-26 08:28:00 +0000122dnl
123dnl Sun Studio 10 / SunPro 5.7 is also supported,
124dnl so lets set some sane CFLAGS for it.
125dnl ---------------------------------------------
hasso1969e4b2005-03-27 13:07:23 +0000126
paul6a4b8832005-11-26 08:28:00 +0000127AC_MSG_CHECKING([whether to set a default CFLAGS])
128if test "x${cflags_specified}" = "x" ; then
129 case ${COMPILER} in
130 "ICC")
131 CFLAGS="-Os -g -Wall -wd 279,869,981"
132 AC_MSG_RESULT([Intel default])
133 ;;
134 "GCC")
Andrew J. Schorr5fa05092007-04-30 19:14:08 +0000135 CFLAGS="-Os -fno-omit-frame-pointer -g -std=gnu99 -Wall"
paul6a4b8832005-11-26 08:28:00 +0000136 CFLAGS="${CFLAGS} -Wsign-compare -Wpointer-arith"
137 CFLAGS="${CFLAGS} -Wbad-function-cast -Wwrite-strings"
138 CFLAGS="${CFLAGS} -Wmissing-prototypes -Wmissing-declarations"
139 CFLAGS="${CFLAGS} -Wchar-subscripts -Wcast-qual"
140 # TODO: conditionally addd -Wpacked if handled
141 AC_MSG_RESULT([gcc default])
142 ;;
143 "SUNPRO")
Paul Jakma105b8232006-05-28 08:02:41 +0000144 CFLAGS="-xO4 -v -g -xspace -xcode=pic32 -xstrconst -xc99"
paul6a4b8832005-11-26 08:28:00 +0000145 AC_MSG_RESULT([SunPro default])
146 ;;
147 *)
148 AC_MSG_RESULT([unknown compiler])
149 ;;
150 esac
151else
152 AC_MSG_RESULT([CFLAGS supplied by user])
hasso1969e4b2005-03-27 13:07:23 +0000153fi
154
paul7ea487b2003-03-17 02:05:07 +0000155dnl --------------
156dnl Check programs
157dnl --------------
paul7ea487b2003-03-17 02:05:07 +0000158AC_PROG_INSTALL
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000159AC_PROG_LN_S
paul7ea487b2003-03-17 02:05:07 +0000160AC_PROG_MAKE_SET
161AC_CHECK_TOOL(AR, ar)
paul7ea487b2003-03-17 02:05:07 +0000162
Paul Jakma105b8232006-05-28 08:02:41 +0000163dnl ---------------------------
164dnl We, perhaps unfortunately,
165dnl depend on GNU Make specific
166dnl constructs.
167dnl Give the user a warning if
168dnl not GNU Make.
169dnl ---------------------------
170AC_CACHE_CHECK([if ${MAKE-make} is GNU make], [quagga_cv_gnu_make],
171 [quagga_cv_gnu_make=no
172 if ${MAKE-make} --version 2>/dev/null | \
173 grep '^GNU Make ' >/dev/null ; then
174 quagga_cv_gnu_make=yes;
175 fi
176 ]
177)
178
Paul Jakmad46d2a22007-05-10 16:53:04 +0000179dnl -----------------
180dnl System extensions
181dnl -----------------
Paul Jakmad46d2a22007-05-10 16:53:04 +0000182AC_GNU_SOURCE
paul7ea487b2003-03-17 02:05:07 +0000183
gdt87efd642004-06-30 17:36:11 +0000184dnl -------
185dnl libtool
186dnl -------
paul0fc42942004-08-19 04:41:21 +0000187AC_PROG_LIBTOOL
gdt87efd642004-06-30 17:36:11 +0000188
paul7ea487b2003-03-17 02:05:07 +0000189dnl ----------------------
190dnl Packages configuration
191dnl ----------------------
Joachim Nilsson1080c132012-05-30 08:15:48 +0200192AC_ARG_WITH(pkg-extra-version,
193 AS_HELP_STRING([--with-pkg-extra-version=VER], [add extra version field, for packagers/distributions]),
194 [EXTRAVERSION=$withval],)
paul7ea487b2003-03-17 02:05:07 +0000195AC_ARG_ENABLE(vtysh,
gdtfc9d0742004-06-30 14:25:12 +0000196[ --enable-vtysh include integrated vty shell for Quagga])
paul7ea487b2003-03-17 02:05:07 +0000197AC_ARG_ENABLE(ipv6,
198[ --disable-ipv6 turn off IPv6 related features and daemons])
Joakim Tjernlundcbcd9bf2009-02-16 09:40:39 +0100199AC_ARG_ENABLE(doc,
200[ --disable-doc do not build docs])
David Lampartere2b15802012-11-03 09:14:29 -0700201AC_ARG_ENABLE(tests,
202[ --disable-tests do not build tests])
paul7ea487b2003-03-17 02:05:07 +0000203AC_ARG_ENABLE(zebra,
204[ --disable-zebra do not build zebra daemon])
205AC_ARG_ENABLE(bgpd,
206[ --disable-bgpd do not build bgpd])
207AC_ARG_ENABLE(ripd,
208[ --disable-ripd do not build ripd])
209AC_ARG_ENABLE(ripngd,
210[ --disable-ripngd do not build ripngd])
211AC_ARG_ENABLE(ospfd,
212[ --disable-ospfd do not build ospfd])
paul7ea487b2003-03-17 02:05:07 +0000213AC_ARG_ENABLE(ospf6d,
214[ --disable-ospf6d do not build ospf6d])
Paul Jakma57345092011-12-25 17:52:09 +0100215AC_ARG_ENABLE(babeld,
216[ --disable-babeld do not build babeld])
ajsd0199432004-12-22 14:03:52 +0000217AC_ARG_ENABLE(watchquagga,
218[ --disable-watchquagga do not build watchquagga])
jardin9e867fe2003-12-23 08:56:18 +0000219AC_ARG_ENABLE(isisd,
hassoae399ab2004-09-13 20:22:18 +0000220[ --enable-isisd build isisd])
Greg Troxel97cee872007-08-02 13:36:56 +0000221AC_ARG_ENABLE(solaris,
222[ --enable-solaris build solaris])
paul7ea487b2003-03-17 02:05:07 +0000223AC_ARG_ENABLE(bgp-announce,
224[ --disable-bgp-announce, turn off BGP route announcement])
225AC_ARG_ENABLE(netlink,
226[ --enable-netlink force to use Linux netlink interface])
227AC_ARG_ENABLE(broken-aliases,
228[ --enable-broken-aliases enable aliases as distinct interfaces for Linux 2.2.X])
229AC_ARG_ENABLE(snmp,
Vincent Bernatd6be5fb2012-05-24 09:44:43 +0200230[ --enable-snmp=ARG enable SNMP support (smux or agentx)])
paul7ea487b2003-03-17 02:05:07 +0000231AC_ARG_WITH(libpam,
232[ --with-libpam use libpam for PAM support in vtysh])
hasso71c0fb52003-05-25 20:18:13 +0000233AC_ARG_ENABLE(tcp-zebra,
paul7ea487b2003-03-17 02:05:07 +0000234[ --enable-tcp-zebra enable TCP/IP socket connection between zebra and protocol daemon])
paul7ea487b2003-03-17 02:05:07 +0000235AC_ARG_ENABLE(opaque-lsa,
Paul Jakma36de2612011-03-22 10:18:05 +0000236 AC_HELP_STRING([--disable-opaque-lsa],[do not build OSPF Opaque-LSA with OSPFAPI support (RFC2370)]))
paul1ef74ef2003-03-21 15:16:05 +0000237AC_ARG_ENABLE(ospfapi,
Paul Jakma36de2612011-03-22 10:18:05 +0000238[ --disable-ospfapi do not build OSPFAPI to access the OSPF LSA Database])
paul1ef74ef2003-03-21 15:16:05 +0000239AC_ARG_ENABLE(ospfclient,
240[ --disable-ospfclient do not build OSPFAPI client for OSPFAPI,
241 (this is the default if --disable-ospfapi is set)])
paul7ea487b2003-03-17 02:05:07 +0000242AC_ARG_ENABLE(ospf-te,
Paul Jakma36de2612011-03-22 10:18:05 +0000243 AC_HELP_STRING([--disable-ospf-te],[disable Traffic Engineering Extension to OSPF]))
paul7ea487b2003-03-17 02:05:07 +0000244AC_ARG_ENABLE(multipath,
245[ --enable-multipath=ARG enable multipath function, ARG must be digit])
Paul P Komkoff Jrfe86b482008-08-13 16:56:05 +0100246AC_ARG_ENABLE(user,
247 AC_HELP_STRING([--enable-user=user], [user to run Quagga suite as (default quagga)]))
248AC_ARG_ENABLE(group,
249 AC_HELP_STRING([--enable-group=group], [group to run Quagga suite as (default quagga)]))
pauledd7c242003-06-04 13:59:38 +0000250AC_ARG_ENABLE(vty_group,
paul6b6942f2004-10-22 04:55:05 +0000251[ --enable-vty-group=ARG set vty sockets to have specified group as owner])
gdtaa593d52003-12-22 20:15:53 +0000252AC_ARG_ENABLE(configfile_mask,
253[ --enable-configfile-mask=ARG set mask for config files])
254AC_ARG_ENABLE(logfile_mask,
255[ --enable-logfile-mask=ARG set mask for log files])
pauledd7c242003-06-04 13:59:38 +0000256
hasso71c0fb52003-05-25 20:18:13 +0000257AC_ARG_ENABLE(rtadv,
paul6b6942f2004-10-22 04:55:05 +0000258[ --disable-rtadv disable IPV6 router advertisement feature])
hassoca776982004-06-12 14:33:05 +0000259AC_ARG_ENABLE(irdp,
paul6b6942f2004-10-22 04:55:05 +0000260[ --enable-irdp enable IRDP server support in zebra])
hassof695b012005-04-02 19:03:39 +0000261AC_ARG_ENABLE(isis_topology,
262[ --enable-isis-topology enable IS-IS topology generator])
hasso41d3fc92004-04-06 11:59:00 +0000263AC_ARG_ENABLE(capabilities,
264[ --disable-capabilities disable using POSIX capabilities])
paul6b6942f2004-10-22 04:55:05 +0000265AC_ARG_ENABLE(gcc_ultra_verbose,
266[ --enable-gcc-ultra-verbose enable ultra verbose GCC warnings])
Paul Jakma3453a712009-06-12 14:21:02 +0100267AC_ARG_ENABLE(linux24_tcp_md5,
268[ --enable-linux24-tcp-md5 enable support for old, Linux-2.4 RFC2385 patch])
ajs3cade262004-12-29 17:50:22 +0000269AC_ARG_ENABLE(gcc-rdynamic,
270[ --enable-gcc-rdynamic enable gcc linking with -rdynamic for better backtraces])
ajs924b9222005-04-16 17:11:24 +0000271AC_ARG_ENABLE(time-check,
272[ --disable-time-check disable slow thread warning messages])
Jeremy Jackson25f45882009-01-12 16:06:12 -0500273AC_ARG_ENABLE(pcreposix,
274[ --enable-pcreposix enable using PCRE Posix libs for regex functions])
paul6b6942f2004-10-22 04:55:05 +0000275
276if test x"${enable_gcc_ultra_verbose}" = x"yes" ; then
277 CFLAGS="${CFLAGS} -W -Wcast-qual -Wstrict-prototypes"
278 CFLAGS="${CFLAGS} -Wmissing-declarations -Wmissing-noreturn"
279 CFLAGS="${CFLAGS} -Wmissing-format-attribute -Wunreachable-code"
280 CFLAGS="${CFLAGS} -Wpacked -Wpadded"
281fi
paul7ea487b2003-03-17 02:05:07 +0000282
ajs3cade262004-12-29 17:50:22 +0000283if test x"${enable_gcc_rdynamic}" = x"yes" ; then
284 LDFLAGS="${LDFLAGS} -rdynamic"
285fi
286
ajs924b9222005-04-16 17:11:24 +0000287if test x"${enable_time_check}" != x"no" ; then
288 if test x"${enable_time_check}" = x"yes" -o x"${enable_time_check}" = x ; then
289 AC_DEFINE(CONSUMED_TIME_CHECK,5000000,Consumed Time Check)
290 else
291 AC_DEFINE_UNQUOTED(CONSUMED_TIME_CHECK,$enable_time_check,Consumed Time Check)
292 fi
293fi
294
paul7ea487b2003-03-17 02:05:07 +0000295if test "${enable_broken_aliases}" = "yes"; then
296 if test "${enable_netlink}" = "yes"
297 then
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000298 AC_MSG_FAILURE([Sorry you can not use netlink with broken aliases])
paul7ea487b2003-03-17 02:05:07 +0000299 fi
300 AC_DEFINE(HAVE_BROKEN_ALIASES,,Broken Alias)
301 enable_netlink=no
302fi
303
304if test "${enable_tcp_zebra}" = "yes"; then
305 AC_DEFINE(HAVE_TCP_ZEBRA,,Use TCP for zebra communication)
306fi
307
Paul Jakma36de2612011-03-22 10:18:05 +0000308if test "${enable_opaque_lsa}" != "no"; then
paul7ea487b2003-03-17 02:05:07 +0000309 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
310fi
311
Paul Jakma36de2612011-03-22 10:18:05 +0000312if test "${enable_ospf_te}" != "no"; then
paul7ea487b2003-03-17 02:05:07 +0000313 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
314 AC_DEFINE(HAVE_OSPF_TE,,OSPF TE)
315fi
316
Paul Jakma3453a712009-06-12 14:21:02 +0100317if test "${enable_linux24_tcp_md5}" = "yes"; then
318 AC_DEFINE(HAVE_TCP_MD5_LINUX24,,Old Linux 2.4 TCP MD5 Signature Patch)
319fi
320
gdtd2a0ccc2003-12-03 18:13:48 +0000321AC_MSG_CHECKING(if zebra should be configurable to send Route Advertisements)
322if test "${enable_rtadv}" != "no"; then
hasso71c0fb52003-05-25 20:18:13 +0000323 AC_MSG_RESULT(yes)
gdtd2a0ccc2003-12-03 18:13:48 +0000324 AC_DEFINE(HAVE_RTADV,,Enable IPv6 Routing Advertisement support)
paul2487bea2003-05-25 23:51:31 +0000325else
326 AC_MSG_RESULT(no)
hasso71c0fb52003-05-25 20:18:13 +0000327fi
paul7ea487b2003-03-17 02:05:07 +0000328
hassoca776982004-06-12 14:33:05 +0000329if test "${enable_irdp}" = "yes"; then
330 AC_DEFINE(HAVE_IRDP,, IRDP )
331fi
332
hassof695b012005-04-02 19:03:39 +0000333if test "${enable_isisd}" = "yes" && test "${enable_isis_topology}" = yes; then
334 AC_DEFINE(TOPOLOGY_GENERATE,,Enable IS-IS topology generator code)
David Lamparteree1ac2d2012-07-19 12:58:59 +0200335 ISIS_TOPOLOGY_INCLUDES="-I\$(srcdir)/topology"
hassof695b012005-04-02 19:03:39 +0000336 ISIS_TOPOLOGY_DIR="topology"
337 ISIS_TOPOLOGY_LIB="./topology/libtopology.a"
338fi
339
340AC_SUBST(ISIS_TOPOLOGY_INCLUDES)
341AC_SUBST(ISIS_TOPOLOGY_DIR)
342AC_SUBST(ISIS_TOPOLOGY_LIB)
343
paul79cb2162003-06-06 12:19:53 +0000344if test "${enable_user}" = "yes" || test x"${enable_user}" = x""; then
paule8f29842003-08-12 13:08:31 +0000345 enable_user="quagga"
pauledd7c242003-06-04 13:59:38 +0000346elif test "${enable_user}" = "no"; then
347 enable_user="root"
348fi
pauledd7c242003-06-04 13:59:38 +0000349
paul79cb2162003-06-06 12:19:53 +0000350if test "${enable_group}" = "yes" || test x"${enable_group}" = x""; then
paule8f29842003-08-12 13:08:31 +0000351 enable_group="quagga"
pauledd7c242003-06-04 13:59:38 +0000352elif test "${enable_group}" = "no"; then
353 enable_group="root"
354fi
pauledd7c242003-06-04 13:59:38 +0000355
356if test x"${enable_vty_group}" = x"yes" ; then
paul8d4aee52003-06-06 00:30:35 +0000357 AC_MSG_ERROR([--enable-vty-group requires a group as argument, not yes])
paul79cb2162003-06-06 12:19:53 +0000358elif test x"${enable_vty_group}" != x""; then
paul8d4aee52003-06-06 00:30:35 +0000359 if test x"${enable_vty_group}" != x"no"; then
pauledd7c242003-06-04 13:59:38 +0000360 AC_DEFINE_UNQUOTED(VTY_GROUP, "${enable_vty_group}", VTY Sockets Group)
361 fi
362fi
paul26275b02005-04-11 07:10:47 +0000363AC_SUBST([enable_user])
364AC_SUBST([enable_group])
365AC_SUBST([enable_vty_group])
366AC_DEFINE_UNQUOTED(QUAGGA_USER, "${enable_user}", Quagga User)
367AC_DEFINE_UNQUOTED(QUAGGA_GROUP, "${enable_group}", Quagga Group)
pauledd7c242003-06-04 13:59:38 +0000368
gdtaa593d52003-12-22 20:15:53 +0000369enable_configfile_mask=${enable_configfile_mask:-0600}
370AC_DEFINE_UNQUOTED(CONFIGFILE_MASK, ${enable_configfile_mask}, Mask for config files)
371
372enable_logfile_mask=${enable_logfile_mask:-0600}
373AC_DEFINE_UNQUOTED(LOGFILE_MASK, ${enable_logfile_mask}, Mask for log files)
374
paul7ea487b2003-03-17 02:05:07 +0000375MULTIPATH_NUM=1
376
377case "${enable_multipath}" in
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000378 [[0-9]|[1-9][0-9]])
paul7ea487b2003-03-17 02:05:07 +0000379 MULTIPATH_NUM="${enable_multipath}"
380 ;;
381 "")
382 ;;
383 *)
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000384 AC_MSG_FAILURE([Please specify digit to enable multipath ARG])
paul7ea487b2003-03-17 02:05:07 +0000385 ;;
386esac
387
paul7ea487b2003-03-17 02:05:07 +0000388AC_SUBST(MULTIPATH_NUM)
389
Joachim Nilsson1080c132012-05-30 08:15:48 +0200390dnl -----------------------------------
391dnl Add extra version string to package
392dnl name, string and version fields.
393dnl -----------------------------------
394if test "x${EXTRAVERSION}" != "x" ; then
395 VERSION=${VERSION}${EXTRAVERSION}
396 PACKAGE_VERSION=${PACKAGE_VERSION}${EXTRAVERSION}
397 PACKAGE_STRING=${PACKAGE_STRING}${EXTRAVERSION}
398fi
399
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000400dnl ------------------------------------
401dnl Check C keywords and standard types
402dnl ------------------------------------
403AC_C_CONST
404AC_C_INLINE
405AC_C_RESTRICT
406AC_C_VOLATILE
pauldc7a2bf2003-10-22 00:07:44 +0000407AC_HEADER_STDC
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000408AC_HEADER_TIME
409AC_HEADER_SYS_WAIT
410dnl AC_TYPE_PID_T
411AC_TYPE_UID_T
412AC_TYPE_MODE_T
413AC_TYPE_SIZE_T
414AC_TYPE_SIGNAL
415AC_STRUCT_TM
pauldc7a2bf2003-10-22 00:07:44 +0000416
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000417dnl -------------------------
418dnl Check other header files.
419dnl -------------------------
420AC_CHECK_HEADERS([stropts.h sys/ksym.h sys/times.h sys/select.h \
421 sys/types.h linux/version.h netdb.h asm/types.h \
Stephen Hemmingerb69442d2011-09-13 17:15:51 +0400422 sys/param.h limits.h signal.h \
Paul Jakma6511cab2009-06-18 17:38:01 +0100423 sys/socket.h netinet/in.h time.h sys/time.h])
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000424
425dnl Utility macro to avoid retyping includes all the time
426m4_define([QUAGGA_INCLUDES],
427[#ifdef SUNOS_5
428#define _XPG4_2
429#define __EXTENSIONS__
430#endif
431#include <stdio.h>
432#if STDC_HEADERS
433# include <stdlib.h>
434# include <stddef.h>
435#else
436# if HAVE_STDLIB_H
437# include <stdlib.h>
438# endif
439#endif
440#if HAVE_SYS_TYPES_H
441# include <sys/types.h>
442#endif
443/* sys/conf.h depends on param.h on FBSD at least */
444#if HAVE_SYS_PARAM_H
445# include <sys/param.h>
446#endif
447/* Required for MAXSIG */
448#if HAVE_SIGNAL_H
449# include <signal.h>
450#endif
451#if HAVE_SYS_SOCKET_H
452# include <sys/socket.h>
453#endif
454#if HAVE_NETINET_IN_H
455# include <netinet/in.h>
456#endif
Paul Jakma6511cab2009-06-18 17:38:01 +0100457#ifdef TIME_WITH_SYS_TIME
458# include <sys/time.h>
459# include <time.h>
460#else
461# ifdef HAVE_SYS_TIME_H
462# include <sys/time.h>
463# else
464# include <time.h>
465# endif
466#endif /* TIME_WITH_SYS_TIME */
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000467])dnl
468
Denis Ovsienko2b43bf22011-07-14 16:30:08 +0400469dnl HAVE_NET_IF_H must be discovered by the time the longer AC_CHECK_HEADERS
470dnl round below execution begins, otherwise it doesn't properly detect
471dnl HAVE_NETINET6_IN6_VAR_H, HAVE_NET_IF_VAR_H and HAVE_STRUCT_IN6_ALIASREQ
472dnl on FreeBSD (BZ#408).
473
474AC_CHECK_HEADERS([net/if.h], [], [], QUAGGA_INCLUDES)
475
476m4_define([QUAGGA_INCLUDES],
477QUAGGA_INCLUDES
478[#if HAVE_NET_IF_H
479# include <net/if.h>
480#endif
481])dnl
482
483dnl Same applies for HAVE_NET_IF_VAR_H, which HAVE_NETINET6_ND6_H and
484dnl HAVE_NETINET_IN_VAR_H depend upon. But if_var.h depends on if.h, hence
485dnl an additional round for it.
486
487AC_CHECK_HEADERS([net/if_var.h], [], [], QUAGGA_INCLUDES)
488
489m4_define([QUAGGA_INCLUDES],
490QUAGGA_INCLUDES
491[#if HAVE_NET_IF_VAR_H
492# include <net/if_var.h>
493#endif
494])dnl
495
496AC_CHECK_HEADERS([sys/un.h netinet/in_systm.h netinet/in_var.h \
497 net/if_dl.h net/netopt.h net/route.h \
Paul Jakma11770e12007-06-22 16:14:42 +0000498 inet/nd.h arpa/inet.h netinet/ip_icmp.h \
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000499 fcntl.h stddef.h sys/ioctl.h syslog.h wchar.h wctype.h \
500 sys/sysctl.h sys/sockio.h kvm.h sys/conf.h],
501 [], [], QUAGGA_INCLUDES)
502
503AC_CHECK_HEADERS([ucontext.h], [], [],
504[#ifndef __USE_GNU
505#define __USE_GNU
506#endif /* __USE_GNU */
507QUAGGA_INCLUDES
508])
509
510m4_define([QUAGGA_INCLUDES],
511QUAGGA_INCLUDES
Denis Ovsienko2b43bf22011-07-14 16:30:08 +0400512[#if HAVE_SYS_UN_H
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000513# include <sys/un.h>
514#endif
515#if HAVE_NETINET_IN_SYSTM_H
516# include <netinet/in_systm.h>
517#endif
518#if HAVE_NETINET_IN_VAR_H
519# include <netinet/in_var.h>
520#endif
521#if HAVE_NET_IF_DL_H
522# include <net/if_dl.h>
523#endif
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000524#if HAVE_NET_NETOPT_H
525# include <net/netopt.h>
526#endif
527#if HAVE_NET_ROUTE_H
528# include <net/route.h>
529#endif
530#if HAVE_INET_ND_H
531# include <inet/nd.h>
532#endif
533#if HAVE_ARPA_INET_H
534# include <arpa/inet.h>
535#endif
Paul Jakma11770e12007-06-22 16:14:42 +0000536/* Required for IDRP */
537#if HAVE_NETINET_IP_ICMP_H
538# include <netinet/ip_icmp.h>
539#endif
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000540])dnl
pauldc7a2bf2003-10-22 00:07:44 +0000541
gdtfa3232e2003-12-03 17:52:30 +0000542dnl V6 headers are checked below, after we check for v6
paul7ea487b2003-03-17 02:05:07 +0000543
paul7ea487b2003-03-17 02:05:07 +0000544dnl Some systems (Solaris 2.x) require libnsl (Network Services Library)
545case "$host" in
paulafd8a122005-03-12 06:36:10 +0000546 [*-sunos5.[6-7]*] | [*-solaris2.[6-7]*])
paul7ea487b2003-03-17 02:05:07 +0000547 opsys=sol2-6
paulafd8a122005-03-12 06:36:10 +0000548 AC_DEFINE(SUNOS_56, 1, SunOS 5.6 to 5.7)
paul19877dd2004-05-11 10:49:35 +0000549 AC_DEFINE(SUNOS_5, 1, SunOS 5)
paul7ea487b2003-03-17 02:05:07 +0000550 AC_CHECK_LIB(xnet, main)
551 CURSES=-lcurses
552 ;;
paul1b73de82005-04-10 16:31:51 +0000553 [*-sunos5.[8-9]] \
554 | [*-sunos5.1[0-9]] \
555 | [*-sunos5.1[0-9].[0-9]] \
556 | [*-solaris2.[8-9]] \
557 | [*-solaris2.1[0-9]] \
558 | [*-solaris2.1[0-9].[0-9]])
paulafd8a122005-03-12 06:36:10 +0000559 opsys=sol8
Paul Jakmafb66b292006-05-28 08:26:15 +0000560 AC_DEFINE(SUNOS_59, 1, [SunOS 5.8 up])
561 AC_DEFINE(SUNOS_5, 1, [SunOS 5])
paul19877dd2004-05-11 10:49:35 +0000562 AC_CHECK_LIB(socket, main)
563 AC_CHECK_LIB(nsl, main)
paul1b73de82005-04-10 16:31:51 +0000564 AC_CHECK_LIB(umem, main)
Paul Jakmafb66b292006-05-28 08:26:15 +0000565 AC_CHECK_FUNCS([printstack],
566 [AC_DEFINE([HAVE_PRINTSTACK],1,[Solaris printstack])
567 AC_DEFINE([HAVE_STACK_TRACE],1,[Stack symbols decode functionality])
568 ])
paul19877dd2004-05-11 10:49:35 +0000569 CURSES=-lcurses
570 ;;
paul7ea487b2003-03-17 02:05:07 +0000571 *-sunos5* | *-solaris2*)
paul19877dd2004-05-11 10:49:35 +0000572 AC_DEFINE(SUNOS_5,,SunOS 5, Unknown SunOS)
paul7ea487b2003-03-17 02:05:07 +0000573 AC_CHECK_LIB(socket, main)
574 AC_CHECK_LIB(nsl, main)
575 CURSES=-lcurses
576 ;;
hassoc45eb832005-02-19 13:58:06 +0000577 *-linux*)
paul7ea487b2003-03-17 02:05:07 +0000578 opsys=gnu-linux
579 AC_DEFINE(GNU_LINUX,,GNU Linux)
580 ;;
581 *-nec-sysv4*)
582 AC_CHECK_LIB(nsl, gethostbyname)
583 AC_CHECK_LIB(socket, socket)
584 ;;
paul7ea487b2003-03-17 02:05:07 +0000585 *-openbsd*)
586 opsys=openbsd
587 AC_DEFINE(OPEN_BSD,,OpenBSD)
588 ;;
589 *-bsdi*)
590 opsys=bsdi
591 OTHER_METHOD="mtu_kvm.o"
592 AC_CHECK_LIB(kvm, main)
593 ;;
paul49e3b3c2003-10-23 20:39:50 +0000594 *-irix6.5)
pauldc7a2bf2003-10-22 00:07:44 +0000595 opsys=irix
596 AC_DEFINE(IRIX_65,,IRIX 6.5)
597 ;;
paul7ea487b2003-03-17 02:05:07 +0000598esac
599
Paul Jakma62c9f502009-07-19 17:33:21 +0100600AC_SYS_LARGEFILE
601
paul7ea487b2003-03-17 02:05:07 +0000602dnl ---------------------
603dnl Integrated VTY option
604dnl ---------------------
605case "${enable_vtysh}" in
606 "yes") VTYSH="vtysh";
607 AC_DEFINE(VTYSH,,VTY shell)
gdtfc9d0742004-06-30 14:25:12 +0000608 AC_PATH_PROG(PERL, perl)
609dnl Vtysh uses libreadline, which looks for termcap functions at
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000610dnl configure time. We follow readlines search order.
gdtfc9d0742004-06-30 14:25:12 +0000611dnl The required procedures are in libtermcap on NetBSD, in
612dnl [TODO] on Linux, and in [TODO] on Solaris.
hassoc0689392005-08-25 12:00:58 +0000613 AC_CHECK_LIB(termcap, tputs, LIBREADLINE="$LIBREADLINE -ltermcap",
paula9694592005-08-25 14:50:05 +0000614 [AC_CHECK_LIB(tinfo, tputs, LIBREADLINE="$LIBREADLINE -ltinfo",
615 [AC_CHECK_LIB(curses, tputs, LIBREADLINE="$LIBREADLINE -lcurses",
616 [AC_CHECK_LIB(ncurses, tputs,
617 LIBREADLINE="$LIBREADLINE -lncurses")]
618 )]
619 )]
620 )
621 AC_CHECK_LIB(readline, main, LIBREADLINE="$LIBREADLINE -lreadline",,
622 "$LIBREADLINE")
paul7ea487b2003-03-17 02:05:07 +0000623 if test $ac_cv_lib_readline_main = no; then
gdtfc9d0742004-06-30 14:25:12 +0000624 AC_MSG_ERROR([vtysh needs libreadline but was not found and usable on your system.])
paul7ea487b2003-03-17 02:05:07 +0000625 fi
626 AC_CHECK_HEADER(readline/history.h)
627 if test $ac_cv_header_readline_history_h = no;then
628 AC_MSG_ERROR([readline is too old to have readline/history.h, please update to the latest readline library.])
629 fi
paula9694592005-08-25 14:50:05 +0000630 AC_CHECK_LIB(readline, rl_completion_matches,
631 LIBREADLINE="$LIBREADLINE",, "$LIBREADLINE")
paul3d3de8c2003-05-23 10:33:49 +0000632 if test $ac_cv_lib_readline_rl_completion_matches = no; then
633 AC_DEFINE(rl_completion_matches,completion_matches,Old readline)
634 fi
635 ;;
paul7ea487b2003-03-17 02:05:07 +0000636 "no" ) VTYSH="";;
637 * ) ;;
638esac
hassoc0689392005-08-25 12:00:58 +0000639AC_SUBST(LIBREADLINE)
David Wardf027d332012-04-30 11:36:15 -0400640AM_CONDITIONAL(VTYSH, test "x$VTYSH" = "xvtysh")
paul7ea487b2003-03-17 02:05:07 +0000641
642dnl ----------
643dnl PAM module
Denis Ovsienko61599282011-07-15 00:24:15 +0400644dnl
645dnl Quagga detects the PAM library it is built against by checking for a
646dnl functional pam_misc.h (Linux-PAM) or openpam.h (OpenPAM) header. pam_misc.h
647dnl is known to #include pam_appl.h, the standard header of a PAM library, and
648dnl openpam.h doesn't do that, although depends on the header too. Hence a
649dnl little assistance to AC_CHECK_HEADER is necessary for the proper detection
650dnl of OpenPAM.
paul7ea487b2003-03-17 02:05:07 +0000651dnl ----------
652if test "$with_libpam" = "yes"; then
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000653 AC_CHECK_HEADER([security/pam_misc.h],
654 [AC_DEFINE(HAVE_PAM_MISC_H,,Have pam_misc.h)
655 AC_DEFINE(PAM_CONV_FUNC,misc_conv,Have misc_conv)
656 pam_conv_func="misc_conv"
657 ],
658 [], QUAGGA_INCLUDES)
659 AC_CHECK_HEADER([security/openpam.h],
660 [AC_DEFINE(HAVE_OPENPAM_H,,Have openpam.h)
661 AC_DEFINE(PAM_CONV_FUNC,openpam_ttyconv,Have openpam_ttyconv)
662 pam_conv_func="openpam_ttyconv"
663 ],
Denis Ovsienko61599282011-07-15 00:24:15 +0400664 [], QUAGGA_INCLUDES[#include <security/pam_appl.h>])
paul24cd4352003-05-06 12:16:27 +0000665 if test -z "$ac_cv_header_security_pam_misc_h$ac_cv_header_security_openpam_h" ; then
666 AC_MSG_WARN([*** pam support will not be built ***])
667 with_libpam="no"
668 fi
669fi
670
671if test "$with_libpam" = "yes"; then
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000672dnl took this test from proftpds configure.in and suited to our needs
paul7ea487b2003-03-17 02:05:07 +0000673dnl -------------------------------------------------------------------------
674dnl
675dnl This next check looks funky due to a linker problem with some versions
676dnl of the PAM library. Prior to 0.72 release, the Linux PAM shared library
677dnl omitted requiring libdl linking information. PAM-0.72 or better ships
678dnl with RedHat 6.2 and Debian 2.2 or better.
679AC_CHECK_LIB(pam, pam_start,
paul24cd4352003-05-06 12:16:27 +0000680 [AC_CHECK_LIB(pam, $pam_conv_func,
paul7ea487b2003-03-17 02:05:07 +0000681 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
682 LIBPAM="-lpam"],
683 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
684 LIBPAM="-lpam -lpam_misc"]
685 )
686 ],
687
688 [AC_CHECK_LIB(pam, pam_end,
paul24cd4352003-05-06 12:16:27 +0000689 [AC_CHECK_LIB(pam, $pam_conv_func,
paula159ed92003-06-04 11:01:45 +0000690 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000691 LIBPAM="-lpam -ldl"],
paula159ed92003-06-04 11:01:45 +0000692 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000693 LIBPAM="-lpam -ldl -lpam_misc"]
694 )
695 ],AC_MSG_WARN([*** pam support will not be built ***]),
696 [-ldl])
697 ]
698)
699fi
700AC_SUBST(LIBPAM)
701
702dnl -------------------------------
703dnl Endian-ness check
704dnl -------------------------------
705AC_WORDS_BIGENDIAN
706
707dnl -------------------------------
708dnl check the size in byte of the C
709dnl -------------------------------
710dnl AC_CHECK_SIZEOF(char)
711dnl AC_CHECK_SIZEOF(int)
712dnl AC_CHECK_SIZEOF(short)
713dnl AC_CHECK_SIZEOF(long)
714
715dnl ----------------------------
716dnl check existance of functions
717dnl ----------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000718AC_FUNC_CHOWN
719AC_FUNC_FNMATCH
720AC_FUNC_FORK
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000721AC_FUNC_MEMCMP
722AC_FUNC_MKTIME
723AC_FUNC_STRFTIME
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000724AC_FUNC_STAT
725AC_FUNC_SELECT_ARGTYPES
726AC_FUNC_STRFTIME
Paul Jakmad46d2a22007-05-10 16:53:04 +0000727dnl Avoid AC_FUNC_STRNLEN because it pulls in AC_SYSTEM_EXTENSIONS which
728dnl can lead to strange side effects. So we just check for strnlen
729dnl directly, see below.
Paul Jakma2b5cb412007-05-10 17:05:16 +0000730dnl AC_FUNC_STRNLENdnl
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000731AC_FUNC_VPRINTF
732
733dnl -------------------------------
734dnl bgpd needs pow() and hence libm
735dnl -------------------------------
736TMPLIBS="$LIBS"
737AC_CHECK_HEADER([math.h],
738 [AC_CHECK_LIB([m], [pow],
739 [LIBM="-lm"
740 LIBS="$LIBS $LIBM"
741 AC_DEFINE(HAVE_LIBM,, Have libm)
742 AC_CHECK_FUNCS(pow,[],[LIBM=""])
743 ])
744])
745if test x"$LIBM" = x ; then
746 AC_MSG_WARN([Unable to find working pow function - bgpd may not link])
747fi
748LIBS="$TMPLIBS"
749AC_SUBST(LIBM)
750
751dnl ---------------
752dnl other functions
753dnl ---------------
754AC_CHECK_FUNCS([dup2 ftruncate getcwd gethostbyname getpagesize gettimeofday \
Paul Jakmad46d2a22007-05-10 16:53:04 +0000755 inet_ntoa inet_aton strnlen \
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000756 memchr memmove memset select socket \
757 strcasecmp strchr strcspn strdup strerror \
758 strncasecmp strndup strrchr strspn strstr \
759 strtol strtoul strlcat strlcpy \
760 daemon snprintf vsnprintf \
761 if_nametoindex if_indextoname getifaddrs \
762 uname fcntl])
763
paula159ed92003-06-04 11:01:45 +0000764AC_CHECK_FUNCS(setproctitle, ,
765 [AC_CHECK_LIB(util, setproctitle,
766 [LIBS="$LIBS -lutil"
767 AC_DEFINE(HAVE_SETPROCTITLE,, Have setproctitle)
768 ]
769 )
770 ]
771)
paul7ea487b2003-03-17 02:05:07 +0000772
773dnl ------------------------------------
774dnl Determine routing get and set method
775dnl ------------------------------------
776AC_MSG_CHECKING(zebra between kernel interface method)
777if test x"$opsys" = x"gnu-linux"; then
778 if test "${enable_netlink}" = "yes";then
779 AC_MSG_RESULT(netlink)
780 RT_METHOD=rt_netlink.o
781 AC_DEFINE(HAVE_NETLINK,,netlink)
782 netlink=yes
783 elif test "${enable_netlink}" = "no"; then
784 AC_MSG_RESULT(ioctl)
785 RT_METHOD=rt_ioctl.o
786 netlink=no
787 else
788 AC_MSG_RESULT(netlink)
789 RT_METHOD=rt_netlink.o
790 AC_DEFINE(HAVE_NETLINK,,netlink)
791 netlink=yes
792 fi
paul19877dd2004-05-11 10:49:35 +0000793elif test x"$opsys" = x"sol2-6";then
794 AC_MSG_RESULT(Route socket)
795 KERNEL_METHOD="kernel_socket.o"
796 RT_METHOD="rt_socket.o"
paulafd8a122005-03-12 06:36:10 +0000797elif test x"$opsys" = x"sol8";then
paul19877dd2004-05-11 10:49:35 +0000798 AC_MSG_RESULT(Route socket)
799 KERNEL_METHOD="kernel_socket.o"
800 RT_METHOD="rt_socket.o"
801elif test "$opsys" = "irix" ; then
802 AC_MSG_RESULT(Route socket)
803 KERNEL_METHOD="kernel_socket.o"
804 RT_METHOD="rt_socket.o"
paul7ea487b2003-03-17 02:05:07 +0000805else
paul19877dd2004-05-11 10:49:35 +0000806 AC_TRY_RUN([#include <errno.h>
paul7ea487b2003-03-17 02:05:07 +0000807#include <sys/types.h>
808#include <sys/socket.h>
809
810main ()
811{
812 int ac_sock;
813
814 ac_sock = socket (AF_ROUTE, SOCK_RAW, 0);
815 if (ac_sock < 0 && errno == EINVAL)
816 exit (1);
817 exit (0);
818}],
819 [KERNEL_METHOD=kernel_socket.o
820 RT_METHOD=rt_socket.o
821 AC_MSG_RESULT(socket)],
822 [RT_METHOD=rt_ioctl.o
823 AC_MSG_RESULT(ioctl)],
824 [KERNEL_METHOD=kernel_socket.o
825 RT_METHOD=rt_socket.o
826 AC_MSG_RESULT(socket)])
paul7ea487b2003-03-17 02:05:07 +0000827fi
828AC_SUBST(RT_METHOD)
829AC_SUBST(KERNEL_METHOD)
830AC_SUBST(OTHER_METHOD)
831
Paul Jakma238497f2007-08-07 18:49:18 +0000832dnl --------------------------
833dnl Determine IS-IS I/O method
834dnl --------------------------
David Lamparter745bf052010-02-02 21:49:35 +0100835AC_DEFINE(ISIS_METHOD_PFPACKET, 1, [ constant value for isis method pfpacket ])
836AC_DEFINE(ISIS_METHOD_DLPI, 2, [ constant value for isis method dlpi ])
837AC_DEFINE(ISIS_METHOD_BPF, 3, [ constant value for isis method bpf ])
Paul Jakma238497f2007-08-07 18:49:18 +0000838AC_CHECK_HEADER(net/bpf.h)
839AC_CHECK_HEADER(sys/dlpi.h)
840AC_MSG_CHECKING(zebra IS-IS I/O method)
841if test x"$opsys" = x"gnu-linux"; then
842 AC_MSG_RESULT(pfpacket)
David Lamparter745bf052010-02-02 21:49:35 +0100843 ISIS_METHOD_MACRO="ISIS_METHOD_PFPACKET"
Paul Jakma238497f2007-08-07 18:49:18 +0000844elif test x"$opsys" = x"sol2-6" -o x"$opsys" = x"sol8"; then
845 AC_MSG_RESULT(DLPI)
David Lamparter745bf052010-02-02 21:49:35 +0100846 ISIS_METHOD_MACRO="ISIS_METHOD_DLPI"
Paul Jakma238497f2007-08-07 18:49:18 +0000847else
848 if test $ac_cv_header_net_bpf_h = no; then
849 if test $ac_cv_header_sys_dlpi_h = no; then
850 AC_MSG_RESULT(none)
851 AC_MSG_WARN([*** IS-IS support will not be built ***])
852 ISISD=""
853 else
854 AC_MSG_RESULT(DLPI)
855 fi
David Lamparter745bf052010-02-02 21:49:35 +0100856 ISIS_METHOD_MACRO="ISIS_METHOD_DLPI"
Paul Jakma238497f2007-08-07 18:49:18 +0000857 else
858 AC_MSG_RESULT(BPF)
David Lamparter745bf052010-02-02 21:49:35 +0100859 ISIS_METHOD_MACRO="ISIS_METHOD_BPF"
Paul Jakma238497f2007-08-07 18:49:18 +0000860 fi
861fi
David Lamparter745bf052010-02-02 21:49:35 +0100862AC_DEFINE_UNQUOTED(ISIS_METHOD, $ISIS_METHOD_MACRO, [ selected method for isis, == one of the constants ])
Paul Jakma238497f2007-08-07 18:49:18 +0000863
ajsb99760a2005-01-04 16:24:43 +0000864dnl ------------------------------------
865dnl check for broken CMSG_FIRSTHDR macro
866dnl ------------------------------------
gdt6c200462005-01-04 17:02:48 +0000867AC_MSG_CHECKING(for broken CMSG_FIRSTHDR)
hasso5b087522005-04-03 23:46:37 +0000868AC_RUN_IFELSE([AC_LANG_SOURCE([[
ajsb99760a2005-01-04 16:24:43 +0000869#ifdef SUNOS_5
870#define _XPG4_2
871#define __EXTENSIONS__
872#endif
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000873#ifdef HAVE_STDLIB_H
874# include <stdlib.h>
875#endif
876#ifdef HAVE_SYS_TYPES_H
ajsb99760a2005-01-04 16:24:43 +0000877#include <sys/types.h>
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000878#endif
879#ifdef HAVE_SYS_SOCKET_H
ajsb99760a2005-01-04 16:24:43 +0000880#include <sys/socket.h>
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000881#endif
ajsb99760a2005-01-04 16:24:43 +0000882
883main()
884{
885 struct msghdr msg;
886 char buf[4];
887
888 msg.msg_control = buf;
889 msg.msg_controllen = 0;
890
891 if (CMSG_FIRSTHDR(&msg) != NULL)
892 exit(0);
893 exit (1);
hasso5b087522005-04-03 23:46:37 +0000894}]])],[AC_MSG_RESULT(yes - using workaround) AC_DEFINE(HAVE_BROKEN_CMSG_FIRSTHDR,,Broken CMSG_FIRSTHDR)],
hassod33e8d72005-04-03 13:07:21 +0000895[AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)])
ajsb99760a2005-01-04 16:24:43 +0000896
paul7ea487b2003-03-17 02:05:07 +0000897dnl ------------------------------
898dnl check kernel route read method
899dnl ------------------------------
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500900AC_CACHE_CHECK([route read method], [quagga_cv_rtread_method],
901[if test "x$netlink" = xyes; then
902 quagga_cv_rtread_method="netlink"
paul7ea487b2003-03-17 02:05:07 +0000903else
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500904for quagga_cv_rtread_method in /proc/net/route /dev/ip /dev/null;
paul7ea487b2003-03-17 02:05:07 +0000905do
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500906 test x`ls $quagga_cv_rtread_method 2>/dev/null` = x"$quagga_cv_rtread_method" && break
paul7ea487b2003-03-17 02:05:07 +0000907done
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500908case $quagga_cv_rtread_method in
909 "/proc/net/route") quagga_cv_rtread_method="proc";;
paul9c30ab62003-07-08 08:36:17 +0000910 "/dev/ip")
911 case "$host" in
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500912 *-freebsd*) quagga_cv_rtread_method="sysctl";;
913 *) quagga_cv_rtread_method="getmsg";;
paul9c30ab62003-07-08 08:36:17 +0000914 esac;;
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500915 *)
916 quagga_cv_rtread_method="sysctl";;
paul7ea487b2003-03-17 02:05:07 +0000917esac
918fi])
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500919RTREAD_METHOD=rtread_${quagga_cv_rtread_method}.o
paul7ea487b2003-03-17 02:05:07 +0000920AC_SUBST(RTREAD_METHOD)
921
922dnl -----------------------------
923dnl check interface lookup method
924dnl -----------------------------
paul19877dd2004-05-11 10:49:35 +0000925IOCTL_METHOD=ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000926AC_MSG_CHECKING(interface looking up method)
927if test "$netlink" = yes; then
928 AC_MSG_RESULT(netlink)
929 IF_METHOD=if_netlink.o
paul19877dd2004-05-11 10:49:35 +0000930elif test "$opsys" = "sol2-6";then
931 AC_MSG_RESULT(Solaris GIF)
932 IF_METHOD=if_ioctl.o
paulafd8a122005-03-12 06:36:10 +0000933elif test "$opsys" = "sol8";then
paul19877dd2004-05-11 10:49:35 +0000934 AC_MSG_RESULT(Solaris GLIF)
935 IF_METHOD=if_ioctl_solaris.o
936 IOCTL_METHOD=ioctl_solaris.o
937elif test "$opsys" = "irix" ; then
938 AC_MSG_RESULT(IRIX)
939 IF_METHOD=if_ioctl.o
940elif test "$opsys" = "openbsd";then
941 AC_MSG_RESULT(openbsd)
942 IF_METHOD=if_ioctl.o
943elif grep NET_RT_IFLIST /usr/include/sys/socket.h >/dev/null 2>&1; then
944 AC_MSG_RESULT(sysctl)
paul7ea487b2003-03-17 02:05:07 +0000945 IF_METHOD=if_sysctl.o
946 AC_DEFINE(HAVE_NET_RT_IFLIST,,NET_RT_IFLIST)
paul19877dd2004-05-11 10:49:35 +0000947else
paul7ea487b2003-03-17 02:05:07 +0000948 AC_MSG_RESULT(ioctl)
949 IF_METHOD=if_ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000950fi
951AC_SUBST(IF_METHOD)
paul19877dd2004-05-11 10:49:35 +0000952AC_SUBST(IOCTL_METHOD)
paul7ea487b2003-03-17 02:05:07 +0000953
paul42c98192005-05-07 02:22:51 +0000954dnl ---------------------------------------------------------------
955dnl figure out how to specify an interface in multicast sockets API
956dnl ---------------------------------------------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000957AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [], [], QUAGGA_INCLUDES)
paul42c98192005-05-07 02:22:51 +0000958
959AC_MSG_CHECKING([for BSD struct ip_mreq hack])
960AC_TRY_COMPILE([#ifdef HAVE_SYS_PARAM_H
961#include <sys/param.h>
Brad Smith1b54f792012-08-09 00:44:28 +0000962#endif],[#if (defined(__FreeBSD__) && ((__FreeBSD_version >= 500022 && __FreeBSD_version < 700000) || (__FreeBSD_version < 500000 && __FreeBSD_version >= 440000))) || (defined(__NetBSD__) && defined(__NetBSD_Version__) && __NetBSD_Version__ >= 106010000) || defined(__OpenBSD__)
paul42c98192005-05-07 02:22:51 +0000963 return (0);
964#else
965 #error No support for BSD struct ip_mreq hack detected
966#endif],[AC_MSG_RESULT(yes)
967AC_DEFINE(HAVE_BSD_STRUCT_IP_MREQ_HACK,,[Can pass ifindex in struct ip_mreq])],
968AC_MSG_RESULT(no))
969
Dmitrij Tejblum10d04cd2011-08-22 11:39:35 +0400970AC_MSG_CHECKING([for RFC3678 protocol-independed API])
971AC_TRY_COMPILE([
972#include <sys/types.h>
973#include <netinet/in.h>
974], [struct group_req gr; int sock; setsockopt(sock, IPPROTO_IP, MCAST_JOIN_GROUP, (void*)&gr, sizeof(gr));
975], [AC_MSG_RESULT(yes)
976AC_DEFINE(HAVE_RFC3678,1,[Have RFC3678 protocol-independed API])],
977AC_MSG_RESULT(no))
978
Andrew J. Schorrc543a172008-01-10 15:24:32 +0000979dnl ---------------------------------------------------------------
980dnl figure out how to check link-state
981dnl ---------------------------------------------------------------
Andrew J. Schorr6418bed2008-01-11 16:33:59 +0000982AC_CHECK_HEADER([net/if.h],
983 [AC_CHECK_HEADER( [net/if_media.h],
984 [m4_define([LINK_DETECT_INCLUDES],
985 QUAGGA_INCLUDES
986 [#include <net/if_media.h>
987 ])
988 AC_CHECK_MEMBERS( [struct ifmediareq.ifm_status],
989 AC_DEFINE(HAVE_BSD_LINK_DETECT,,[BSD link-detect]),
990 [], LINK_DETECT_INCLUDES)],
991 [],
992 QUAGGA_INCLUDES)],
993 [], QUAGGA_INCLUDES )
Andrew J. Schorrc543a172008-01-10 15:24:32 +0000994
Paul Jakma0df7c912008-07-21 21:02:49 +0000995dnl ------------------------
996dnl TCP_MD5SIG socket option
997dnl ------------------------
998
999AC_CHECK_HEADER([netinet/tcp.h],
1000 [m4_define([MD5_INCLUDES],
1001 QUAGGA_INCLUDES
1002 [#include <netinet/tcp.h>
1003 ])
1004 AC_CHECK_DECLS([TCP_MD5SIG], [], [], MD5_INCLUDES)],
1005 [],
1006 QUAGGA_INCLUDES)
1007if test $ac_cv_have_decl_TCP_MD5SIG = no; then
1008 AC_CHECK_HEADER([linux/tcp.h],
1009 [m4_define([MD5_INCLUDES],
1010 QUAGGA_INCLUDES
1011 [#include <linux/tcp.h>
1012 ])
1013 AC_CHECK_DECLS([TCP_MD5SIG], [], [], MD5_INCLUDES)])
1014fi
1015
paul7ea487b2003-03-17 02:05:07 +00001016dnl -----------------------
1017dnl check proc file system.
1018dnl -----------------------
Stephen Hemmingercadfb2c2008-08-16 18:03:44 +01001019if test "$netlink" != yes; then
1020 if test -r /proc/net/dev; then
1021 AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev)
1022 IF_PROC=if_proc.o
1023 fi
1024 if test -r /proc/net/if_inet6; then
1025 AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6)
1026 IF_PROC=if_proc.o
1027 fi
paul7ea487b2003-03-17 02:05:07 +00001028fi
1029AC_SUBST(IF_PROC)
1030
1031dnl -----------------------------
1032dnl check ipforward detect method
1033dnl -----------------------------
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001034AC_CACHE_CHECK([ipforward method], [quagga_cv_ipforward_method],
David Lamparterca9f3422009-09-16 02:11:00 +02001035[if test x$cross_compiling = xyes; then
1036 if test x"$opsys" = x"gnu-linux"; then
1037 quagga_cv_ipforward_method=/proc/net/snmp
1038 else
1039 quagga_cv_ipforward_method=/dev/ip
1040 fi
1041else
1042 for quagga_cv_ipforward_method in /proc/net/snmp /dev/ip /dev/null;
1043 do
1044 test x`ls $quagga_cv_ipforward_method 2>/dev/null` = x"$quagga_cv_ipforward_method" && break
1045 done
1046fi
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001047case $quagga_cv_ipforward_method in
1048 "/proc/net/snmp") quagga_cv_ipforward_method="proc";;
paul7ea487b2003-03-17 02:05:07 +00001049 "/dev/ip")
1050 case "$host" in
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001051 *-nec-sysv4*) quagga_cv_ipforward_method="ews";;
1052 *-freebsd*) quagga_cv_ipforward_method="sysctl";;
1053 *) quagga_cv_ipforward_method="solaris";;
paul7ea487b2003-03-17 02:05:07 +00001054 esac;;
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001055 *) quagga_cv_ipforward_method="sysctl";;
paul7ea487b2003-03-17 02:05:07 +00001056esac])
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001057IPFORWARD=ipforward_${quagga_cv_ipforward_method}.o
paul7ea487b2003-03-17 02:05:07 +00001058AC_SUBST(IPFORWARD)
1059
1060AC_CHECK_FUNCS(getaddrinfo, [have_getaddrinfo=yes], [have_getaddrinfo=no])
1061
1062dnl ----------
1063dnl IPv6 check
1064dnl ----------
1065AC_MSG_CHECKING(whether does this OS have IPv6 stack)
1066if test "${enable_ipv6}" = "no"; then
1067 AC_MSG_RESULT(disabled)
1068else
1069dnl ----------
1070dnl INRIA IPv6
1071dnl ----------
paula159ed92003-06-04 11:01:45 +00001072 if grep IPV6_INRIA_VERSION /usr/include/netinet/in.h >/dev/null 2>&1; then
1073 zebra_cv_ipv6=yes
1074 AC_DEFINE(HAVE_IPV6,1,INRIA IPv6)
1075 AC_DEFINE(INRIA_IPV6,1,INRIA IPv6)
1076 RIPNGD="ripngd"
1077 OSPF6D="ospf6d"
1078 LIB_IPV6=""
1079 AC_MSG_RESULT(INRIA IPv6)
paul7ea487b2003-03-17 02:05:07 +00001080dnl ---------
1081dnl KAME IPv6
1082dnl ---------
paula159ed92003-06-04 11:01:45 +00001083 elif grep WIDE /usr/include/netinet6/in6.h >/dev/null 2>&1; then
1084 zebra_cv_ipv6=yes
1085 AC_DEFINE(HAVE_IPV6,1,KAME IPv6)
1086 AC_DEFINE(KAME,1,KAME IPv6)
1087 RIPNGD="ripngd"
1088 OSPF6D="ospf6d"
1089 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
paul7ea487b2003-03-17 02:05:07 +00001090 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +00001091 fi
1092 AC_MSG_RESULT(KAME)
hasso71c0fb52003-05-25 20:18:13 +00001093dnl -------------------------
1094dnl MUSICA IPv6
1095dnl default host check
1096dnl It is not used by Kheops
1097dnl -------------------------
paula159ed92003-06-04 11:01:45 +00001098 elif grep MUSICA /usr/include6/netinet6/in6.h >/dev/null 2>&1; then
1099 zebra_cv_ipv6=yes
1100 AC_DEFINE(HAVE_IPV6,1,Musicia IPv6)
1101 AC_DEFINE(MUSICA,1,Musica IPv6 stack)
1102 AC_DEFINE(KAME,1,KAME IPv6 stack)
1103 RIPNGD="ripngd"
1104 OSPF6D="ospf6d"
1105 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
hasso71c0fb52003-05-25 20:18:13 +00001106 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +00001107 fi
1108 AC_MSG_RESULT(MUSICA)
paul7ea487b2003-03-17 02:05:07 +00001109dnl ---------
1110dnl NRL check
1111dnl ---------
paula159ed92003-06-04 11:01:45 +00001112 elif grep NRL /usr/include/netinet6/in6.h >/dev/null 2>&1; then
1113 zebra_cv_ipv6=yes
1114 AC_DEFINE(HAVE_IPV6,1,NRL IPv6)
1115 AC_DEFINE(NRL,1,NRL)
1116 RIPNGD="ripngd"
1117 OSPF6D="ospf6d"
1118 if test x"$opsys" = x"bsdi";then
paul7ea487b2003-03-17 02:05:07 +00001119 AC_DEFINE(BSDI_NRL,,BSDI)
1120 AC_MSG_RESULT(BSDI_NRL)
paula159ed92003-06-04 11:01:45 +00001121 else
paul7ea487b2003-03-17 02:05:07 +00001122 AC_MSG_RESULT(NRL)
paula159ed92003-06-04 11:01:45 +00001123 fi
paul19877dd2004-05-11 10:49:35 +00001124dnl ------------------------------------
1125dnl Solaris 9, 10 and potentially higher
1126dnl ------------------------------------
paulafd8a122005-03-12 06:36:10 +00001127 elif test x"$opsys" = x"sol8"; then
paul19877dd2004-05-11 10:49:35 +00001128 zebra_cv_ipv6=yes;
1129 AC_DEFINE(HAVE_IPV6, 1, IPv6)
1130 AC_DEFINE(SOLARIS_IPV6, 1, Solaris IPv6)
1131 RIPNGD="ripngd"
1132 OSPF6D="ospf6d"
1133 AC_MSG_RESULT(Solaris IPv6)
paul7ea487b2003-03-17 02:05:07 +00001134dnl ----------
1135dnl Linux IPv6
1136dnl ----------
paula159ed92003-06-04 11:01:45 +00001137 elif test "${enable_ipv6}" = "yes"; then
1138 AC_EGREP_CPP(yes, [
1139 #include <linux/version.h>
1140 /* 2.1.128 or later */
1141 #if LINUX_VERSION_CODE >= 0x020180
1142 yes
1143 #endif],
1144 [zebra_cv_ipv6=yes
1145 zebra_cv_linux_ipv6=yes
1146 AC_MSG_RESULT(Linux IPv6)])
1147 else
1148 if test x`ls /proc/net/ipv6_route 2>/dev/null` = x"/proc/net/ipv6_route"
1149 then
paul7ea487b2003-03-17 02:05:07 +00001150 zebra_cv_ipv6=yes
1151 zebra_cv_linux_ipv6=yes
1152 AC_MSG_RESULT(Linux IPv6)
paula159ed92003-06-04 11:01:45 +00001153 fi
1154 fi
paul7ea487b2003-03-17 02:05:07 +00001155
paula159ed92003-06-04 11:01:45 +00001156 if test "$zebra_cv_linux_ipv6" = "yes";then
hasso850d39f2005-06-30 13:52:20 +00001157 AC_MSG_CHECKING(whether libc has IPv6 support)
1158 AC_TRY_LINK([#include <netinet/in.h>
1159 ],[ int a; a = (int) in6addr_any.s6_addr[0]; if (a != 12345) return a; ],
1160 [AC_MSG_RESULT(yes)
1161 zebra_cv_ipv6=yes
1162 zebra_cv_linux_ipv6=yes],
1163 [AC_MSG_RESULT(no)
1164 zebra_cv_ipv6=no
1165 zebra_cv_linux_ipv6=no])
1166 fi
1167
1168 if test "$zebra_cv_linux_ipv6" = "yes";then
paula159ed92003-06-04 11:01:45 +00001169 AC_MSG_CHECKING(for GNU libc >= 2.1)
1170 AC_DEFINE(HAVE_IPV6,1,Linux IPv6)
1171 AC_EGREP_CPP(yes, [
paul7ea487b2003-03-17 02:05:07 +00001172#include <features.h>
1173#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
1174 yes
paula159ed92003-06-04 11:01:45 +00001175#endif],
1176 [glibc=yes
1177 AC_DEFINE(LINUX_IPV6,1,Linux IPv6 stack)
1178 AC_MSG_RESULT(yes)],
1179 AC_MSG_RESULT(no)
1180 )
1181 RIPNGD="ripngd"
1182 OSPF6D="ospf6d"
1183 if test "$glibc" != "yes"; then
paul7ea487b2003-03-17 02:05:07 +00001184 INCLUDES="-I/usr/inet6/include"
1185 if test x`ls /usr/inet6/lib/libinet6.a 2>/dev/null` != x;then
1186 LIB_IPV6="-L/usr/inet6/lib -linet6"
1187 fi
paula159ed92003-06-04 11:01:45 +00001188 fi
1189 fi
paul7ea487b2003-03-17 02:05:07 +00001190
1191dnl -----------------------
1192dnl Set IPv6 related values
1193dnl -----------------------
paula159ed92003-06-04 11:01:45 +00001194 LIBS="$LIB_IPV6 $LIBS"
1195 AC_SUBST(LIB_IPV6)
paul7ea487b2003-03-17 02:05:07 +00001196
paula159ed92003-06-04 11:01:45 +00001197 if test x"$RIPNGD" = x""; then
1198 AC_MSG_RESULT(IPv4 only)
1199 fi
paul7ea487b2003-03-17 02:05:07 +00001200fi
1201
gdtfa3232e2003-12-03 17:52:30 +00001202dnl ------------------
1203dnl IPv6 header checks
1204dnl ------------------
1205if test "x${zebra_cv_ipv6}" = "xyes"; then
1206AC_CHECK_HEADERS([netinet6/in6.h netinet/in6_var.h netinet/icmp6.h \
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001207 netinet6/in6_var.h netinet6/nd6.h], [], [],
1208 QUAGGA_INCLUDES)
gdtfa3232e2003-12-03 17:52:30 +00001209fi
1210
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001211m4_define([QUAGGA_INCLUDES],dnl
1212QUAGGA_INCLUDES
1213[#if HAVE_NETINET6_IN6_H
1214#include <netinet6/in6.h>
1215#endif
1216#if HAVE_NETINET_IN6_VAR_H
1217#include <netinet/in6_var.h>
1218#endif
1219#if HAVE_NETINET_ICMP6_H
1220# include <netinet/icmp6.h>
1221#endif
1222#if HAVE_NETINET6_IN6_VAR_H
1223# include <netinet6/in6_var.h>
1224#endif
1225#if HAVE_NETINET6_ND6_H
Hasso Tepperfbf24542007-06-25 19:30:59 +00001226# include <netinet6/nd6.h>
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001227#endif
1228])dnl
1229
Joakim Tjernlundcbcd9bf2009-02-16 09:40:39 +01001230dnl disable doc check
1231if test "${enable_doc}" = "no";then
1232 DOC=""
1233else
1234 DOC="doc"
1235fi
1236
David Lampartere2b15802012-11-03 09:14:29 -07001237dnl can't use TESTS as name, that's special with automake
1238if test "${enable_tests}" = "no";then
1239 BUILD_TESTS=""
1240else
1241 BUILD_TESTS="tests"
1242fi
1243
paul7ea487b2003-03-17 02:05:07 +00001244dnl --------------------
1245dnl Daemon disable check
1246dnl --------------------
1247if test "${enable_zebra}" = "no";then
1248 ZEBRA=""
1249else
1250 ZEBRA="zebra"
1251fi
David Wardf027d332012-04-30 11:36:15 -04001252AM_CONDITIONAL(ZEBRA, test "x$ZEBRA" = "xzebra")
paul7ea487b2003-03-17 02:05:07 +00001253
1254if test "${enable_bgpd}" = "no";then
1255 BGPD=""
1256else
1257 BGPD="bgpd"
1258fi
David Wardf027d332012-04-30 11:36:15 -04001259AM_CONDITIONAL(BGPD, test "x$BGPD" = "xbgpd")
paul7ea487b2003-03-17 02:05:07 +00001260
1261if test "${enable_ripd}" = "no";then
1262 RIPD=""
1263else
1264 RIPD="ripd"
1265fi
David Wardf027d332012-04-30 11:36:15 -04001266AM_CONDITIONAL(RIPD, test "x$RIPD" = "xripd")
paul7ea487b2003-03-17 02:05:07 +00001267
1268if test "${enable_ospfd}" = "no";then
1269 OSPFD=""
1270else
1271 OSPFD="ospfd"
1272fi
David Wardf027d332012-04-30 11:36:15 -04001273AM_CONDITIONAL(OSPFD, test "x$OSPFD" = "xospfd")
paul7ea487b2003-03-17 02:05:07 +00001274
Paul Jakma57345092011-12-25 17:52:09 +01001275if test "${enable_babeld}" = "no";then
1276 BABELD=""
1277else
1278 BABELD="babeld"
1279fi
David Wardf027d332012-04-30 11:36:15 -04001280AM_CONDITIONAL(BABELD, test "x$BABELD" = "xbabeld")
Paul Jakma57345092011-12-25 17:52:09 +01001281
ajsd0199432004-12-22 14:03:52 +00001282if test "${enable_watchquagga}" = "no";then
1283 WATCHQUAGGA=""
1284else
1285 WATCHQUAGGA="watchquagga"
1286fi
David Wardf027d332012-04-30 11:36:15 -04001287AM_CONDITIONAL(WATCHQUAGGA, test "x$WATCHQUAGGA" = "xwatchquagga")
ajsd0199432004-12-22 14:03:52 +00001288
paul1ef74ef2003-03-21 15:16:05 +00001289OSPFCLIENT=""
Greg Troxel0d51c7e2011-03-24 10:19:43 -04001290if test "${enable_opaque_lsa}" != "no"; then
paul1ef74ef2003-03-21 15:16:05 +00001291 if test "${enable_ospfapi}" != "no";then
paul9a569842003-03-28 01:45:13 +00001292 AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI)
paul1ef74ef2003-03-21 15:16:05 +00001293
1294 if test "${enable_ospfclient}" != "no";then
1295 OSPFCLIENT="ospfclient"
1296 fi
1297 fi
1298
paul7ea487b2003-03-17 02:05:07 +00001299fi
David Wardf027d332012-04-30 11:36:15 -04001300AM_CONDITIONAL(OSPFCLIENT, test "x$OSPFCLIENT" = "xospfclient")
paul7ea487b2003-03-17 02:05:07 +00001301
1302case "${enable_ripngd}" in
1303 "yes") RIPNGD="ripngd";;
1304 "no" ) RIPNGD="";;
1305 * ) ;;
1306esac
David Wardf027d332012-04-30 11:36:15 -04001307AM_CONDITIONAL(RIPNGD, test "x$RIPNGD" = "xripngd")
paul7ea487b2003-03-17 02:05:07 +00001308
1309case "${enable_ospf6d}" in
1310 "yes") OSPF6D="ospf6d";;
1311 "no" ) OSPF6D="";;
1312 * ) ;;
1313esac
David Wardf027d332012-04-30 11:36:15 -04001314AM_CONDITIONAL(OSPF6D, test "x$OSPF6D" = "xospf6d")
paul7ea487b2003-03-17 02:05:07 +00001315
jardin9e867fe2003-12-23 08:56:18 +00001316case "${enable_isisd}" in
1317 "yes") ISISD="isisd";;
1318 "no" ) ISISD="";;
hassoae399ab2004-09-13 20:22:18 +00001319 * ) ;;
jardin9e867fe2003-12-23 08:56:18 +00001320esac
David Wardf027d332012-04-30 11:36:15 -04001321AM_CONDITIONAL(ISISD, test "x$ISISD" = "xisisd")
jardin9e867fe2003-12-23 08:56:18 +00001322
Greg Troxel97cee872007-08-02 13:36:56 +00001323# XXX Perhaps auto-enable on Solaris, but that's messy for cross builds.
1324case "${enable_solaris}" in
1325 "yes") SOLARIS="solaris";;
1326 "no" ) SOLARIS="";;
1327 * ) ;;
1328esac
1329
paul7ea487b2003-03-17 02:05:07 +00001330if test "${enable_bgp_announce}" = "no";then
Paul Jakma750e8142008-07-22 21:11:48 +00001331 AC_DEFINE(DISABLE_BGP_ANNOUNCE,1,Disable BGP installation to zebra)
1332else
1333 AC_DEFINE(DISABLE_BGP_ANNOUNCE,0,Disable BGP installation to zebra)
paul7ea487b2003-03-17 02:05:07 +00001334fi
1335
Joakim Tjernlundcbcd9bf2009-02-16 09:40:39 +01001336AC_SUBST(DOC)
David Lampartere2b15802012-11-03 09:14:29 -07001337AC_SUBST(BUILD_TESTS)
paul7ea487b2003-03-17 02:05:07 +00001338AC_SUBST(ZEBRA)
1339AC_SUBST(BGPD)
1340AC_SUBST(RIPD)
1341AC_SUBST(RIPNGD)
1342AC_SUBST(OSPFD)
1343AC_SUBST(OSPF6D)
Paul Jakma57345092011-12-25 17:52:09 +01001344AC_SUBST(BABELD)
ajsd0199432004-12-22 14:03:52 +00001345AC_SUBST(WATCHQUAGGA)
jardin9e867fe2003-12-23 08:56:18 +00001346AC_SUBST(ISISD)
Greg Troxel97cee872007-08-02 13:36:56 +00001347AC_SUBST(SOLARIS)
paul7ea487b2003-03-17 02:05:07 +00001348AC_SUBST(VTYSH)
1349AC_SUBST(INCLUDES)
1350AC_SUBST(CURSES)
1351AC_SUBST(OSPFCLIENT)
paul1ef74ef2003-03-21 15:16:05 +00001352AC_SUBST(OSPFAPI)
paul7ea487b2003-03-17 02:05:07 +00001353AC_CHECK_LIB(c, inet_ntop, [AC_DEFINE(HAVE_INET_NTOP,,inet_ntop)])
1354AC_CHECK_LIB(c, inet_pton, [AC_DEFINE(HAVE_INET_PTON,,inet_pton)])
1355AC_CHECK_LIB(crypt, crypt)
1356AC_CHECK_LIB(resolv, res_init)
paul7ea487b2003-03-17 02:05:07 +00001357
1358dnl ---------------------------------------------------
1359dnl BSD/OS 4.1 define inet_XtoY function as __inet_XtoY
1360dnl ---------------------------------------------------
paula159ed92003-06-04 11:01:45 +00001361AC_CHECK_FUNC(__inet_ntop, AC_DEFINE(HAVE_INET_NTOP,,__inet_ntop))
1362AC_CHECK_FUNC(__inet_pton, AC_DEFINE(HAVE_INET_PTON,,__inet_pton))
1363AC_CHECK_FUNC(__inet_aton, AC_DEFINE(HAVE_INET_ATON,,__inet_aton))
paul7ea487b2003-03-17 02:05:07 +00001364
1365dnl ---------------------------
Jeremy Jackson25f45882009-01-12 16:06:12 -05001366dnl check system has PCRE regexp
1367dnl ---------------------------
1368if test "x$enable_pcreposix" = "xyes"; then
1369 AC_CHECK_LIB(pcreposix, pcreposix_regexec, ,[enable_pcreposix=no
1370 AC_MSG_WARN([*** falling back to other regex library ***]) ])
1371fi
1372
1373if test "x$enable_pcreposix" != "xyes"; then
1374dnl ---------------------------
paul7ea487b2003-03-17 02:05:07 +00001375dnl check system has GNU regexp
1376dnl ---------------------------
Jeremy Jackson25f45882009-01-12 16:06:12 -05001377AC_MSG_CHECKING(whether system has GNU regex)
paul7ea487b2003-03-17 02:05:07 +00001378AC_CHECK_LIB(c, regexec,
1379[AC_DEFINE(HAVE_GNU_REGEX,,GNU regexp library)
1380 LIB_REGEX=""],
1381[LIB_REGEX="regex.o"])
Jeremy Jackson25f45882009-01-12 16:06:12 -05001382fi
1383AC_SUBST(HAVE_LIBPCREPOSIX)
paul7ea487b2003-03-17 02:05:07 +00001384AC_SUBST(LIB_REGEX)
1385
1386dnl ------------------
paulb1fc9ac2006-01-31 10:09:27 +00001387dnl check Net-SNMP library
paul7ea487b2003-03-17 02:05:07 +00001388dnl ------------------
Vincent Bernatd6be5fb2012-05-24 09:44:43 +02001389if test "${enable_snmp}" != ""; then
Vincent Bernat08d7f652012-05-22 22:29:17 +02001390 AC_PATH_TOOL([NETSNMP_CONFIG], [net-snmp-config], [no])
1391 if test x"$NETSNMP_CONFIG" = x"no"; then
1392 AC_MSG_ERROR([--enable-snmp given but unable to find net-snmp-config])
1393 fi
1394 LIBS="$LIBS `${NETSNMP_CONFIG} --agent-libs`"
1395 CFLAGS="`${NETSNMP_CONFIG} --base-cflags` $CFLAGS"
1396 AC_MSG_CHECKING([whether we can link to Net-SNMP])
1397 AC_LINK_IFELSE([AC_LANG_PROGRAM([
1398int main(void);
1399],
1400[
1401{
1402 return 0;
1403}
1404])],[AC_MSG_RESULT(yes)],[
1405 AC_MSG_RESULT(no)
1406 AC_MSG_ERROR([--enable-snmp given but not usable])])
1407 AC_DEFINE(HAVE_SNMP,,SNMP)
Vincent Bernatd6be5fb2012-05-24 09:44:43 +02001408 case "${enable_snmp}" in
1409 yes)
1410 SNMP_METHOD=agentx
1411 ;;
1412 smux|agentx)
1413 SNMP_METHOD="${enable_snmp}"
1414 ;;
1415 *)
1416 AC_MSG_ERROR([--enable-snmp given with an unknown method (${enable_snmp}). Use smux or agentx])
1417 ;;
1418 esac
1419 AH_TEMPLATE([SNMP_SMUX], [Use SNMP SMUX to interface with snmpd])
1420 AH_TEMPLATE([SNMP_AGENTX], [Use SNMP AgentX to interface with snmpd])
1421 AC_DEFINE_UNQUOTED(AS_TR_CPP(SNMP_${SNMP_METHOD}),,SNMP method to interface with snmpd)
paul7ea487b2003-03-17 02:05:07 +00001422fi
1423
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001424dnl ---------------------------
1425dnl sockaddr and netinet checks
1426dnl ---------------------------
1427AC_CHECK_TYPES([struct sockaddr, struct sockaddr_in,
1428 struct sockaddr_in6, struct sockaddr_un, struct sockaddr_dl,
1429 socklen_t,
1430 struct ifaliasreq, struct if6_aliasreq, struct in6_aliasreq,
1431 struct nd_opt_adv_interval, struct rt_addrinfo,
Paul Jakma11770e12007-06-22 16:14:42 +00001432 struct nd_opt_homeagent_info, struct nd_opt_adv_interval],
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001433 [], [], QUAGGA_INCLUDES)
paul7ea487b2003-03-17 02:05:07 +00001434
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001435AC_CHECK_MEMBERS([struct sockaddr.sa_len,
1436 struct sockaddr_in.sin_len, struct sockaddr_un.sun_len,
1437 struct sockaddr_in6.sin6_scope_id,
1438 struct if6_aliasreq.ifra_lifetime,
1439 struct nd_opt_adv_interval.nd_opt_ai_type],
1440 [], [], QUAGGA_INCLUDES)
hasso71c0fb52003-05-25 20:18:13 +00001441
paul7ea487b2003-03-17 02:05:07 +00001442dnl ---------------------------
Paul Jakma11770e12007-06-22 16:14:42 +00001443dnl IRDP/pktinfo/icmphdr checks
paul7ea487b2003-03-17 02:05:07 +00001444dnl ---------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001445AC_CHECK_TYPES([struct in_pktinfo],
Paul Jakma11770e12007-06-22 16:14:42 +00001446 [AC_CHECK_TYPES([struct icmphdr],
1447 [if test "${enable_irdp}" != "no"; then
1448 AC_DEFINE(HAVE_IRDP,, IRDP)
1449 fi],
1450 [if test "${enable_irdp}" = "yes"; then
1451 AC_MSG_ERROR(['IRDP requires in_pktinfo at the moment!'])
1452 fi], [QUAGGA_INCLUDES])],
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001453 [if test "${enable_irdp}" = "yes"; then
1454 AC_MSG_ERROR(['IRDP requires in_pktinfo at the moment!'])
1455 fi], [QUAGGA_INCLUDES])
vincent29c4c9b2005-03-25 13:05:47 +00001456
paul7ea487b2003-03-17 02:05:07 +00001457dnl --------------------------------------
1458dnl checking for getrusage struct and call
1459dnl --------------------------------------
1460AC_MSG_CHECKING(whether getrusage is available)
1461AC_TRY_COMPILE([#include <sys/resource.h>
1462],[struct rusage ac_x; getrusage (RUSAGE_SELF, &ac_x);],
1463[AC_MSG_RESULT(yes)
1464 AC_DEFINE(HAVE_RUSAGE,,rusage)],
1465 AC_MSG_RESULT(no))
1466
Stephen Hemmingerc4376c92009-05-28 15:29:10 -07001467dnl --------------------------------------
1468dnl checking for clock_time monotonic struct and call
1469dnl --------------------------------------
Paul Jakma6511cab2009-06-18 17:38:01 +01001470AC_CHECK_DECL(CLOCK_MONOTONIC,
1471 [AC_CHECK_LIB(rt, clock_gettime, [LIBS="$LIBS -lrt"])
Dmitry Tejblum9964fcf2009-11-05 16:50:36 +03001472 AC_DEFINE(HAVE_CLOCK_MONOTONIC,, Have monotonic clock)
Paul Jakma6511cab2009-06-18 17:38:01 +01001473], [AC_MSG_RESULT(no)], [QUAGGA_INCLUDES])
Stephen Hemmingerc4376c92009-05-28 15:29:10 -07001474
pauledd7c242003-06-04 13:59:38 +00001475dnl -------------------
1476dnl capabilities checks
1477dnl -------------------
hasso41d3fc92004-04-06 11:59:00 +00001478if test "${enable_capabilities}" != "no"; then
1479 AC_MSG_CHECKING(whether prctl PR_SET_KEEPCAPS is available)
1480 AC_TRY_COMPILE([#include <sys/prctl.h>],[prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);],
1481 [AC_MSG_RESULT(yes)
1482 AC_DEFINE(HAVE_PR_SET_KEEPCAPS,,prctl)
1483 quagga_ac_keepcaps="yes"],
1484 AC_MSG_RESULT(no)
pauledd7c242003-06-04 13:59:38 +00001485 )
hasso41d3fc92004-04-06 11:59:00 +00001486 if test x"${quagga_ac_keepcaps}" = x"yes"; then
1487 AC_CHECK_HEADERS(sys/capability.h)
1488 fi
1489 if test x"${ac_cv_header_sys_capability_h}" = x"yes"; then
1490 AC_CHECK_LIB(cap, cap_init,
1491 [AC_DEFINE(HAVE_LCAPS,1,Capabilities)
1492 LIBCAP="-lcap"
paulceacedb2005-09-29 14:39:32 +00001493 quagga_ac_lcaps="yes"]
hasso41d3fc92004-04-06 11:59:00 +00001494 )
paulceacedb2005-09-29 14:39:32 +00001495 else
1496 AC_CHECK_HEADERS(priv.h,
1497 [AC_MSG_CHECKING(Solaris style privileges are available)
1498 AC_TRY_COMPILE([#include <priv.h>],[getpflags(PRIV_AWARE);],
1499 [AC_MSG_RESULT(yes)
1500 AC_DEFINE(HAVE_SOLARIS_CAPABILITIES,1,getpflags)
1501 quagga_ac_scaps="yes"],
1502 AC_MSG_RESULT(no)
1503 )
1504 ]
1505 )
1506 fi
1507 if test x"${quagga_ac_scaps}" = x"yes" \
1508 -o x"${quagga_ac_lcaps}" = x"yes"; then
1509 AC_DEFINE(HAVE_CAPABILITIES,1,capabilities)
hasso41d3fc92004-04-06 11:59:00 +00001510 fi
pauledd7c242003-06-04 13:59:38 +00001511fi
1512AC_SUBST(LIBCAP)
1513
paulfb2d1502003-06-04 09:40:54 +00001514dnl ---------------------------
1515dnl check for glibc 'backtrace'
1516dnl ---------------------------
Dmitrij Tejblumeda35292011-09-15 20:00:33 +04001517AC_CHECK_HEADER([execinfo.h],
1518 [AC_CHECK_FUNC([backtrace],
1519 [AC_DEFINE(HAVE_GLIBC_BACKTRACE,,[Glibc backtrace])
1520 AC_DEFINE(HAVE_STACK_TRACE,,[Stack symbol decoding])
1521 ])
1522])
paulfb2d1502003-06-04 09:40:54 +00001523
Paul Jakma41be32b2006-03-30 13:53:59 +00001524dnl -----------------------------------------
1525dnl check for malloc mallinfo struct and call
1526dnl this must try and link using LIBS, in
1527dnl order to check no alternative allocator
1528dnl has been specified, which might not provide
1529dnl mallinfo, e.g. such as Umem on Solaris.
1530dnl -----------------------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001531AC_CHECK_HEADER([malloc.h],
Paul Jakma41be32b2006-03-30 13:53:59 +00001532 [AC_MSG_CHECKING(whether mallinfo is available)
1533 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <malloc.h>]],
1534 [[struct mallinfo ac_x; ac_x = mallinfo ();]])],
1535 [AC_MSG_RESULT(yes)
1536 AC_DEFINE(HAVE_MALLINFO,,mallinfo)],
1537 AC_MSG_RESULT(no)
1538 )
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001539 ], [], QUAGGA_INCLUDES)
Paul Jakma41be32b2006-03-30 13:53:59 +00001540
paul408ad942003-05-20 00:03:33 +00001541dnl ----------
1542dnl configure date
1543dnl ----------
1544CONFDATE=`date '+%Y%m%d'`
1545AC_SUBST(CONFDATE)
1546
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +01001547dnl Conditionally enable PIE support for GNU toolchains.
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +01001548AC_ARG_ENABLE(pie, AS_HELP_STRING([--disable-pie], [Do not build tools as a Position Independent Executables]))
Paul P Komkoff Jr0e9de562008-09-24 16:42:35 +01001549if test "$enable_pie" != "no"; then
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +01001550 AC_CACHE_CHECK([whether $CC accepts PIE flags], [ap_cv_cc_pie], [
1551 save_CFLAGS=$CFLAGS
1552 save_LDFLAGS=$LDFLAGS
1553 CFLAGS="$CFLAGS -fPIE"
1554 LDFLAGS="$LDFLAGS -pie"
1555 AC_LINK_IFELSE([AC_LANG_SOURCE([[static int foo[30000]; int main () { return 0; }]])],
1556 [ap_cv_cc_pie=yes], [ap_cv_cc_pie=no]
1557 )
1558 CFLAGS=$save_CFLAGS
1559 LDFLAGS=$save_LDFLAGS
1560 ])
1561 if test "$ap_cv_cc_pie" = "yes"; then
1562 PICFLAGS="-fPIE"
1563 PILDFLAGS="-pie"
1564 fi
1565fi
1566
1567AC_SUBST(PICFLAGS)
1568AC_SUBST(PILDFLAGS)
1569
paul7ea487b2003-03-17 02:05:07 +00001570dnl ------------------------------
paula159ed92003-06-04 11:01:45 +00001571dnl set paths for state directory
paul23bd12c2003-04-07 06:11:09 +00001572dnl ------------------------------
Jeremy Jacksone84999d2009-01-21 20:29:39 -05001573AC_MSG_CHECKING(directory to use for state file)
paul23bd12c2003-04-07 06:11:09 +00001574if test "${prefix}" = "NONE"; then
paule8f29842003-08-12 13:08:31 +00001575 quagga_statedir_prefix="";
paul23bd12c2003-04-07 06:11:09 +00001576else
paule8f29842003-08-12 13:08:31 +00001577 quagga_statedir_prefix=${prefix}
paul23bd12c2003-04-07 06:11:09 +00001578fi
1579if test "${localstatedir}" = '${prefix}/var'; then
Jeremy Jacksone84999d2009-01-21 20:29:39 -05001580 for QUAGGA_STATE_DIR in ${quagga_statedir_prefix}/var/run dnl
paule8f29842003-08-12 13:08:31 +00001581 ${quagga_statedir_prefix}/var/adm dnl
1582 ${quagga_statedir_prefix}/etc dnl
paula159ed92003-06-04 11:01:45 +00001583 /var/run dnl
1584 /var/adm dnl
1585 /etc dnl
1586 /dev/null;
paul23bd12c2003-04-07 06:11:09 +00001587 do
paule8f29842003-08-12 13:08:31 +00001588 test -d $QUAGGA_STATE_DIR && break
paul23bd12c2003-04-07 06:11:09 +00001589 done
Jeremy Jacksone84999d2009-01-21 20:29:39 -05001590 quagga_statedir=$QUAGGA_STATE_DIR
paul23bd12c2003-04-07 06:11:09 +00001591else
paule8f29842003-08-12 13:08:31 +00001592 quagga_statedir=${localstatedir}
paul23bd12c2003-04-07 06:11:09 +00001593fi
paule8f29842003-08-12 13:08:31 +00001594if test $quagga_statedir = "/dev/null"; then
paula159ed92003-06-04 11:01:45 +00001595 AC_MSG_ERROR('STATE DIRECTORY NOT FOUND! FIX OR SPECIFY --localstatedir!')
1596fi
Jeremy Jacksone84999d2009-01-21 20:29:39 -05001597AC_MSG_RESULT(${quagga_statedir})
1598AC_SUBST(quagga_statedir)
paula159ed92003-06-04 11:01:45 +00001599
paule8f29842003-08-12 13:08:31 +00001600AC_DEFINE_UNQUOTED(PATH_ZEBRA_PID, "$quagga_statedir/zebra.pid",zebra PID)
1601AC_DEFINE_UNQUOTED(PATH_RIPD_PID, "$quagga_statedir/ripd.pid",ripd PID)
1602AC_DEFINE_UNQUOTED(PATH_RIPNGD_PID, "$quagga_statedir/ripngd.pid",ripngd PID)
1603AC_DEFINE_UNQUOTED(PATH_BGPD_PID, "$quagga_statedir/bgpd.pid",bgpd PID)
1604AC_DEFINE_UNQUOTED(PATH_OSPFD_PID, "$quagga_statedir/ospfd.pid",ospfd PID)
1605AC_DEFINE_UNQUOTED(PATH_OSPF6D_PID, "$quagga_statedir/ospf6d.pid",ospf6d PID)
Paul Jakma57345092011-12-25 17:52:09 +01001606AC_DEFINE_UNQUOTED(PATH_BABELD_PID, "$quagga_statedir/babeld.pid",babeld PID)
jardin9e867fe2003-12-23 08:56:18 +00001607AC_DEFINE_UNQUOTED(PATH_ISISD_PID, "$quagga_statedir/isisd.pid",isisd PID)
ajsd0199432004-12-22 14:03:52 +00001608AC_DEFINE_UNQUOTED(PATH_WATCHQUAGGA_PID, "$quagga_statedir/watchquagga.pid",watchquagga PID)
paule8f29842003-08-12 13:08:31 +00001609AC_DEFINE_UNQUOTED(ZEBRA_SERV_PATH, "$quagga_statedir/zserv.api",zebra api socket)
1610AC_DEFINE_UNQUOTED(ZEBRA_VTYSH_PATH, "$quagga_statedir/zebra.vty",zebra vty socket)
1611AC_DEFINE_UNQUOTED(RIP_VTYSH_PATH, "$quagga_statedir/ripd.vty",rip vty socket)
1612AC_DEFINE_UNQUOTED(RIPNG_VTYSH_PATH, "$quagga_statedir/ripngd.vty",ripng vty socket)
1613AC_DEFINE_UNQUOTED(BGP_VTYSH_PATH, "$quagga_statedir/bgpd.vty",bgpd vty socket)
1614AC_DEFINE_UNQUOTED(OSPF_VTYSH_PATH, "$quagga_statedir/ospfd.vty",ospfd vty socket)
1615AC_DEFINE_UNQUOTED(OSPF6_VTYSH_PATH, "$quagga_statedir/ospf6d.vty",ospf6d vty socket)
Paul Jakma57345092011-12-25 17:52:09 +01001616AC_DEFINE_UNQUOTED(BABEL_VTYSH_PATH, "$quagga_statedir/babeld.vty",babeld vty socket)
jardin9e867fe2003-12-23 08:56:18 +00001617AC_DEFINE_UNQUOTED(ISIS_VTYSH_PATH, "$quagga_statedir/isisd.vty",isisd vty socket)
ajs515210b2004-12-22 15:35:12 +00001618AC_DEFINE_UNQUOTED(DAEMON_VTY_DIR, "$quagga_statedir",daemon vty directory)
paul7ea487b2003-03-17 02:05:07 +00001619
paul1eb8ef22005-04-07 07:30:20 +00001620dnl -------------------------------
1621dnl Quagga sources should always be
1622dnl current wrt interfaces. Dont
1623dnl allow deprecated interfaces to
1624dnl be exposed.
1625dnl -------------------------------
1626AC_DEFINE(QUAGGA_NO_DEPRECATED_INTERFACES, 1, Hide deprecated interfaces)
1627
paul7ea487b2003-03-17 02:05:07 +00001628dnl ---------------------------
1629dnl Check htonl works correctly
1630dnl ---------------------------
1631AC_MSG_CHECKING(for working htonl)
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001632AC_CACHE_VAL(ac_cv_htonl_works,
1633 [AC_LINK_IFELSE([AC_LANG_PROGRAM([QUAGGA_INCLUDES],[htonl (0);])],
1634 [ac_cv_htonl_works=yes], [ac_cv_htonl_works=no])
1635 ]
1636)
paul7ea487b2003-03-17 02:05:07 +00001637AC_MSG_RESULT($ac_cv_htonl_works)
1638
paul14c17fd2004-11-07 22:34:23 +00001639AC_CONFIG_FILES([Makefile lib/Makefile zebra/Makefile ripd/Makefile
ajsd0199432004-12-22 14:03:52 +00001640 ripngd/Makefile bgpd/Makefile ospfd/Makefile watchquagga/Makefile
Paul Jakma57345092011-12-25 17:52:09 +01001641 ospf6d/Makefile isisd/Makefile babeld/Makefile vtysh/Makefile
1642 doc/Makefile ospfclient/Makefile tests/Makefile m4/Makefile
1643 redhat/Makefile
gdt69f1fc22004-08-27 15:57:35 +00001644 pkgsrc/Makefile
paul670bbf12004-11-12 09:05:00 +00001645 redhat/quagga.spec
gdtb7a97f82004-07-23 16:23:56 +00001646 lib/version.h
paul14c17fd2004-11-07 22:34:23 +00001647 doc/defines.texi
hassof695b012005-04-02 19:03:39 +00001648 isisd/topology/Makefile
gdtcbd04082004-08-31 18:16:36 +00001649 pkgsrc/bgpd.sh pkgsrc/ospf6d.sh pkgsrc/ospfd.sh
paulf31293a2004-11-12 09:27:04 +00001650 pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh])
paul26275b02005-04-11 07:10:47 +00001651AC_CONFIG_FILES([solaris/Makefile])
1652
paul670bbf12004-11-12 09:05:00 +00001653AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl])
hasso48577192004-11-19 06:41:49 +00001654## Hack, but working solution to avoid rebuilding of quagga.info.
1655## It's already in CVS until texinfo 4.7 is more common.
paul14c17fd2004-11-07 22:34:23 +00001656AC_OUTPUT
paul7ea487b2003-03-17 02:05:07 +00001657
1658echo "
hassoc89f6492004-08-26 12:21:28 +00001659Quagga configuration
1660--------------------
1661quagga version : ${PACKAGE_VERSION}
Joachim Nilsson1080c132012-05-30 08:15:48 +02001662host operating system : ${host_os}
paul7ea487b2003-03-17 02:05:07 +00001663source code location : ${srcdir}
1664compiler : ${CC}
1665compiler flags : ${CFLAGS}
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001666make : ${MAKE-make}
Vincent Bernat08d7f652012-05-22 22:29:17 +02001667includes : ${INCLUDES}
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001668linker flags : ${LDFLAGS} ${LIBS} ${LIBCAP} ${LIBREADLINE} ${LIBM}
paule8f29842003-08-12 13:08:31 +00001669state file directory : ${quagga_statedir}
pauldc7a2bf2003-10-22 00:07:44 +00001670config file directory : `eval echo \`echo ${sysconfdir}\``
gdtd6b72f72003-12-03 17:24:27 +00001671example directory : `eval echo \`echo ${exampledir}\``
paul8d4aee52003-06-06 00:30:35 +00001672user to run as : ${enable_user}
1673group to run as : ${enable_group}
1674group for vty sockets : ${enable_vty_group}
gdtaa593d52003-12-22 20:15:53 +00001675config file mask : ${enable_configfile_mask}
1676log file mask : ${enable_logfile_mask}
pauldc7a2bf2003-10-22 00:07:44 +00001677
1678The above user and group must have read/write access to the state file
Paul Jakma105b8232006-05-28 08:02:41 +00001679directory and to the config files in the config file directory."
1680
1681if test x"$quagga_cv_gnu_make" = x"no"; then echo "
1682Warning: The ${MAKE-make} programme detected, either in your path or
1683via the MAKE variable, is not GNU Make. GNU make may be installed as
1684gmake on some systems. and is required to complete a build of Quagga
1685" > /dev/stderr
1686fi