blob: 425fe27373bd1f66e2aa778bf076ddce927e5806 [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
Doug VanLeuven9234b382012-10-10 16:12:32 -0700995dnl ---------------------------------------------------------------
996dnl Additional, newer way to check link-state using ifi_link_state.
997dnl Not available in all BSD's when ifmediareq available
998dnl ---------------------------------------------------------------
999AC_CHECK_HEADER([net/if.h],
1000 AC_CHECK_MEMBERS([struct if_data.ifi_link_state],
1001 AC_DEFINE(HAVE_BSD_IFI_LINK_STATE,,[BSD ifi_link_state available]),
1002 [], QUAGGA_INCLUDES),
1003 ,)
1004
Paul Jakma0df7c912008-07-21 21:02:49 +00001005dnl ------------------------
1006dnl TCP_MD5SIG socket option
1007dnl ------------------------
1008
1009AC_CHECK_HEADER([netinet/tcp.h],
1010 [m4_define([MD5_INCLUDES],
1011 QUAGGA_INCLUDES
1012 [#include <netinet/tcp.h>
1013 ])
1014 AC_CHECK_DECLS([TCP_MD5SIG], [], [], MD5_INCLUDES)],
1015 [],
1016 QUAGGA_INCLUDES)
1017if test $ac_cv_have_decl_TCP_MD5SIG = no; then
1018 AC_CHECK_HEADER([linux/tcp.h],
1019 [m4_define([MD5_INCLUDES],
1020 QUAGGA_INCLUDES
1021 [#include <linux/tcp.h>
1022 ])
1023 AC_CHECK_DECLS([TCP_MD5SIG], [], [], MD5_INCLUDES)])
1024fi
1025
paul7ea487b2003-03-17 02:05:07 +00001026dnl -----------------------
1027dnl check proc file system.
1028dnl -----------------------
Stephen Hemmingercadfb2c2008-08-16 18:03:44 +01001029if test "$netlink" != yes; then
1030 if test -r /proc/net/dev; then
1031 AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev)
1032 IF_PROC=if_proc.o
1033 fi
1034 if test -r /proc/net/if_inet6; then
1035 AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6)
1036 IF_PROC=if_proc.o
1037 fi
paul7ea487b2003-03-17 02:05:07 +00001038fi
1039AC_SUBST(IF_PROC)
1040
1041dnl -----------------------------
1042dnl check ipforward detect method
1043dnl -----------------------------
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001044AC_CACHE_CHECK([ipforward method], [quagga_cv_ipforward_method],
David Lamparterca9f3422009-09-16 02:11:00 +02001045[if test x$cross_compiling = xyes; then
1046 if test x"$opsys" = x"gnu-linux"; then
1047 quagga_cv_ipforward_method=/proc/net/snmp
1048 else
1049 quagga_cv_ipforward_method=/dev/ip
1050 fi
1051else
1052 for quagga_cv_ipforward_method in /proc/net/snmp /dev/ip /dev/null;
1053 do
1054 test x`ls $quagga_cv_ipforward_method 2>/dev/null` = x"$quagga_cv_ipforward_method" && break
1055 done
1056fi
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001057case $quagga_cv_ipforward_method in
1058 "/proc/net/snmp") quagga_cv_ipforward_method="proc";;
paul7ea487b2003-03-17 02:05:07 +00001059 "/dev/ip")
1060 case "$host" in
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001061 *-nec-sysv4*) quagga_cv_ipforward_method="ews";;
1062 *-freebsd*) quagga_cv_ipforward_method="sysctl";;
1063 *) quagga_cv_ipforward_method="solaris";;
paul7ea487b2003-03-17 02:05:07 +00001064 esac;;
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001065 *) quagga_cv_ipforward_method="sysctl";;
paul7ea487b2003-03-17 02:05:07 +00001066esac])
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001067IPFORWARD=ipforward_${quagga_cv_ipforward_method}.o
paul7ea487b2003-03-17 02:05:07 +00001068AC_SUBST(IPFORWARD)
1069
1070AC_CHECK_FUNCS(getaddrinfo, [have_getaddrinfo=yes], [have_getaddrinfo=no])
1071
1072dnl ----------
1073dnl IPv6 check
1074dnl ----------
1075AC_MSG_CHECKING(whether does this OS have IPv6 stack)
1076if test "${enable_ipv6}" = "no"; then
1077 AC_MSG_RESULT(disabled)
1078else
1079dnl ----------
1080dnl INRIA IPv6
1081dnl ----------
paula159ed92003-06-04 11:01:45 +00001082 if grep IPV6_INRIA_VERSION /usr/include/netinet/in.h >/dev/null 2>&1; then
1083 zebra_cv_ipv6=yes
1084 AC_DEFINE(HAVE_IPV6,1,INRIA IPv6)
1085 AC_DEFINE(INRIA_IPV6,1,INRIA IPv6)
1086 RIPNGD="ripngd"
1087 OSPF6D="ospf6d"
1088 LIB_IPV6=""
1089 AC_MSG_RESULT(INRIA IPv6)
paul7ea487b2003-03-17 02:05:07 +00001090dnl ---------
1091dnl KAME IPv6
1092dnl ---------
paula159ed92003-06-04 11:01:45 +00001093 elif grep WIDE /usr/include/netinet6/in6.h >/dev/null 2>&1; then
1094 zebra_cv_ipv6=yes
1095 AC_DEFINE(HAVE_IPV6,1,KAME IPv6)
1096 AC_DEFINE(KAME,1,KAME IPv6)
1097 RIPNGD="ripngd"
1098 OSPF6D="ospf6d"
1099 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
paul7ea487b2003-03-17 02:05:07 +00001100 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +00001101 fi
1102 AC_MSG_RESULT(KAME)
hasso71c0fb52003-05-25 20:18:13 +00001103dnl -------------------------
1104dnl MUSICA IPv6
1105dnl default host check
1106dnl It is not used by Kheops
1107dnl -------------------------
paula159ed92003-06-04 11:01:45 +00001108 elif grep MUSICA /usr/include6/netinet6/in6.h >/dev/null 2>&1; then
1109 zebra_cv_ipv6=yes
1110 AC_DEFINE(HAVE_IPV6,1,Musicia IPv6)
1111 AC_DEFINE(MUSICA,1,Musica IPv6 stack)
1112 AC_DEFINE(KAME,1,KAME IPv6 stack)
1113 RIPNGD="ripngd"
1114 OSPF6D="ospf6d"
1115 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
hasso71c0fb52003-05-25 20:18:13 +00001116 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +00001117 fi
1118 AC_MSG_RESULT(MUSICA)
paul7ea487b2003-03-17 02:05:07 +00001119dnl ---------
1120dnl NRL check
1121dnl ---------
paula159ed92003-06-04 11:01:45 +00001122 elif grep NRL /usr/include/netinet6/in6.h >/dev/null 2>&1; then
1123 zebra_cv_ipv6=yes
1124 AC_DEFINE(HAVE_IPV6,1,NRL IPv6)
1125 AC_DEFINE(NRL,1,NRL)
1126 RIPNGD="ripngd"
1127 OSPF6D="ospf6d"
1128 if test x"$opsys" = x"bsdi";then
paul7ea487b2003-03-17 02:05:07 +00001129 AC_DEFINE(BSDI_NRL,,BSDI)
1130 AC_MSG_RESULT(BSDI_NRL)
paula159ed92003-06-04 11:01:45 +00001131 else
paul7ea487b2003-03-17 02:05:07 +00001132 AC_MSG_RESULT(NRL)
paula159ed92003-06-04 11:01:45 +00001133 fi
paul19877dd2004-05-11 10:49:35 +00001134dnl ------------------------------------
1135dnl Solaris 9, 10 and potentially higher
1136dnl ------------------------------------
paulafd8a122005-03-12 06:36:10 +00001137 elif test x"$opsys" = x"sol8"; then
paul19877dd2004-05-11 10:49:35 +00001138 zebra_cv_ipv6=yes;
1139 AC_DEFINE(HAVE_IPV6, 1, IPv6)
1140 AC_DEFINE(SOLARIS_IPV6, 1, Solaris IPv6)
1141 RIPNGD="ripngd"
1142 OSPF6D="ospf6d"
1143 AC_MSG_RESULT(Solaris IPv6)
paul7ea487b2003-03-17 02:05:07 +00001144dnl ----------
1145dnl Linux IPv6
1146dnl ----------
paula159ed92003-06-04 11:01:45 +00001147 elif test "${enable_ipv6}" = "yes"; then
1148 AC_EGREP_CPP(yes, [
1149 #include <linux/version.h>
1150 /* 2.1.128 or later */
1151 #if LINUX_VERSION_CODE >= 0x020180
1152 yes
1153 #endif],
1154 [zebra_cv_ipv6=yes
1155 zebra_cv_linux_ipv6=yes
1156 AC_MSG_RESULT(Linux IPv6)])
1157 else
1158 if test x`ls /proc/net/ipv6_route 2>/dev/null` = x"/proc/net/ipv6_route"
1159 then
paul7ea487b2003-03-17 02:05:07 +00001160 zebra_cv_ipv6=yes
1161 zebra_cv_linux_ipv6=yes
1162 AC_MSG_RESULT(Linux IPv6)
paula159ed92003-06-04 11:01:45 +00001163 fi
1164 fi
paul7ea487b2003-03-17 02:05:07 +00001165
paula159ed92003-06-04 11:01:45 +00001166 if test "$zebra_cv_linux_ipv6" = "yes";then
hasso850d39f2005-06-30 13:52:20 +00001167 AC_MSG_CHECKING(whether libc has IPv6 support)
1168 AC_TRY_LINK([#include <netinet/in.h>
1169 ],[ int a; a = (int) in6addr_any.s6_addr[0]; if (a != 12345) return a; ],
1170 [AC_MSG_RESULT(yes)
1171 zebra_cv_ipv6=yes
1172 zebra_cv_linux_ipv6=yes],
1173 [AC_MSG_RESULT(no)
1174 zebra_cv_ipv6=no
1175 zebra_cv_linux_ipv6=no])
1176 fi
1177
1178 if test "$zebra_cv_linux_ipv6" = "yes";then
paula159ed92003-06-04 11:01:45 +00001179 AC_MSG_CHECKING(for GNU libc >= 2.1)
1180 AC_DEFINE(HAVE_IPV6,1,Linux IPv6)
1181 AC_EGREP_CPP(yes, [
paul7ea487b2003-03-17 02:05:07 +00001182#include <features.h>
1183#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
1184 yes
paula159ed92003-06-04 11:01:45 +00001185#endif],
1186 [glibc=yes
1187 AC_DEFINE(LINUX_IPV6,1,Linux IPv6 stack)
1188 AC_MSG_RESULT(yes)],
1189 AC_MSG_RESULT(no)
1190 )
1191 RIPNGD="ripngd"
1192 OSPF6D="ospf6d"
1193 if test "$glibc" != "yes"; then
paul7ea487b2003-03-17 02:05:07 +00001194 INCLUDES="-I/usr/inet6/include"
1195 if test x`ls /usr/inet6/lib/libinet6.a 2>/dev/null` != x;then
1196 LIB_IPV6="-L/usr/inet6/lib -linet6"
1197 fi
paula159ed92003-06-04 11:01:45 +00001198 fi
1199 fi
paul7ea487b2003-03-17 02:05:07 +00001200
1201dnl -----------------------
1202dnl Set IPv6 related values
1203dnl -----------------------
paula159ed92003-06-04 11:01:45 +00001204 LIBS="$LIB_IPV6 $LIBS"
1205 AC_SUBST(LIB_IPV6)
paul7ea487b2003-03-17 02:05:07 +00001206
paula159ed92003-06-04 11:01:45 +00001207 if test x"$RIPNGD" = x""; then
1208 AC_MSG_RESULT(IPv4 only)
1209 fi
paul7ea487b2003-03-17 02:05:07 +00001210fi
1211
gdtfa3232e2003-12-03 17:52:30 +00001212dnl ------------------
1213dnl IPv6 header checks
1214dnl ------------------
1215if test "x${zebra_cv_ipv6}" = "xyes"; then
1216AC_CHECK_HEADERS([netinet6/in6.h netinet/in6_var.h netinet/icmp6.h \
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001217 netinet6/in6_var.h netinet6/nd6.h], [], [],
1218 QUAGGA_INCLUDES)
gdtfa3232e2003-12-03 17:52:30 +00001219fi
1220
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001221m4_define([QUAGGA_INCLUDES],dnl
1222QUAGGA_INCLUDES
1223[#if HAVE_NETINET6_IN6_H
1224#include <netinet6/in6.h>
1225#endif
1226#if HAVE_NETINET_IN6_VAR_H
1227#include <netinet/in6_var.h>
1228#endif
1229#if HAVE_NETINET_ICMP6_H
1230# include <netinet/icmp6.h>
1231#endif
1232#if HAVE_NETINET6_IN6_VAR_H
1233# include <netinet6/in6_var.h>
1234#endif
1235#if HAVE_NETINET6_ND6_H
Hasso Tepperfbf24542007-06-25 19:30:59 +00001236# include <netinet6/nd6.h>
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001237#endif
1238])dnl
1239
Joakim Tjernlundcbcd9bf2009-02-16 09:40:39 +01001240dnl disable doc check
1241if test "${enable_doc}" = "no";then
1242 DOC=""
1243else
1244 DOC="doc"
1245fi
1246
David Lampartere2b15802012-11-03 09:14:29 -07001247dnl can't use TESTS as name, that's special with automake
1248if test "${enable_tests}" = "no";then
1249 BUILD_TESTS=""
1250else
1251 BUILD_TESTS="tests"
1252fi
1253
paul7ea487b2003-03-17 02:05:07 +00001254dnl --------------------
1255dnl Daemon disable check
1256dnl --------------------
1257if test "${enable_zebra}" = "no";then
1258 ZEBRA=""
1259else
1260 ZEBRA="zebra"
1261fi
David Wardf027d332012-04-30 11:36:15 -04001262AM_CONDITIONAL(ZEBRA, test "x$ZEBRA" = "xzebra")
paul7ea487b2003-03-17 02:05:07 +00001263
1264if test "${enable_bgpd}" = "no";then
1265 BGPD=""
1266else
1267 BGPD="bgpd"
1268fi
David Wardf027d332012-04-30 11:36:15 -04001269AM_CONDITIONAL(BGPD, test "x$BGPD" = "xbgpd")
paul7ea487b2003-03-17 02:05:07 +00001270
1271if test "${enable_ripd}" = "no";then
1272 RIPD=""
1273else
1274 RIPD="ripd"
1275fi
David Wardf027d332012-04-30 11:36:15 -04001276AM_CONDITIONAL(RIPD, test "x$RIPD" = "xripd")
paul7ea487b2003-03-17 02:05:07 +00001277
1278if test "${enable_ospfd}" = "no";then
1279 OSPFD=""
1280else
1281 OSPFD="ospfd"
1282fi
David Wardf027d332012-04-30 11:36:15 -04001283AM_CONDITIONAL(OSPFD, test "x$OSPFD" = "xospfd")
paul7ea487b2003-03-17 02:05:07 +00001284
Paul Jakma57345092011-12-25 17:52:09 +01001285if test "${enable_babeld}" = "no";then
1286 BABELD=""
1287else
1288 BABELD="babeld"
1289fi
David Wardf027d332012-04-30 11:36:15 -04001290AM_CONDITIONAL(BABELD, test "x$BABELD" = "xbabeld")
Paul Jakma57345092011-12-25 17:52:09 +01001291
ajsd0199432004-12-22 14:03:52 +00001292if test "${enable_watchquagga}" = "no";then
1293 WATCHQUAGGA=""
1294else
1295 WATCHQUAGGA="watchquagga"
1296fi
David Wardf027d332012-04-30 11:36:15 -04001297AM_CONDITIONAL(WATCHQUAGGA, test "x$WATCHQUAGGA" = "xwatchquagga")
ajsd0199432004-12-22 14:03:52 +00001298
paul1ef74ef2003-03-21 15:16:05 +00001299OSPFCLIENT=""
Greg Troxel0d51c7e2011-03-24 10:19:43 -04001300if test "${enable_opaque_lsa}" != "no"; then
paul1ef74ef2003-03-21 15:16:05 +00001301 if test "${enable_ospfapi}" != "no";then
paul9a569842003-03-28 01:45:13 +00001302 AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI)
paul1ef74ef2003-03-21 15:16:05 +00001303
1304 if test "${enable_ospfclient}" != "no";then
1305 OSPFCLIENT="ospfclient"
1306 fi
1307 fi
1308
paul7ea487b2003-03-17 02:05:07 +00001309fi
David Wardf027d332012-04-30 11:36:15 -04001310AM_CONDITIONAL(OSPFCLIENT, test "x$OSPFCLIENT" = "xospfclient")
paul7ea487b2003-03-17 02:05:07 +00001311
1312case "${enable_ripngd}" in
1313 "yes") RIPNGD="ripngd";;
1314 "no" ) RIPNGD="";;
1315 * ) ;;
1316esac
David Wardf027d332012-04-30 11:36:15 -04001317AM_CONDITIONAL(RIPNGD, test "x$RIPNGD" = "xripngd")
paul7ea487b2003-03-17 02:05:07 +00001318
1319case "${enable_ospf6d}" in
1320 "yes") OSPF6D="ospf6d";;
1321 "no" ) OSPF6D="";;
1322 * ) ;;
1323esac
David Wardf027d332012-04-30 11:36:15 -04001324AM_CONDITIONAL(OSPF6D, test "x$OSPF6D" = "xospf6d")
paul7ea487b2003-03-17 02:05:07 +00001325
jardin9e867fe2003-12-23 08:56:18 +00001326case "${enable_isisd}" in
1327 "yes") ISISD="isisd";;
1328 "no" ) ISISD="";;
hassoae399ab2004-09-13 20:22:18 +00001329 * ) ;;
jardin9e867fe2003-12-23 08:56:18 +00001330esac
David Wardf027d332012-04-30 11:36:15 -04001331AM_CONDITIONAL(ISISD, test "x$ISISD" = "xisisd")
jardin9e867fe2003-12-23 08:56:18 +00001332
Greg Troxel97cee872007-08-02 13:36:56 +00001333# XXX Perhaps auto-enable on Solaris, but that's messy for cross builds.
1334case "${enable_solaris}" in
1335 "yes") SOLARIS="solaris";;
1336 "no" ) SOLARIS="";;
1337 * ) ;;
1338esac
1339
paul7ea487b2003-03-17 02:05:07 +00001340if test "${enable_bgp_announce}" = "no";then
Paul Jakma750e8142008-07-22 21:11:48 +00001341 AC_DEFINE(DISABLE_BGP_ANNOUNCE,1,Disable BGP installation to zebra)
1342else
1343 AC_DEFINE(DISABLE_BGP_ANNOUNCE,0,Disable BGP installation to zebra)
paul7ea487b2003-03-17 02:05:07 +00001344fi
1345
Joakim Tjernlundcbcd9bf2009-02-16 09:40:39 +01001346AC_SUBST(DOC)
David Lampartere2b15802012-11-03 09:14:29 -07001347AC_SUBST(BUILD_TESTS)
paul7ea487b2003-03-17 02:05:07 +00001348AC_SUBST(ZEBRA)
1349AC_SUBST(BGPD)
1350AC_SUBST(RIPD)
1351AC_SUBST(RIPNGD)
1352AC_SUBST(OSPFD)
1353AC_SUBST(OSPF6D)
Paul Jakma57345092011-12-25 17:52:09 +01001354AC_SUBST(BABELD)
ajsd0199432004-12-22 14:03:52 +00001355AC_SUBST(WATCHQUAGGA)
jardin9e867fe2003-12-23 08:56:18 +00001356AC_SUBST(ISISD)
Greg Troxel97cee872007-08-02 13:36:56 +00001357AC_SUBST(SOLARIS)
paul7ea487b2003-03-17 02:05:07 +00001358AC_SUBST(VTYSH)
1359AC_SUBST(INCLUDES)
1360AC_SUBST(CURSES)
1361AC_SUBST(OSPFCLIENT)
paul1ef74ef2003-03-21 15:16:05 +00001362AC_SUBST(OSPFAPI)
paul7ea487b2003-03-17 02:05:07 +00001363AC_CHECK_LIB(c, inet_ntop, [AC_DEFINE(HAVE_INET_NTOP,,inet_ntop)])
1364AC_CHECK_LIB(c, inet_pton, [AC_DEFINE(HAVE_INET_PTON,,inet_pton)])
1365AC_CHECK_LIB(crypt, crypt)
1366AC_CHECK_LIB(resolv, res_init)
paul7ea487b2003-03-17 02:05:07 +00001367
1368dnl ---------------------------------------------------
1369dnl BSD/OS 4.1 define inet_XtoY function as __inet_XtoY
1370dnl ---------------------------------------------------
paula159ed92003-06-04 11:01:45 +00001371AC_CHECK_FUNC(__inet_ntop, AC_DEFINE(HAVE_INET_NTOP,,__inet_ntop))
1372AC_CHECK_FUNC(__inet_pton, AC_DEFINE(HAVE_INET_PTON,,__inet_pton))
1373AC_CHECK_FUNC(__inet_aton, AC_DEFINE(HAVE_INET_ATON,,__inet_aton))
paul7ea487b2003-03-17 02:05:07 +00001374
1375dnl ---------------------------
Jeremy Jackson25f45882009-01-12 16:06:12 -05001376dnl check system has PCRE regexp
1377dnl ---------------------------
1378if test "x$enable_pcreposix" = "xyes"; then
1379 AC_CHECK_LIB(pcreposix, pcreposix_regexec, ,[enable_pcreposix=no
1380 AC_MSG_WARN([*** falling back to other regex library ***]) ])
1381fi
1382
1383if test "x$enable_pcreposix" != "xyes"; then
1384dnl ---------------------------
paul7ea487b2003-03-17 02:05:07 +00001385dnl check system has GNU regexp
1386dnl ---------------------------
Jeremy Jackson25f45882009-01-12 16:06:12 -05001387AC_MSG_CHECKING(whether system has GNU regex)
paul7ea487b2003-03-17 02:05:07 +00001388AC_CHECK_LIB(c, regexec,
1389[AC_DEFINE(HAVE_GNU_REGEX,,GNU regexp library)
1390 LIB_REGEX=""],
1391[LIB_REGEX="regex.o"])
Jeremy Jackson25f45882009-01-12 16:06:12 -05001392fi
1393AC_SUBST(HAVE_LIBPCREPOSIX)
paul7ea487b2003-03-17 02:05:07 +00001394AC_SUBST(LIB_REGEX)
1395
1396dnl ------------------
paulb1fc9ac2006-01-31 10:09:27 +00001397dnl check Net-SNMP library
paul7ea487b2003-03-17 02:05:07 +00001398dnl ------------------
Vincent Bernatd6be5fb2012-05-24 09:44:43 +02001399if test "${enable_snmp}" != ""; then
Vincent Bernat08d7f652012-05-22 22:29:17 +02001400 AC_PATH_TOOL([NETSNMP_CONFIG], [net-snmp-config], [no])
1401 if test x"$NETSNMP_CONFIG" = x"no"; then
1402 AC_MSG_ERROR([--enable-snmp given but unable to find net-snmp-config])
1403 fi
1404 LIBS="$LIBS `${NETSNMP_CONFIG} --agent-libs`"
1405 CFLAGS="`${NETSNMP_CONFIG} --base-cflags` $CFLAGS"
1406 AC_MSG_CHECKING([whether we can link to Net-SNMP])
1407 AC_LINK_IFELSE([AC_LANG_PROGRAM([
1408int main(void);
1409],
1410[
1411{
1412 return 0;
1413}
1414])],[AC_MSG_RESULT(yes)],[
1415 AC_MSG_RESULT(no)
1416 AC_MSG_ERROR([--enable-snmp given but not usable])])
1417 AC_DEFINE(HAVE_SNMP,,SNMP)
Vincent Bernatd6be5fb2012-05-24 09:44:43 +02001418 case "${enable_snmp}" in
1419 yes)
1420 SNMP_METHOD=agentx
1421 ;;
1422 smux|agentx)
1423 SNMP_METHOD="${enable_snmp}"
1424 ;;
1425 *)
1426 AC_MSG_ERROR([--enable-snmp given with an unknown method (${enable_snmp}). Use smux or agentx])
1427 ;;
1428 esac
1429 AH_TEMPLATE([SNMP_SMUX], [Use SNMP SMUX to interface with snmpd])
1430 AH_TEMPLATE([SNMP_AGENTX], [Use SNMP AgentX to interface with snmpd])
1431 AC_DEFINE_UNQUOTED(AS_TR_CPP(SNMP_${SNMP_METHOD}),,SNMP method to interface with snmpd)
paul7ea487b2003-03-17 02:05:07 +00001432fi
1433
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001434dnl ---------------------------
1435dnl sockaddr and netinet checks
1436dnl ---------------------------
1437AC_CHECK_TYPES([struct sockaddr, struct sockaddr_in,
1438 struct sockaddr_in6, struct sockaddr_un, struct sockaddr_dl,
1439 socklen_t,
1440 struct ifaliasreq, struct if6_aliasreq, struct in6_aliasreq,
1441 struct nd_opt_adv_interval, struct rt_addrinfo,
Paul Jakma11770e12007-06-22 16:14:42 +00001442 struct nd_opt_homeagent_info, struct nd_opt_adv_interval],
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001443 [], [], QUAGGA_INCLUDES)
paul7ea487b2003-03-17 02:05:07 +00001444
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001445AC_CHECK_MEMBERS([struct sockaddr.sa_len,
1446 struct sockaddr_in.sin_len, struct sockaddr_un.sun_len,
1447 struct sockaddr_in6.sin6_scope_id,
1448 struct if6_aliasreq.ifra_lifetime,
1449 struct nd_opt_adv_interval.nd_opt_ai_type],
1450 [], [], QUAGGA_INCLUDES)
hasso71c0fb52003-05-25 20:18:13 +00001451
paul7ea487b2003-03-17 02:05:07 +00001452dnl ---------------------------
Paul Jakma11770e12007-06-22 16:14:42 +00001453dnl IRDP/pktinfo/icmphdr checks
paul7ea487b2003-03-17 02:05:07 +00001454dnl ---------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001455AC_CHECK_TYPES([struct in_pktinfo],
Paul Jakma11770e12007-06-22 16:14:42 +00001456 [AC_CHECK_TYPES([struct icmphdr],
1457 [if test "${enable_irdp}" != "no"; then
1458 AC_DEFINE(HAVE_IRDP,, IRDP)
1459 fi],
1460 [if test "${enable_irdp}" = "yes"; then
1461 AC_MSG_ERROR(['IRDP requires in_pktinfo at the moment!'])
1462 fi], [QUAGGA_INCLUDES])],
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001463 [if test "${enable_irdp}" = "yes"; then
1464 AC_MSG_ERROR(['IRDP requires in_pktinfo at the moment!'])
1465 fi], [QUAGGA_INCLUDES])
vincent29c4c9b2005-03-25 13:05:47 +00001466
paul7ea487b2003-03-17 02:05:07 +00001467dnl --------------------------------------
1468dnl checking for getrusage struct and call
1469dnl --------------------------------------
1470AC_MSG_CHECKING(whether getrusage is available)
1471AC_TRY_COMPILE([#include <sys/resource.h>
1472],[struct rusage ac_x; getrusage (RUSAGE_SELF, &ac_x);],
1473[AC_MSG_RESULT(yes)
1474 AC_DEFINE(HAVE_RUSAGE,,rusage)],
1475 AC_MSG_RESULT(no))
1476
Stephen Hemmingerc4376c92009-05-28 15:29:10 -07001477dnl --------------------------------------
1478dnl checking for clock_time monotonic struct and call
1479dnl --------------------------------------
Paul Jakma6511cab2009-06-18 17:38:01 +01001480AC_CHECK_DECL(CLOCK_MONOTONIC,
1481 [AC_CHECK_LIB(rt, clock_gettime, [LIBS="$LIBS -lrt"])
Dmitry Tejblum9964fcf2009-11-05 16:50:36 +03001482 AC_DEFINE(HAVE_CLOCK_MONOTONIC,, Have monotonic clock)
Paul Jakma6511cab2009-06-18 17:38:01 +01001483], [AC_MSG_RESULT(no)], [QUAGGA_INCLUDES])
Stephen Hemmingerc4376c92009-05-28 15:29:10 -07001484
pauledd7c242003-06-04 13:59:38 +00001485dnl -------------------
1486dnl capabilities checks
1487dnl -------------------
hasso41d3fc92004-04-06 11:59:00 +00001488if test "${enable_capabilities}" != "no"; then
1489 AC_MSG_CHECKING(whether prctl PR_SET_KEEPCAPS is available)
1490 AC_TRY_COMPILE([#include <sys/prctl.h>],[prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);],
1491 [AC_MSG_RESULT(yes)
1492 AC_DEFINE(HAVE_PR_SET_KEEPCAPS,,prctl)
1493 quagga_ac_keepcaps="yes"],
1494 AC_MSG_RESULT(no)
pauledd7c242003-06-04 13:59:38 +00001495 )
hasso41d3fc92004-04-06 11:59:00 +00001496 if test x"${quagga_ac_keepcaps}" = x"yes"; then
1497 AC_CHECK_HEADERS(sys/capability.h)
1498 fi
1499 if test x"${ac_cv_header_sys_capability_h}" = x"yes"; then
1500 AC_CHECK_LIB(cap, cap_init,
1501 [AC_DEFINE(HAVE_LCAPS,1,Capabilities)
1502 LIBCAP="-lcap"
paulceacedb2005-09-29 14:39:32 +00001503 quagga_ac_lcaps="yes"]
hasso41d3fc92004-04-06 11:59:00 +00001504 )
paulceacedb2005-09-29 14:39:32 +00001505 else
1506 AC_CHECK_HEADERS(priv.h,
1507 [AC_MSG_CHECKING(Solaris style privileges are available)
1508 AC_TRY_COMPILE([#include <priv.h>],[getpflags(PRIV_AWARE);],
1509 [AC_MSG_RESULT(yes)
1510 AC_DEFINE(HAVE_SOLARIS_CAPABILITIES,1,getpflags)
1511 quagga_ac_scaps="yes"],
1512 AC_MSG_RESULT(no)
1513 )
1514 ]
1515 )
1516 fi
1517 if test x"${quagga_ac_scaps}" = x"yes" \
1518 -o x"${quagga_ac_lcaps}" = x"yes"; then
1519 AC_DEFINE(HAVE_CAPABILITIES,1,capabilities)
hasso41d3fc92004-04-06 11:59:00 +00001520 fi
pauledd7c242003-06-04 13:59:38 +00001521fi
1522AC_SUBST(LIBCAP)
1523
paulfb2d1502003-06-04 09:40:54 +00001524dnl ---------------------------
1525dnl check for glibc 'backtrace'
1526dnl ---------------------------
Dmitrij Tejblumeda35292011-09-15 20:00:33 +04001527AC_CHECK_HEADER([execinfo.h],
1528 [AC_CHECK_FUNC([backtrace],
1529 [AC_DEFINE(HAVE_GLIBC_BACKTRACE,,[Glibc backtrace])
1530 AC_DEFINE(HAVE_STACK_TRACE,,[Stack symbol decoding])
1531 ])
1532])
paulfb2d1502003-06-04 09:40:54 +00001533
Paul Jakma41be32b2006-03-30 13:53:59 +00001534dnl -----------------------------------------
1535dnl check for malloc mallinfo struct and call
1536dnl this must try and link using LIBS, in
1537dnl order to check no alternative allocator
1538dnl has been specified, which might not provide
1539dnl mallinfo, e.g. such as Umem on Solaris.
1540dnl -----------------------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001541AC_CHECK_HEADER([malloc.h],
Paul Jakma41be32b2006-03-30 13:53:59 +00001542 [AC_MSG_CHECKING(whether mallinfo is available)
1543 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <malloc.h>]],
1544 [[struct mallinfo ac_x; ac_x = mallinfo ();]])],
1545 [AC_MSG_RESULT(yes)
1546 AC_DEFINE(HAVE_MALLINFO,,mallinfo)],
1547 AC_MSG_RESULT(no)
1548 )
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001549 ], [], QUAGGA_INCLUDES)
Paul Jakma41be32b2006-03-30 13:53:59 +00001550
paul408ad942003-05-20 00:03:33 +00001551dnl ----------
1552dnl configure date
1553dnl ----------
1554CONFDATE=`date '+%Y%m%d'`
1555AC_SUBST(CONFDATE)
1556
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +01001557dnl Conditionally enable PIE support for GNU toolchains.
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +01001558AC_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 +01001559if test "$enable_pie" != "no"; then
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +01001560 AC_CACHE_CHECK([whether $CC accepts PIE flags], [ap_cv_cc_pie], [
1561 save_CFLAGS=$CFLAGS
1562 save_LDFLAGS=$LDFLAGS
1563 CFLAGS="$CFLAGS -fPIE"
1564 LDFLAGS="$LDFLAGS -pie"
1565 AC_LINK_IFELSE([AC_LANG_SOURCE([[static int foo[30000]; int main () { return 0; }]])],
1566 [ap_cv_cc_pie=yes], [ap_cv_cc_pie=no]
1567 )
1568 CFLAGS=$save_CFLAGS
1569 LDFLAGS=$save_LDFLAGS
1570 ])
1571 if test "$ap_cv_cc_pie" = "yes"; then
1572 PICFLAGS="-fPIE"
1573 PILDFLAGS="-pie"
1574 fi
1575fi
1576
1577AC_SUBST(PICFLAGS)
1578AC_SUBST(PILDFLAGS)
1579
paul7ea487b2003-03-17 02:05:07 +00001580dnl ------------------------------
paula159ed92003-06-04 11:01:45 +00001581dnl set paths for state directory
paul23bd12c2003-04-07 06:11:09 +00001582dnl ------------------------------
Jeremy Jacksone84999d2009-01-21 20:29:39 -05001583AC_MSG_CHECKING(directory to use for state file)
paul23bd12c2003-04-07 06:11:09 +00001584if test "${prefix}" = "NONE"; then
paule8f29842003-08-12 13:08:31 +00001585 quagga_statedir_prefix="";
paul23bd12c2003-04-07 06:11:09 +00001586else
paule8f29842003-08-12 13:08:31 +00001587 quagga_statedir_prefix=${prefix}
paul23bd12c2003-04-07 06:11:09 +00001588fi
1589if test "${localstatedir}" = '${prefix}/var'; then
Jeremy Jacksone84999d2009-01-21 20:29:39 -05001590 for QUAGGA_STATE_DIR in ${quagga_statedir_prefix}/var/run dnl
paule8f29842003-08-12 13:08:31 +00001591 ${quagga_statedir_prefix}/var/adm dnl
1592 ${quagga_statedir_prefix}/etc dnl
paula159ed92003-06-04 11:01:45 +00001593 /var/run dnl
1594 /var/adm dnl
1595 /etc dnl
1596 /dev/null;
paul23bd12c2003-04-07 06:11:09 +00001597 do
paule8f29842003-08-12 13:08:31 +00001598 test -d $QUAGGA_STATE_DIR && break
paul23bd12c2003-04-07 06:11:09 +00001599 done
Jeremy Jacksone84999d2009-01-21 20:29:39 -05001600 quagga_statedir=$QUAGGA_STATE_DIR
paul23bd12c2003-04-07 06:11:09 +00001601else
paule8f29842003-08-12 13:08:31 +00001602 quagga_statedir=${localstatedir}
paul23bd12c2003-04-07 06:11:09 +00001603fi
paule8f29842003-08-12 13:08:31 +00001604if test $quagga_statedir = "/dev/null"; then
paula159ed92003-06-04 11:01:45 +00001605 AC_MSG_ERROR('STATE DIRECTORY NOT FOUND! FIX OR SPECIFY --localstatedir!')
1606fi
Jeremy Jacksone84999d2009-01-21 20:29:39 -05001607AC_MSG_RESULT(${quagga_statedir})
1608AC_SUBST(quagga_statedir)
paula159ed92003-06-04 11:01:45 +00001609
paule8f29842003-08-12 13:08:31 +00001610AC_DEFINE_UNQUOTED(PATH_ZEBRA_PID, "$quagga_statedir/zebra.pid",zebra PID)
1611AC_DEFINE_UNQUOTED(PATH_RIPD_PID, "$quagga_statedir/ripd.pid",ripd PID)
1612AC_DEFINE_UNQUOTED(PATH_RIPNGD_PID, "$quagga_statedir/ripngd.pid",ripngd PID)
1613AC_DEFINE_UNQUOTED(PATH_BGPD_PID, "$quagga_statedir/bgpd.pid",bgpd PID)
1614AC_DEFINE_UNQUOTED(PATH_OSPFD_PID, "$quagga_statedir/ospfd.pid",ospfd PID)
1615AC_DEFINE_UNQUOTED(PATH_OSPF6D_PID, "$quagga_statedir/ospf6d.pid",ospf6d PID)
Paul Jakma57345092011-12-25 17:52:09 +01001616AC_DEFINE_UNQUOTED(PATH_BABELD_PID, "$quagga_statedir/babeld.pid",babeld PID)
jardin9e867fe2003-12-23 08:56:18 +00001617AC_DEFINE_UNQUOTED(PATH_ISISD_PID, "$quagga_statedir/isisd.pid",isisd PID)
ajsd0199432004-12-22 14:03:52 +00001618AC_DEFINE_UNQUOTED(PATH_WATCHQUAGGA_PID, "$quagga_statedir/watchquagga.pid",watchquagga PID)
paule8f29842003-08-12 13:08:31 +00001619AC_DEFINE_UNQUOTED(ZEBRA_SERV_PATH, "$quagga_statedir/zserv.api",zebra api socket)
1620AC_DEFINE_UNQUOTED(ZEBRA_VTYSH_PATH, "$quagga_statedir/zebra.vty",zebra vty socket)
1621AC_DEFINE_UNQUOTED(RIP_VTYSH_PATH, "$quagga_statedir/ripd.vty",rip vty socket)
1622AC_DEFINE_UNQUOTED(RIPNG_VTYSH_PATH, "$quagga_statedir/ripngd.vty",ripng vty socket)
1623AC_DEFINE_UNQUOTED(BGP_VTYSH_PATH, "$quagga_statedir/bgpd.vty",bgpd vty socket)
1624AC_DEFINE_UNQUOTED(OSPF_VTYSH_PATH, "$quagga_statedir/ospfd.vty",ospfd vty socket)
1625AC_DEFINE_UNQUOTED(OSPF6_VTYSH_PATH, "$quagga_statedir/ospf6d.vty",ospf6d vty socket)
Paul Jakma57345092011-12-25 17:52:09 +01001626AC_DEFINE_UNQUOTED(BABEL_VTYSH_PATH, "$quagga_statedir/babeld.vty",babeld vty socket)
jardin9e867fe2003-12-23 08:56:18 +00001627AC_DEFINE_UNQUOTED(ISIS_VTYSH_PATH, "$quagga_statedir/isisd.vty",isisd vty socket)
ajs515210b2004-12-22 15:35:12 +00001628AC_DEFINE_UNQUOTED(DAEMON_VTY_DIR, "$quagga_statedir",daemon vty directory)
paul7ea487b2003-03-17 02:05:07 +00001629
paul1eb8ef22005-04-07 07:30:20 +00001630dnl -------------------------------
1631dnl Quagga sources should always be
1632dnl current wrt interfaces. Dont
1633dnl allow deprecated interfaces to
1634dnl be exposed.
1635dnl -------------------------------
1636AC_DEFINE(QUAGGA_NO_DEPRECATED_INTERFACES, 1, Hide deprecated interfaces)
1637
paul7ea487b2003-03-17 02:05:07 +00001638dnl ---------------------------
1639dnl Check htonl works correctly
1640dnl ---------------------------
1641AC_MSG_CHECKING(for working htonl)
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001642AC_CACHE_VAL(ac_cv_htonl_works,
1643 [AC_LINK_IFELSE([AC_LANG_PROGRAM([QUAGGA_INCLUDES],[htonl (0);])],
1644 [ac_cv_htonl_works=yes], [ac_cv_htonl_works=no])
1645 ]
1646)
paul7ea487b2003-03-17 02:05:07 +00001647AC_MSG_RESULT($ac_cv_htonl_works)
1648
paul14c17fd2004-11-07 22:34:23 +00001649AC_CONFIG_FILES([Makefile lib/Makefile zebra/Makefile ripd/Makefile
ajsd0199432004-12-22 14:03:52 +00001650 ripngd/Makefile bgpd/Makefile ospfd/Makefile watchquagga/Makefile
Paul Jakma57345092011-12-25 17:52:09 +01001651 ospf6d/Makefile isisd/Makefile babeld/Makefile vtysh/Makefile
1652 doc/Makefile ospfclient/Makefile tests/Makefile m4/Makefile
1653 redhat/Makefile
gdt69f1fc22004-08-27 15:57:35 +00001654 pkgsrc/Makefile
paul670bbf12004-11-12 09:05:00 +00001655 redhat/quagga.spec
gdtb7a97f82004-07-23 16:23:56 +00001656 lib/version.h
paul14c17fd2004-11-07 22:34:23 +00001657 doc/defines.texi
hassof695b012005-04-02 19:03:39 +00001658 isisd/topology/Makefile
gdtcbd04082004-08-31 18:16:36 +00001659 pkgsrc/bgpd.sh pkgsrc/ospf6d.sh pkgsrc/ospfd.sh
paulf31293a2004-11-12 09:27:04 +00001660 pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh])
paul26275b02005-04-11 07:10:47 +00001661AC_CONFIG_FILES([solaris/Makefile])
1662
paul670bbf12004-11-12 09:05:00 +00001663AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl])
hasso48577192004-11-19 06:41:49 +00001664## Hack, but working solution to avoid rebuilding of quagga.info.
1665## It's already in CVS until texinfo 4.7 is more common.
paul14c17fd2004-11-07 22:34:23 +00001666AC_OUTPUT
paul7ea487b2003-03-17 02:05:07 +00001667
1668echo "
hassoc89f6492004-08-26 12:21:28 +00001669Quagga configuration
1670--------------------
1671quagga version : ${PACKAGE_VERSION}
Joachim Nilsson1080c132012-05-30 08:15:48 +02001672host operating system : ${host_os}
paul7ea487b2003-03-17 02:05:07 +00001673source code location : ${srcdir}
1674compiler : ${CC}
1675compiler flags : ${CFLAGS}
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001676make : ${MAKE-make}
Vincent Bernat08d7f652012-05-22 22:29:17 +02001677includes : ${INCLUDES}
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001678linker flags : ${LDFLAGS} ${LIBS} ${LIBCAP} ${LIBREADLINE} ${LIBM}
paule8f29842003-08-12 13:08:31 +00001679state file directory : ${quagga_statedir}
pauldc7a2bf2003-10-22 00:07:44 +00001680config file directory : `eval echo \`echo ${sysconfdir}\``
gdtd6b72f72003-12-03 17:24:27 +00001681example directory : `eval echo \`echo ${exampledir}\``
paul8d4aee52003-06-06 00:30:35 +00001682user to run as : ${enable_user}
1683group to run as : ${enable_group}
1684group for vty sockets : ${enable_vty_group}
gdtaa593d52003-12-22 20:15:53 +00001685config file mask : ${enable_configfile_mask}
1686log file mask : ${enable_logfile_mask}
pauldc7a2bf2003-10-22 00:07:44 +00001687
1688The above user and group must have read/write access to the state file
Paul Jakma105b8232006-05-28 08:02:41 +00001689directory and to the config files in the config file directory."
1690
1691if test x"$quagga_cv_gnu_make" = x"no"; then echo "
1692Warning: The ${MAKE-make} programme detected, either in your path or
1693via the MAKE variable, is not GNU Make. GNU make may be installed as
1694gmake on some systems. and is required to complete a build of Quagga
1695" > /dev/stderr
1696fi