blob: a5b9dc43062cb34e5bb7f517d4cffa7931dce004 [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
Denis Ovsienko878715c2011-07-12 17:14:13 +040010AC_INIT(Quagga, 0.99.17.1, [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
75dnl ------------------------------------------------------------------
76dnl Intel compiler check. Although Intel tries really hard to make icc
77dnl look like gcc, there are some differences. It's very verbose with
78dnl -Wall and it doesn't support the individual -W options.
79dnl ------------------------------------------------------------------
paul6a4b8832005-11-26 08:28:00 +000080if test "x${GCC}" = "xyes" ; then
81 COMPILER="GCC"
82 AC_MSG_CHECKING([whether we are using the Intel compiler])
83 AC_EGREP_CPP([^__INTEL_COMPILER], [__INTEL_COMPILER],
84 [AC_MSG_RESULT([no])],
85 [COMPILER="ICC"
86 AC_MSG_RESULT([yes])]
87 )
88else
89 AC_MSG_CHECKING([whether we are using SunPro compiler])
90 AC_EGREP_CPP([^__SUNPRO_C.*0x5(7|8|9)], ["__SUNPRO_C" __SUNPRO_C],
91 [AC_MSG_RESULT([no])],
92 [COMPILER="SUNPRO"
93 AC_MSG_RESULT([yes])]
94 )
95fi
paul7ea487b2003-03-17 02:05:07 +000096
paula49c0ff2004-09-30 06:08:58 +000097dnl ---------------------------------------------
paul7ea487b2003-03-17 02:05:07 +000098dnl If CLFAGS doesn\'t exist set default value
paula49c0ff2004-09-30 06:08:58 +000099dnl AC_PROG_CC will have set minimal default
100dnl already, eg "-O2 -g" for gcc, "-g" for others
paul27eebb32004-07-22 18:16:59 +0000101dnl (Wall is gcc specific... have to make sure
102dnl gcc is being used before setting it)
103dnl
paul6a4b8832005-11-26 08:28:00 +0000104dnl Intel icc 8.0 also sets __GNUC__,
105dnl but doesn't support all these fancy -W options.
hasso1969e4b2005-03-27 13:07:23 +0000106dnl Intel compiler warnings we ignore:
107dnl 279: controlling expression is constant.
108dnl 869: parameter "xxx" was never referenced - to avoid massive warnings
109dnl about "self", "vty", "argc" and "argv" never referenced in DEFUN
110dnl macro.
111dnl 981: operands are evaluated in unspecified order.
paul6a4b8832005-11-26 08:28:00 +0000112dnl
113dnl Sun Studio 10 / SunPro 5.7 is also supported,
114dnl so lets set some sane CFLAGS for it.
115dnl ---------------------------------------------
hasso1969e4b2005-03-27 13:07:23 +0000116
paul6a4b8832005-11-26 08:28:00 +0000117AC_MSG_CHECKING([whether to set a default CFLAGS])
118if test "x${cflags_specified}" = "x" ; then
119 case ${COMPILER} in
120 "ICC")
121 CFLAGS="-Os -g -Wall -wd 279,869,981"
122 AC_MSG_RESULT([Intel default])
123 ;;
124 "GCC")
Andrew J. Schorr5fa05092007-04-30 19:14:08 +0000125 CFLAGS="-Os -fno-omit-frame-pointer -g -std=gnu99 -Wall"
paul6a4b8832005-11-26 08:28:00 +0000126 CFLAGS="${CFLAGS} -Wsign-compare -Wpointer-arith"
127 CFLAGS="${CFLAGS} -Wbad-function-cast -Wwrite-strings"
128 CFLAGS="${CFLAGS} -Wmissing-prototypes -Wmissing-declarations"
129 CFLAGS="${CFLAGS} -Wchar-subscripts -Wcast-qual"
130 # TODO: conditionally addd -Wpacked if handled
131 AC_MSG_RESULT([gcc default])
132 ;;
133 "SUNPRO")
Paul Jakma105b8232006-05-28 08:02:41 +0000134 CFLAGS="-xO4 -v -g -xspace -xcode=pic32 -xstrconst -xc99"
paul6a4b8832005-11-26 08:28:00 +0000135 AC_MSG_RESULT([SunPro default])
136 ;;
137 *)
138 AC_MSG_RESULT([unknown compiler])
139 ;;
140 esac
141else
142 AC_MSG_RESULT([CFLAGS supplied by user])
hasso1969e4b2005-03-27 13:07:23 +0000143fi
144
paul7ea487b2003-03-17 02:05:07 +0000145dnl --------------
146dnl Check programs
147dnl --------------
paul7ea487b2003-03-17 02:05:07 +0000148AC_PROG_INSTALL
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000149AC_PROG_LN_S
paul7ea487b2003-03-17 02:05:07 +0000150AC_PROG_MAKE_SET
151AC_CHECK_TOOL(AR, ar)
paul7ea487b2003-03-17 02:05:07 +0000152
Paul Jakma105b8232006-05-28 08:02:41 +0000153dnl ---------------------------
154dnl We, perhaps unfortunately,
155dnl depend on GNU Make specific
156dnl constructs.
157dnl Give the user a warning if
158dnl not GNU Make.
159dnl ---------------------------
160AC_CACHE_CHECK([if ${MAKE-make} is GNU make], [quagga_cv_gnu_make],
161 [quagga_cv_gnu_make=no
162 if ${MAKE-make} --version 2>/dev/null | \
163 grep '^GNU Make ' >/dev/null ; then
164 quagga_cv_gnu_make=yes;
165 fi
166 ]
167)
168
Paul Jakmad46d2a22007-05-10 16:53:04 +0000169dnl -----------------
170dnl System extensions
171dnl -----------------
Paul Jakmad46d2a22007-05-10 16:53:04 +0000172AC_GNU_SOURCE
paul7ea487b2003-03-17 02:05:07 +0000173
gdt87efd642004-06-30 17:36:11 +0000174dnl -------
175dnl libtool
176dnl -------
paul0fc42942004-08-19 04:41:21 +0000177AC_PROG_LIBTOOL
gdt87efd642004-06-30 17:36:11 +0000178
paul7ea487b2003-03-17 02:05:07 +0000179dnl ----------------------
180dnl Packages configuration
181dnl ----------------------
182AC_ARG_ENABLE(vtysh,
gdtfc9d0742004-06-30 14:25:12 +0000183[ --enable-vtysh include integrated vty shell for Quagga])
paul7ea487b2003-03-17 02:05:07 +0000184AC_ARG_ENABLE(ipv6,
185[ --disable-ipv6 turn off IPv6 related features and daemons])
Joakim Tjernlundcbcd9bf2009-02-16 09:40:39 +0100186AC_ARG_ENABLE(doc,
187[ --disable-doc do not build docs])
paul7ea487b2003-03-17 02:05:07 +0000188AC_ARG_ENABLE(zebra,
189[ --disable-zebra do not build zebra daemon])
190AC_ARG_ENABLE(bgpd,
191[ --disable-bgpd do not build bgpd])
192AC_ARG_ENABLE(ripd,
193[ --disable-ripd do not build ripd])
194AC_ARG_ENABLE(ripngd,
195[ --disable-ripngd do not build ripngd])
196AC_ARG_ENABLE(ospfd,
197[ --disable-ospfd do not build ospfd])
paul7ea487b2003-03-17 02:05:07 +0000198AC_ARG_ENABLE(ospf6d,
199[ --disable-ospf6d do not build ospf6d])
ajsd0199432004-12-22 14:03:52 +0000200AC_ARG_ENABLE(watchquagga,
201[ --disable-watchquagga do not build watchquagga])
jardin9e867fe2003-12-23 08:56:18 +0000202AC_ARG_ENABLE(isisd,
hassoae399ab2004-09-13 20:22:18 +0000203[ --enable-isisd build isisd])
Greg Troxel97cee872007-08-02 13:36:56 +0000204AC_ARG_ENABLE(solaris,
205[ --enable-solaris build solaris])
paul7ea487b2003-03-17 02:05:07 +0000206AC_ARG_ENABLE(bgp-announce,
207[ --disable-bgp-announce, turn off BGP route announcement])
208AC_ARG_ENABLE(netlink,
209[ --enable-netlink force to use Linux netlink interface])
210AC_ARG_ENABLE(broken-aliases,
211[ --enable-broken-aliases enable aliases as distinct interfaces for Linux 2.2.X])
Joakim Tjernlundfb62a3c2008-05-13 20:03:32 +0200212AC_ARG_WITH(crypto,
213[ --without-crypto do not use libcrypto in SNMP])
paul7ea487b2003-03-17 02:05:07 +0000214AC_ARG_ENABLE(snmp,
215[ --enable-snmp enable SNMP support])
216AC_ARG_WITH(libpam,
217[ --with-libpam use libpam for PAM support in vtysh])
hasso71c0fb52003-05-25 20:18:13 +0000218AC_ARG_ENABLE(tcp-zebra,
paul7ea487b2003-03-17 02:05:07 +0000219[ --enable-tcp-zebra enable TCP/IP socket connection between zebra and protocol daemon])
paul7ea487b2003-03-17 02:05:07 +0000220AC_ARG_ENABLE(opaque-lsa,
paul1ef74ef2003-03-21 15:16:05 +0000221[ --enable-opaque-lsa enable OSPF Opaque-LSA with OSPFAPI support (RFC2370)])
222AC_ARG_ENABLE(ospfapi,
223[ --disable-ospfapi do not build OSPFAPI to access the OSPF LSA Database,
224 (this is the default if --enable-opaque-lsa is not set)])
225AC_ARG_ENABLE(ospfclient,
226[ --disable-ospfclient do not build OSPFAPI client for OSPFAPI,
227 (this is the default if --disable-ospfapi is set)])
paul7ea487b2003-03-17 02:05:07 +0000228AC_ARG_ENABLE(ospf-te,
229[ --enable-ospf-te enable Traffic Engineering Extension to OSPF])
230AC_ARG_ENABLE(multipath,
231[ --enable-multipath=ARG enable multipath function, ARG must be digit])
Paul P Komkoff Jrfe86b482008-08-13 16:56:05 +0100232AC_ARG_ENABLE(user,
233 AC_HELP_STRING([--enable-user=user], [user to run Quagga suite as (default quagga)]))
234AC_ARG_ENABLE(group,
235 AC_HELP_STRING([--enable-group=group], [group to run Quagga suite as (default quagga)]))
pauledd7c242003-06-04 13:59:38 +0000236AC_ARG_ENABLE(vty_group,
paul6b6942f2004-10-22 04:55:05 +0000237[ --enable-vty-group=ARG set vty sockets to have specified group as owner])
gdtaa593d52003-12-22 20:15:53 +0000238AC_ARG_ENABLE(configfile_mask,
239[ --enable-configfile-mask=ARG set mask for config files])
240AC_ARG_ENABLE(logfile_mask,
241[ --enable-logfile-mask=ARG set mask for log files])
pauledd7c242003-06-04 13:59:38 +0000242
hasso71c0fb52003-05-25 20:18:13 +0000243AC_ARG_ENABLE(rtadv,
paul6b6942f2004-10-22 04:55:05 +0000244[ --disable-rtadv disable IPV6 router advertisement feature])
hassoca776982004-06-12 14:33:05 +0000245AC_ARG_ENABLE(irdp,
paul6b6942f2004-10-22 04:55:05 +0000246[ --enable-irdp enable IRDP server support in zebra])
hassof695b012005-04-02 19:03:39 +0000247AC_ARG_ENABLE(isis_topology,
248[ --enable-isis-topology enable IS-IS topology generator])
hasso41d3fc92004-04-06 11:59:00 +0000249AC_ARG_ENABLE(capabilities,
250[ --disable-capabilities disable using POSIX capabilities])
paul6b6942f2004-10-22 04:55:05 +0000251AC_ARG_ENABLE(gcc_ultra_verbose,
252[ --enable-gcc-ultra-verbose enable ultra verbose GCC warnings])
Paul Jakma3453a712009-06-12 14:21:02 +0100253AC_ARG_ENABLE(linux24_tcp_md5,
254[ --enable-linux24-tcp-md5 enable support for old, Linux-2.4 RFC2385 patch])
ajs3cade262004-12-29 17:50:22 +0000255AC_ARG_ENABLE(gcc-rdynamic,
256[ --enable-gcc-rdynamic enable gcc linking with -rdynamic for better backtraces])
ajs924b9222005-04-16 17:11:24 +0000257AC_ARG_ENABLE(time-check,
258[ --disable-time-check disable slow thread warning messages])
Jeremy Jackson25f45882009-01-12 16:06:12 -0500259AC_ARG_ENABLE(pcreposix,
260[ --enable-pcreposix enable using PCRE Posix libs for regex functions])
paul6b6942f2004-10-22 04:55:05 +0000261
262if test x"${enable_gcc_ultra_verbose}" = x"yes" ; then
263 CFLAGS="${CFLAGS} -W -Wcast-qual -Wstrict-prototypes"
264 CFLAGS="${CFLAGS} -Wmissing-declarations -Wmissing-noreturn"
265 CFLAGS="${CFLAGS} -Wmissing-format-attribute -Wunreachable-code"
266 CFLAGS="${CFLAGS} -Wpacked -Wpadded"
267fi
paul7ea487b2003-03-17 02:05:07 +0000268
ajs3cade262004-12-29 17:50:22 +0000269if test x"${enable_gcc_rdynamic}" = x"yes" ; then
270 LDFLAGS="${LDFLAGS} -rdynamic"
271fi
272
ajs924b9222005-04-16 17:11:24 +0000273if test x"${enable_time_check}" != x"no" ; then
274 if test x"${enable_time_check}" = x"yes" -o x"${enable_time_check}" = x ; then
275 AC_DEFINE(CONSUMED_TIME_CHECK,5000000,Consumed Time Check)
276 else
277 AC_DEFINE_UNQUOTED(CONSUMED_TIME_CHECK,$enable_time_check,Consumed Time Check)
278 fi
279fi
280
paul7ea487b2003-03-17 02:05:07 +0000281if test "${enable_broken_aliases}" = "yes"; then
282 if test "${enable_netlink}" = "yes"
283 then
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000284 AC_MSG_FAILURE([Sorry you can not use netlink with broken aliases])
paul7ea487b2003-03-17 02:05:07 +0000285 fi
286 AC_DEFINE(HAVE_BROKEN_ALIASES,,Broken Alias)
287 enable_netlink=no
288fi
289
290if test "${enable_tcp_zebra}" = "yes"; then
291 AC_DEFINE(HAVE_TCP_ZEBRA,,Use TCP for zebra communication)
292fi
293
paul7ea487b2003-03-17 02:05:07 +0000294if test "${enable_opaque_lsa}" = "yes"; then
295 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
296fi
297
298if test "${enable_ospf_te}" = "yes"; then
299 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
300 AC_DEFINE(HAVE_OSPF_TE,,OSPF TE)
301fi
302
Paul Jakma3453a712009-06-12 14:21:02 +0100303if test "${enable_linux24_tcp_md5}" = "yes"; then
304 AC_DEFINE(HAVE_TCP_MD5_LINUX24,,Old Linux 2.4 TCP MD5 Signature Patch)
305fi
306
gdtd2a0ccc2003-12-03 18:13:48 +0000307AC_MSG_CHECKING(if zebra should be configurable to send Route Advertisements)
308if test "${enable_rtadv}" != "no"; then
hasso71c0fb52003-05-25 20:18:13 +0000309 AC_MSG_RESULT(yes)
gdtd2a0ccc2003-12-03 18:13:48 +0000310 AC_DEFINE(HAVE_RTADV,,Enable IPv6 Routing Advertisement support)
paul2487bea2003-05-25 23:51:31 +0000311else
312 AC_MSG_RESULT(no)
hasso71c0fb52003-05-25 20:18:13 +0000313fi
paul7ea487b2003-03-17 02:05:07 +0000314
hassoca776982004-06-12 14:33:05 +0000315if test "${enable_irdp}" = "yes"; then
316 AC_DEFINE(HAVE_IRDP,, IRDP )
317fi
318
hassof695b012005-04-02 19:03:39 +0000319if test "${enable_isisd}" = "yes" && test "${enable_isis_topology}" = yes; then
320 AC_DEFINE(TOPOLOGY_GENERATE,,Enable IS-IS topology generator code)
321 ISIS_TOPOLOGY_INCLUDES="-I./topology"
322 ISIS_TOPOLOGY_DIR="topology"
323 ISIS_TOPOLOGY_LIB="./topology/libtopology.a"
324fi
325
326AC_SUBST(ISIS_TOPOLOGY_INCLUDES)
327AC_SUBST(ISIS_TOPOLOGY_DIR)
328AC_SUBST(ISIS_TOPOLOGY_LIB)
329
paul79cb2162003-06-06 12:19:53 +0000330if test "${enable_user}" = "yes" || test x"${enable_user}" = x""; then
paule8f29842003-08-12 13:08:31 +0000331 enable_user="quagga"
pauledd7c242003-06-04 13:59:38 +0000332elif test "${enable_user}" = "no"; then
333 enable_user="root"
334fi
pauledd7c242003-06-04 13:59:38 +0000335
paul79cb2162003-06-06 12:19:53 +0000336if test "${enable_group}" = "yes" || test x"${enable_group}" = x""; then
paule8f29842003-08-12 13:08:31 +0000337 enable_group="quagga"
pauledd7c242003-06-04 13:59:38 +0000338elif test "${enable_group}" = "no"; then
339 enable_group="root"
340fi
pauledd7c242003-06-04 13:59:38 +0000341
342if test x"${enable_vty_group}" = x"yes" ; then
paul8d4aee52003-06-06 00:30:35 +0000343 AC_MSG_ERROR([--enable-vty-group requires a group as argument, not yes])
paul79cb2162003-06-06 12:19:53 +0000344elif test x"${enable_vty_group}" != x""; then
paul8d4aee52003-06-06 00:30:35 +0000345 if test x"${enable_vty_group}" != x"no"; then
pauledd7c242003-06-04 13:59:38 +0000346 AC_DEFINE_UNQUOTED(VTY_GROUP, "${enable_vty_group}", VTY Sockets Group)
347 fi
348fi
paul26275b02005-04-11 07:10:47 +0000349AC_SUBST([enable_user])
350AC_SUBST([enable_group])
351AC_SUBST([enable_vty_group])
352AC_DEFINE_UNQUOTED(QUAGGA_USER, "${enable_user}", Quagga User)
353AC_DEFINE_UNQUOTED(QUAGGA_GROUP, "${enable_group}", Quagga Group)
pauledd7c242003-06-04 13:59:38 +0000354
gdtaa593d52003-12-22 20:15:53 +0000355enable_configfile_mask=${enable_configfile_mask:-0600}
356AC_DEFINE_UNQUOTED(CONFIGFILE_MASK, ${enable_configfile_mask}, Mask for config files)
357
358enable_logfile_mask=${enable_logfile_mask:-0600}
359AC_DEFINE_UNQUOTED(LOGFILE_MASK, ${enable_logfile_mask}, Mask for log files)
360
paul7ea487b2003-03-17 02:05:07 +0000361MULTIPATH_NUM=1
362
363case "${enable_multipath}" in
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000364 [[0-9]|[1-9][0-9]])
paul7ea487b2003-03-17 02:05:07 +0000365 MULTIPATH_NUM="${enable_multipath}"
366 ;;
367 "")
368 ;;
369 *)
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000370 AC_MSG_FAILURE([Please specify digit to enable multipath ARG])
paul7ea487b2003-03-17 02:05:07 +0000371 ;;
372esac
373
paul7ea487b2003-03-17 02:05:07 +0000374AC_SUBST(MULTIPATH_NUM)
375
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000376dnl ------------------------------------
377dnl Check C keywords and standard types
378dnl ------------------------------------
379AC_C_CONST
380AC_C_INLINE
381AC_C_RESTRICT
382AC_C_VOLATILE
pauldc7a2bf2003-10-22 00:07:44 +0000383AC_HEADER_STDC
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000384AC_HEADER_TIME
385AC_HEADER_SYS_WAIT
386dnl AC_TYPE_PID_T
387AC_TYPE_UID_T
388AC_TYPE_MODE_T
389AC_TYPE_SIZE_T
390AC_TYPE_SIGNAL
391AC_STRUCT_TM
pauldc7a2bf2003-10-22 00:07:44 +0000392
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000393dnl -------------------------
394dnl Check other header files.
395dnl -------------------------
396AC_CHECK_HEADERS([stropts.h sys/ksym.h sys/times.h sys/select.h \
397 sys/types.h linux/version.h netdb.h asm/types.h \
398 sys/param.h limits.h signal.h libutil.h \
Paul Jakma6511cab2009-06-18 17:38:01 +0100399 sys/socket.h netinet/in.h time.h sys/time.h])
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000400
401dnl Utility macro to avoid retyping includes all the time
402m4_define([QUAGGA_INCLUDES],
403[#ifdef SUNOS_5
404#define _XPG4_2
405#define __EXTENSIONS__
406#endif
407#include <stdio.h>
408#if STDC_HEADERS
409# include <stdlib.h>
410# include <stddef.h>
411#else
412# if HAVE_STDLIB_H
413# include <stdlib.h>
414# endif
415#endif
416#if HAVE_SYS_TYPES_H
417# include <sys/types.h>
418#endif
419/* sys/conf.h depends on param.h on FBSD at least */
420#if HAVE_SYS_PARAM_H
421# include <sys/param.h>
422#endif
423/* Required for MAXSIG */
424#if HAVE_SIGNAL_H
425# include <signal.h>
426#endif
427#if HAVE_SYS_SOCKET_H
428# include <sys/socket.h>
429#endif
430#if HAVE_NETINET_IN_H
431# include <netinet/in.h>
432#endif
Paul Jakma6511cab2009-06-18 17:38:01 +0100433#ifdef TIME_WITH_SYS_TIME
434# include <sys/time.h>
435# include <time.h>
436#else
437# ifdef HAVE_SYS_TIME_H
438# include <sys/time.h>
439# else
440# include <time.h>
441# endif
442#endif /* TIME_WITH_SYS_TIME */
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000443])dnl
444
Denis Ovsienko51122332011-07-14 16:30:08 +0400445dnl HAVE_NET_IF_H must be discovered by the time the longer AC_CHECK_HEADERS
446dnl round below execution begins, otherwise it doesn't properly detect
447dnl HAVE_NETINET6_IN6_VAR_H, HAVE_NET_IF_VAR_H and HAVE_STRUCT_IN6_ALIASREQ
448dnl on FreeBSD (BZ#408).
449
450AC_CHECK_HEADERS([net/if.h], [], [], QUAGGA_INCLUDES)
451
452m4_define([QUAGGA_INCLUDES],
453QUAGGA_INCLUDES
454[#if HAVE_NET_IF_H
455# include <net/if.h>
456#endif
457])dnl
458
459dnl Same applies for HAVE_NET_IF_VAR_H, which HAVE_NETINET6_ND6_H and
460dnl HAVE_NETINET_IN_VAR_H depend upon. But if_var.h depends on if.h, hence
461dnl an additional round for it.
462
463AC_CHECK_HEADERS([net/if_var.h], [], [], QUAGGA_INCLUDES)
464
465m4_define([QUAGGA_INCLUDES],
466QUAGGA_INCLUDES
467[#if HAVE_NET_IF_VAR_H
468# include <net/if_var.h>
469#endif
470])dnl
471
472AC_CHECK_HEADERS([sys/un.h netinet/in_systm.h netinet/in_var.h \
473 net/if_dl.h net/netopt.h net/route.h \
Paul Jakma11770e12007-06-22 16:14:42 +0000474 inet/nd.h arpa/inet.h netinet/ip_icmp.h \
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000475 fcntl.h stddef.h sys/ioctl.h syslog.h wchar.h wctype.h \
476 sys/sysctl.h sys/sockio.h kvm.h sys/conf.h],
477 [], [], QUAGGA_INCLUDES)
478
479AC_CHECK_HEADERS([ucontext.h], [], [],
480[#ifndef __USE_GNU
481#define __USE_GNU
482#endif /* __USE_GNU */
483QUAGGA_INCLUDES
484])
485
486m4_define([QUAGGA_INCLUDES],
487QUAGGA_INCLUDES
Denis Ovsienko51122332011-07-14 16:30:08 +0400488[#if HAVE_SYS_UN_H
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000489# include <sys/un.h>
490#endif
491#if HAVE_NETINET_IN_SYSTM_H
492# include <netinet/in_systm.h>
493#endif
494#if HAVE_NETINET_IN_VAR_H
495# include <netinet/in_var.h>
496#endif
497#if HAVE_NET_IF_DL_H
498# include <net/if_dl.h>
499#endif
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000500#if HAVE_NET_NETOPT_H
501# include <net/netopt.h>
502#endif
503#if HAVE_NET_ROUTE_H
504# include <net/route.h>
505#endif
506#if HAVE_INET_ND_H
507# include <inet/nd.h>
508#endif
509#if HAVE_ARPA_INET_H
510# include <arpa/inet.h>
511#endif
Paul Jakma11770e12007-06-22 16:14:42 +0000512/* Required for IDRP */
513#if HAVE_NETINET_IP_ICMP_H
514# include <netinet/ip_icmp.h>
515#endif
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000516])dnl
pauldc7a2bf2003-10-22 00:07:44 +0000517
gdtfa3232e2003-12-03 17:52:30 +0000518dnl V6 headers are checked below, after we check for v6
paul7ea487b2003-03-17 02:05:07 +0000519
paul7ea487b2003-03-17 02:05:07 +0000520dnl Some systems (Solaris 2.x) require libnsl (Network Services Library)
521case "$host" in
paulafd8a122005-03-12 06:36:10 +0000522 [*-sunos5.[6-7]*] | [*-solaris2.[6-7]*])
paul7ea487b2003-03-17 02:05:07 +0000523 opsys=sol2-6
paulafd8a122005-03-12 06:36:10 +0000524 AC_DEFINE(SUNOS_56, 1, SunOS 5.6 to 5.7)
paul19877dd2004-05-11 10:49:35 +0000525 AC_DEFINE(SUNOS_5, 1, SunOS 5)
paul7ea487b2003-03-17 02:05:07 +0000526 AC_CHECK_LIB(xnet, main)
527 CURSES=-lcurses
528 ;;
paul1b73de82005-04-10 16:31:51 +0000529 [*-sunos5.[8-9]] \
530 | [*-sunos5.1[0-9]] \
531 | [*-sunos5.1[0-9].[0-9]] \
532 | [*-solaris2.[8-9]] \
533 | [*-solaris2.1[0-9]] \
534 | [*-solaris2.1[0-9].[0-9]])
paulafd8a122005-03-12 06:36:10 +0000535 opsys=sol8
Paul Jakmafb66b292006-05-28 08:26:15 +0000536 AC_DEFINE(SUNOS_59, 1, [SunOS 5.8 up])
537 AC_DEFINE(SUNOS_5, 1, [SunOS 5])
paul19877dd2004-05-11 10:49:35 +0000538 AC_CHECK_LIB(socket, main)
539 AC_CHECK_LIB(nsl, main)
paul1b73de82005-04-10 16:31:51 +0000540 AC_CHECK_LIB(umem, main)
Paul Jakmafb66b292006-05-28 08:26:15 +0000541 AC_CHECK_FUNCS([printstack],
542 [AC_DEFINE([HAVE_PRINTSTACK],1,[Solaris printstack])
543 AC_DEFINE([HAVE_STACK_TRACE],1,[Stack symbols decode functionality])
544 ])
paul19877dd2004-05-11 10:49:35 +0000545 CURSES=-lcurses
546 ;;
paul7ea487b2003-03-17 02:05:07 +0000547 *-sunos5* | *-solaris2*)
paul19877dd2004-05-11 10:49:35 +0000548 AC_DEFINE(SUNOS_5,,SunOS 5, Unknown SunOS)
paul7ea487b2003-03-17 02:05:07 +0000549 AC_CHECK_LIB(socket, main)
550 AC_CHECK_LIB(nsl, main)
551 CURSES=-lcurses
552 ;;
hassoc45eb832005-02-19 13:58:06 +0000553 *-linux*)
paul7ea487b2003-03-17 02:05:07 +0000554 opsys=gnu-linux
555 AC_DEFINE(GNU_LINUX,,GNU Linux)
556 ;;
557 *-nec-sysv4*)
558 AC_CHECK_LIB(nsl, gethostbyname)
559 AC_CHECK_LIB(socket, socket)
560 ;;
paul7ea487b2003-03-17 02:05:07 +0000561 *-openbsd*)
562 opsys=openbsd
563 AC_DEFINE(OPEN_BSD,,OpenBSD)
564 ;;
565 *-bsdi*)
566 opsys=bsdi
567 OTHER_METHOD="mtu_kvm.o"
568 AC_CHECK_LIB(kvm, main)
569 ;;
paul49e3b3c2003-10-23 20:39:50 +0000570 *-irix6.5)
pauldc7a2bf2003-10-22 00:07:44 +0000571 opsys=irix
572 AC_DEFINE(IRIX_65,,IRIX 6.5)
573 ;;
paul7ea487b2003-03-17 02:05:07 +0000574esac
575
Paul Jakma62c9f502009-07-19 17:33:21 +0100576AC_SYS_LARGEFILE
577
paul7ea487b2003-03-17 02:05:07 +0000578dnl ---------------------
579dnl Integrated VTY option
580dnl ---------------------
581case "${enable_vtysh}" in
582 "yes") VTYSH="vtysh";
583 AC_DEFINE(VTYSH,,VTY shell)
gdtfc9d0742004-06-30 14:25:12 +0000584 AC_PATH_PROG(PERL, perl)
585dnl Vtysh uses libreadline, which looks for termcap functions at
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000586dnl configure time. We follow readlines search order.
gdtfc9d0742004-06-30 14:25:12 +0000587dnl The required procedures are in libtermcap on NetBSD, in
588dnl [TODO] on Linux, and in [TODO] on Solaris.
hassoc0689392005-08-25 12:00:58 +0000589 AC_CHECK_LIB(termcap, tputs, LIBREADLINE="$LIBREADLINE -ltermcap",
paula9694592005-08-25 14:50:05 +0000590 [AC_CHECK_LIB(tinfo, tputs, LIBREADLINE="$LIBREADLINE -ltinfo",
591 [AC_CHECK_LIB(curses, tputs, LIBREADLINE="$LIBREADLINE -lcurses",
592 [AC_CHECK_LIB(ncurses, tputs,
593 LIBREADLINE="$LIBREADLINE -lncurses")]
594 )]
595 )]
596 )
597 AC_CHECK_LIB(readline, main, LIBREADLINE="$LIBREADLINE -lreadline",,
598 "$LIBREADLINE")
paul7ea487b2003-03-17 02:05:07 +0000599 if test $ac_cv_lib_readline_main = no; then
gdtfc9d0742004-06-30 14:25:12 +0000600 AC_MSG_ERROR([vtysh needs libreadline but was not found and usable on your system.])
paul7ea487b2003-03-17 02:05:07 +0000601 fi
602 AC_CHECK_HEADER(readline/history.h)
603 if test $ac_cv_header_readline_history_h = no;then
604 AC_MSG_ERROR([readline is too old to have readline/history.h, please update to the latest readline library.])
605 fi
paula9694592005-08-25 14:50:05 +0000606 AC_CHECK_LIB(readline, rl_completion_matches,
607 LIBREADLINE="$LIBREADLINE",, "$LIBREADLINE")
paul3d3de8c2003-05-23 10:33:49 +0000608 if test $ac_cv_lib_readline_rl_completion_matches = no; then
609 AC_DEFINE(rl_completion_matches,completion_matches,Old readline)
610 fi
611 ;;
paul7ea487b2003-03-17 02:05:07 +0000612 "no" ) VTYSH="";;
613 * ) ;;
614esac
hassoc0689392005-08-25 12:00:58 +0000615AC_SUBST(LIBREADLINE)
paul7ea487b2003-03-17 02:05:07 +0000616
617dnl ----------
618dnl PAM module
Denis Ovsienko4a1342a2011-07-15 00:24:15 +0400619dnl
620dnl Quagga detects the PAM library it is built against by checking for a
621dnl functional pam_misc.h (Linux-PAM) or openpam.h (OpenPAM) header. pam_misc.h
622dnl is known to #include pam_appl.h, the standard header of a PAM library, and
623dnl openpam.h doesn't do that, although depends on the header too. Hence a
624dnl little assistance to AC_CHECK_HEADER is necessary for the proper detection
625dnl of OpenPAM.
paul7ea487b2003-03-17 02:05:07 +0000626dnl ----------
627if test "$with_libpam" = "yes"; then
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000628 AC_CHECK_HEADER([security/pam_misc.h],
629 [AC_DEFINE(HAVE_PAM_MISC_H,,Have pam_misc.h)
630 AC_DEFINE(PAM_CONV_FUNC,misc_conv,Have misc_conv)
631 pam_conv_func="misc_conv"
632 ],
633 [], QUAGGA_INCLUDES)
634 AC_CHECK_HEADER([security/openpam.h],
635 [AC_DEFINE(HAVE_OPENPAM_H,,Have openpam.h)
636 AC_DEFINE(PAM_CONV_FUNC,openpam_ttyconv,Have openpam_ttyconv)
637 pam_conv_func="openpam_ttyconv"
638 ],
Denis Ovsienko4a1342a2011-07-15 00:24:15 +0400639 [], QUAGGA_INCLUDES[#include <security/pam_appl.h>])
paul24cd4352003-05-06 12:16:27 +0000640 if test -z "$ac_cv_header_security_pam_misc_h$ac_cv_header_security_openpam_h" ; then
641 AC_MSG_WARN([*** pam support will not be built ***])
642 with_libpam="no"
643 fi
644fi
645
646if test "$with_libpam" = "yes"; then
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000647dnl took this test from proftpds configure.in and suited to our needs
paul7ea487b2003-03-17 02:05:07 +0000648dnl -------------------------------------------------------------------------
649dnl
650dnl This next check looks funky due to a linker problem with some versions
651dnl of the PAM library. Prior to 0.72 release, the Linux PAM shared library
652dnl omitted requiring libdl linking information. PAM-0.72 or better ships
653dnl with RedHat 6.2 and Debian 2.2 or better.
654AC_CHECK_LIB(pam, pam_start,
paul24cd4352003-05-06 12:16:27 +0000655 [AC_CHECK_LIB(pam, $pam_conv_func,
paul7ea487b2003-03-17 02:05:07 +0000656 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
657 LIBPAM="-lpam"],
658 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
659 LIBPAM="-lpam -lpam_misc"]
660 )
661 ],
662
663 [AC_CHECK_LIB(pam, pam_end,
paul24cd4352003-05-06 12:16:27 +0000664 [AC_CHECK_LIB(pam, $pam_conv_func,
paula159ed92003-06-04 11:01:45 +0000665 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000666 LIBPAM="-lpam -ldl"],
paula159ed92003-06-04 11:01:45 +0000667 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000668 LIBPAM="-lpam -ldl -lpam_misc"]
669 )
670 ],AC_MSG_WARN([*** pam support will not be built ***]),
671 [-ldl])
672 ]
673)
674fi
675AC_SUBST(LIBPAM)
676
677dnl -------------------------------
678dnl Endian-ness check
679dnl -------------------------------
680AC_WORDS_BIGENDIAN
681
682dnl -------------------------------
683dnl check the size in byte of the C
684dnl -------------------------------
685dnl AC_CHECK_SIZEOF(char)
686dnl AC_CHECK_SIZEOF(int)
687dnl AC_CHECK_SIZEOF(short)
688dnl AC_CHECK_SIZEOF(long)
689
690dnl ----------------------------
691dnl check existance of functions
692dnl ----------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000693AC_FUNC_CHOWN
694AC_FUNC_FNMATCH
695AC_FUNC_FORK
696AC_FUNC_MALLOC
697AC_FUNC_MEMCMP
698AC_FUNC_MKTIME
699AC_FUNC_STRFTIME
700AC_FUNC_REALLOC
701AC_FUNC_STAT
702AC_FUNC_SELECT_ARGTYPES
703AC_FUNC_STRFTIME
Paul Jakmad46d2a22007-05-10 16:53:04 +0000704dnl Avoid AC_FUNC_STRNLEN because it pulls in AC_SYSTEM_EXTENSIONS which
705dnl can lead to strange side effects. So we just check for strnlen
706dnl directly, see below.
Paul Jakma2b5cb412007-05-10 17:05:16 +0000707dnl AC_FUNC_STRNLENdnl
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000708AC_FUNC_VPRINTF
709
710dnl -------------------------------
711dnl bgpd needs pow() and hence libm
712dnl -------------------------------
713TMPLIBS="$LIBS"
714AC_CHECK_HEADER([math.h],
715 [AC_CHECK_LIB([m], [pow],
716 [LIBM="-lm"
717 LIBS="$LIBS $LIBM"
718 AC_DEFINE(HAVE_LIBM,, Have libm)
719 AC_CHECK_FUNCS(pow,[],[LIBM=""])
720 ])
721])
722if test x"$LIBM" = x ; then
723 AC_MSG_WARN([Unable to find working pow function - bgpd may not link])
724fi
725LIBS="$TMPLIBS"
726AC_SUBST(LIBM)
727
728dnl ---------------
729dnl other functions
730dnl ---------------
731AC_CHECK_FUNCS([dup2 ftruncate getcwd gethostbyname getpagesize gettimeofday \
Paul Jakmad46d2a22007-05-10 16:53:04 +0000732 inet_ntoa inet_aton strnlen \
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000733 memchr memmove memset select socket \
734 strcasecmp strchr strcspn strdup strerror \
735 strncasecmp strndup strrchr strspn strstr \
736 strtol strtoul strlcat strlcpy \
737 daemon snprintf vsnprintf \
738 if_nametoindex if_indextoname getifaddrs \
739 uname fcntl])
740
paula159ed92003-06-04 11:01:45 +0000741AC_CHECK_FUNCS(setproctitle, ,
742 [AC_CHECK_LIB(util, setproctitle,
743 [LIBS="$LIBS -lutil"
744 AC_DEFINE(HAVE_SETPROCTITLE,, Have setproctitle)
745 ]
746 )
747 ]
748)
paul7ea487b2003-03-17 02:05:07 +0000749
750dnl ------------------------------------
751dnl Determine routing get and set method
752dnl ------------------------------------
753AC_MSG_CHECKING(zebra between kernel interface method)
754if test x"$opsys" = x"gnu-linux"; then
755 if test "${enable_netlink}" = "yes";then
756 AC_MSG_RESULT(netlink)
757 RT_METHOD=rt_netlink.o
758 AC_DEFINE(HAVE_NETLINK,,netlink)
759 netlink=yes
760 elif test "${enable_netlink}" = "no"; then
761 AC_MSG_RESULT(ioctl)
762 RT_METHOD=rt_ioctl.o
763 netlink=no
764 else
765 AC_MSG_RESULT(netlink)
766 RT_METHOD=rt_netlink.o
767 AC_DEFINE(HAVE_NETLINK,,netlink)
768 netlink=yes
769 fi
paul19877dd2004-05-11 10:49:35 +0000770elif test x"$opsys" = x"sol2-6";then
771 AC_MSG_RESULT(Route socket)
772 KERNEL_METHOD="kernel_socket.o"
773 RT_METHOD="rt_socket.o"
paulafd8a122005-03-12 06:36:10 +0000774elif test x"$opsys" = x"sol8";then
paul19877dd2004-05-11 10:49:35 +0000775 AC_MSG_RESULT(Route socket)
776 KERNEL_METHOD="kernel_socket.o"
777 RT_METHOD="rt_socket.o"
778elif test "$opsys" = "irix" ; then
779 AC_MSG_RESULT(Route socket)
780 KERNEL_METHOD="kernel_socket.o"
781 RT_METHOD="rt_socket.o"
paul7ea487b2003-03-17 02:05:07 +0000782else
paul19877dd2004-05-11 10:49:35 +0000783 AC_TRY_RUN([#include <errno.h>
paul7ea487b2003-03-17 02:05:07 +0000784#include <sys/types.h>
785#include <sys/socket.h>
786
787main ()
788{
789 int ac_sock;
790
791 ac_sock = socket (AF_ROUTE, SOCK_RAW, 0);
792 if (ac_sock < 0 && errno == EINVAL)
793 exit (1);
794 exit (0);
795}],
796 [KERNEL_METHOD=kernel_socket.o
797 RT_METHOD=rt_socket.o
798 AC_MSG_RESULT(socket)],
799 [RT_METHOD=rt_ioctl.o
800 AC_MSG_RESULT(ioctl)],
801 [KERNEL_METHOD=kernel_socket.o
802 RT_METHOD=rt_socket.o
803 AC_MSG_RESULT(socket)])
paul7ea487b2003-03-17 02:05:07 +0000804fi
805AC_SUBST(RT_METHOD)
806AC_SUBST(KERNEL_METHOD)
807AC_SUBST(OTHER_METHOD)
808
Paul Jakma238497f2007-08-07 18:49:18 +0000809dnl --------------------------
810dnl Determine IS-IS I/O method
811dnl --------------------------
David Lamparter745bf052010-02-02 21:49:35 +0100812AC_DEFINE(ISIS_METHOD_PFPACKET, 1, [ constant value for isis method pfpacket ])
813AC_DEFINE(ISIS_METHOD_DLPI, 2, [ constant value for isis method dlpi ])
814AC_DEFINE(ISIS_METHOD_BPF, 3, [ constant value for isis method bpf ])
Paul Jakma238497f2007-08-07 18:49:18 +0000815AC_CHECK_HEADER(net/bpf.h)
816AC_CHECK_HEADER(sys/dlpi.h)
817AC_MSG_CHECKING(zebra IS-IS I/O method)
818if test x"$opsys" = x"gnu-linux"; then
819 AC_MSG_RESULT(pfpacket)
David Lamparter745bf052010-02-02 21:49:35 +0100820 ISIS_METHOD_MACRO="ISIS_METHOD_PFPACKET"
Paul Jakma238497f2007-08-07 18:49:18 +0000821elif test x"$opsys" = x"sol2-6" -o x"$opsys" = x"sol8"; then
822 AC_MSG_RESULT(DLPI)
David Lamparter745bf052010-02-02 21:49:35 +0100823 ISIS_METHOD_MACRO="ISIS_METHOD_DLPI"
Paul Jakma238497f2007-08-07 18:49:18 +0000824else
825 if test $ac_cv_header_net_bpf_h = no; then
826 if test $ac_cv_header_sys_dlpi_h = no; then
827 AC_MSG_RESULT(none)
828 AC_MSG_WARN([*** IS-IS support will not be built ***])
829 ISISD=""
830 else
831 AC_MSG_RESULT(DLPI)
832 fi
David Lamparter745bf052010-02-02 21:49:35 +0100833 ISIS_METHOD_MACRO="ISIS_METHOD_DLPI"
Paul Jakma238497f2007-08-07 18:49:18 +0000834 else
835 AC_MSG_RESULT(BPF)
David Lamparter745bf052010-02-02 21:49:35 +0100836 ISIS_METHOD_MACRO="ISIS_METHOD_BPF"
Paul Jakma238497f2007-08-07 18:49:18 +0000837 fi
838fi
David Lamparter745bf052010-02-02 21:49:35 +0100839AC_DEFINE_UNQUOTED(ISIS_METHOD, $ISIS_METHOD_MACRO, [ selected method for isis, == one of the constants ])
Paul Jakma238497f2007-08-07 18:49:18 +0000840
ajsb99760a2005-01-04 16:24:43 +0000841dnl ------------------------------------
842dnl check for broken CMSG_FIRSTHDR macro
843dnl ------------------------------------
gdt6c200462005-01-04 17:02:48 +0000844AC_MSG_CHECKING(for broken CMSG_FIRSTHDR)
hasso5b087522005-04-03 23:46:37 +0000845AC_RUN_IFELSE([AC_LANG_SOURCE([[
ajsb99760a2005-01-04 16:24:43 +0000846#ifdef SUNOS_5
847#define _XPG4_2
848#define __EXTENSIONS__
849#endif
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000850#ifdef HAVE_STDLIB_H
851# include <stdlib.h>
852#endif
853#ifdef HAVE_SYS_TYPES_H
ajsb99760a2005-01-04 16:24:43 +0000854#include <sys/types.h>
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000855#endif
856#ifdef HAVE_SYS_SOCKET_H
ajsb99760a2005-01-04 16:24:43 +0000857#include <sys/socket.h>
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000858#endif
ajsb99760a2005-01-04 16:24:43 +0000859
860main()
861{
862 struct msghdr msg;
863 char buf[4];
864
865 msg.msg_control = buf;
866 msg.msg_controllen = 0;
867
868 if (CMSG_FIRSTHDR(&msg) != NULL)
869 exit(0);
870 exit (1);
hasso5b087522005-04-03 23:46:37 +0000871}]])],[AC_MSG_RESULT(yes - using workaround) AC_DEFINE(HAVE_BROKEN_CMSG_FIRSTHDR,,Broken CMSG_FIRSTHDR)],
hassod33e8d72005-04-03 13:07:21 +0000872[AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)])
ajsb99760a2005-01-04 16:24:43 +0000873
paul7ea487b2003-03-17 02:05:07 +0000874dnl ------------------------------
875dnl check kernel route read method
876dnl ------------------------------
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500877AC_CACHE_CHECK([route read method], [quagga_cv_rtread_method],
878[if test "x$netlink" = xyes; then
879 quagga_cv_rtread_method="netlink"
paul7ea487b2003-03-17 02:05:07 +0000880else
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500881for quagga_cv_rtread_method in /proc/net/route /dev/ip /dev/null;
paul7ea487b2003-03-17 02:05:07 +0000882do
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500883 test x`ls $quagga_cv_rtread_method 2>/dev/null` = x"$quagga_cv_rtread_method" && break
paul7ea487b2003-03-17 02:05:07 +0000884done
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500885case $quagga_cv_rtread_method in
886 "/proc/net/route") quagga_cv_rtread_method="proc";;
paul9c30ab62003-07-08 08:36:17 +0000887 "/dev/ip")
888 case "$host" in
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500889 *-freebsd*) quagga_cv_rtread_method="sysctl";;
890 *) quagga_cv_rtread_method="getmsg";;
paul9c30ab62003-07-08 08:36:17 +0000891 esac;;
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500892 *)
893 quagga_cv_rtread_method="sysctl";;
paul7ea487b2003-03-17 02:05:07 +0000894esac
895fi])
Jeremy Jackson5589ffa2009-01-21 18:27:37 -0500896RTREAD_METHOD=rtread_${quagga_cv_rtread_method}.o
paul7ea487b2003-03-17 02:05:07 +0000897AC_SUBST(RTREAD_METHOD)
898
899dnl -----------------------------
900dnl check interface lookup method
901dnl -----------------------------
paul19877dd2004-05-11 10:49:35 +0000902IOCTL_METHOD=ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000903AC_MSG_CHECKING(interface looking up method)
904if test "$netlink" = yes; then
905 AC_MSG_RESULT(netlink)
906 IF_METHOD=if_netlink.o
paul19877dd2004-05-11 10:49:35 +0000907elif test "$opsys" = "sol2-6";then
908 AC_MSG_RESULT(Solaris GIF)
909 IF_METHOD=if_ioctl.o
paulafd8a122005-03-12 06:36:10 +0000910elif test "$opsys" = "sol8";then
paul19877dd2004-05-11 10:49:35 +0000911 AC_MSG_RESULT(Solaris GLIF)
912 IF_METHOD=if_ioctl_solaris.o
913 IOCTL_METHOD=ioctl_solaris.o
914elif test "$opsys" = "irix" ; then
915 AC_MSG_RESULT(IRIX)
916 IF_METHOD=if_ioctl.o
917elif test "$opsys" = "openbsd";then
918 AC_MSG_RESULT(openbsd)
919 IF_METHOD=if_ioctl.o
920elif grep NET_RT_IFLIST /usr/include/sys/socket.h >/dev/null 2>&1; then
921 AC_MSG_RESULT(sysctl)
paul7ea487b2003-03-17 02:05:07 +0000922 IF_METHOD=if_sysctl.o
923 AC_DEFINE(HAVE_NET_RT_IFLIST,,NET_RT_IFLIST)
paul19877dd2004-05-11 10:49:35 +0000924else
paul7ea487b2003-03-17 02:05:07 +0000925 AC_MSG_RESULT(ioctl)
926 IF_METHOD=if_ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000927fi
928AC_SUBST(IF_METHOD)
paul19877dd2004-05-11 10:49:35 +0000929AC_SUBST(IOCTL_METHOD)
paul7ea487b2003-03-17 02:05:07 +0000930
paul42c98192005-05-07 02:22:51 +0000931dnl ---------------------------------------------------------------
932dnl figure out how to specify an interface in multicast sockets API
933dnl ---------------------------------------------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000934AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [], [], QUAGGA_INCLUDES)
paul42c98192005-05-07 02:22:51 +0000935
936AC_MSG_CHECKING([for BSD struct ip_mreq hack])
937AC_TRY_COMPILE([#ifdef HAVE_SYS_PARAM_H
938#include <sys/param.h>
Denis Ovsienkoc5408352009-04-13 20:11:44 +0400939#endif],[#if (defined(__FreeBSD__) && ((__FreeBSD_version >= 500022 && __FreeBSD_version < 700000) || (__FreeBSD_version < 500000 && __FreeBSD_version >= 440000))) || (defined(__NetBSD__) && defined(__NetBSD_Version__) && __NetBSD_Version__ >= 106010000)
paul42c98192005-05-07 02:22:51 +0000940 return (0);
941#else
942 #error No support for BSD struct ip_mreq hack detected
943#endif],[AC_MSG_RESULT(yes)
944AC_DEFINE(HAVE_BSD_STRUCT_IP_MREQ_HACK,,[Can pass ifindex in struct ip_mreq])],
945AC_MSG_RESULT(no))
946
Andrew J. Schorrc543a172008-01-10 15:24:32 +0000947dnl ---------------------------------------------------------------
948dnl figure out how to check link-state
949dnl ---------------------------------------------------------------
Andrew J. Schorr6418bed2008-01-11 16:33:59 +0000950AC_CHECK_HEADER([net/if.h],
951 [AC_CHECK_HEADER( [net/if_media.h],
952 [m4_define([LINK_DETECT_INCLUDES],
953 QUAGGA_INCLUDES
954 [#include <net/if_media.h>
955 ])
956 AC_CHECK_MEMBERS( [struct ifmediareq.ifm_status],
957 AC_DEFINE(HAVE_BSD_LINK_DETECT,,[BSD link-detect]),
958 [], LINK_DETECT_INCLUDES)],
959 [],
960 QUAGGA_INCLUDES)],
961 [], QUAGGA_INCLUDES )
Andrew J. Schorrc543a172008-01-10 15:24:32 +0000962
Paul Jakma0df7c912008-07-21 21:02:49 +0000963dnl ------------------------
964dnl TCP_MD5SIG socket option
965dnl ------------------------
966
967AC_CHECK_HEADER([netinet/tcp.h],
968 [m4_define([MD5_INCLUDES],
969 QUAGGA_INCLUDES
970 [#include <netinet/tcp.h>
971 ])
972 AC_CHECK_DECLS([TCP_MD5SIG], [], [], MD5_INCLUDES)],
973 [],
974 QUAGGA_INCLUDES)
975if test $ac_cv_have_decl_TCP_MD5SIG = no; then
976 AC_CHECK_HEADER([linux/tcp.h],
977 [m4_define([MD5_INCLUDES],
978 QUAGGA_INCLUDES
979 [#include <linux/tcp.h>
980 ])
981 AC_CHECK_DECLS([TCP_MD5SIG], [], [], MD5_INCLUDES)])
982fi
983
paul7ea487b2003-03-17 02:05:07 +0000984dnl -----------------------
985dnl check proc file system.
986dnl -----------------------
Stephen Hemmingercadfb2c2008-08-16 18:03:44 +0100987if test "$netlink" != yes; then
988 if test -r /proc/net/dev; then
989 AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev)
990 IF_PROC=if_proc.o
991 fi
992 if test -r /proc/net/if_inet6; then
993 AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6)
994 IF_PROC=if_proc.o
995 fi
paul7ea487b2003-03-17 02:05:07 +0000996fi
997AC_SUBST(IF_PROC)
998
999dnl -----------------------------
1000dnl check ipforward detect method
1001dnl -----------------------------
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001002AC_CACHE_CHECK([ipforward method], [quagga_cv_ipforward_method],
1003[for quagga_cv_ipforward_method in /proc/net/snmp /dev/ip /dev/null;
paul7ea487b2003-03-17 02:05:07 +00001004do
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001005 test x`ls $quagga_cv_ipforward_method 2>/dev/null` = x"$quagga_cv_ipforward_method" && break
paul7ea487b2003-03-17 02:05:07 +00001006done
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001007case $quagga_cv_ipforward_method in
1008 "/proc/net/snmp") quagga_cv_ipforward_method="proc";;
paul7ea487b2003-03-17 02:05:07 +00001009 "/dev/ip")
1010 case "$host" in
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001011 *-nec-sysv4*) quagga_cv_ipforward_method="ews";;
1012 *-freebsd*) quagga_cv_ipforward_method="sysctl";;
1013 *) quagga_cv_ipforward_method="solaris";;
paul7ea487b2003-03-17 02:05:07 +00001014 esac;;
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001015 *) quagga_cv_ipforward_method="sysctl";;
paul7ea487b2003-03-17 02:05:07 +00001016esac])
Jeremy Jackson5589ffa2009-01-21 18:27:37 -05001017IPFORWARD=ipforward_${quagga_cv_ipforward_method}.o
paul7ea487b2003-03-17 02:05:07 +00001018AC_SUBST(IPFORWARD)
1019
1020AC_CHECK_FUNCS(getaddrinfo, [have_getaddrinfo=yes], [have_getaddrinfo=no])
1021
1022dnl ----------
1023dnl IPv6 check
1024dnl ----------
1025AC_MSG_CHECKING(whether does this OS have IPv6 stack)
1026if test "${enable_ipv6}" = "no"; then
1027 AC_MSG_RESULT(disabled)
1028else
1029dnl ----------
1030dnl INRIA IPv6
1031dnl ----------
paula159ed92003-06-04 11:01:45 +00001032 if grep IPV6_INRIA_VERSION /usr/include/netinet/in.h >/dev/null 2>&1; then
1033 zebra_cv_ipv6=yes
1034 AC_DEFINE(HAVE_IPV6,1,INRIA IPv6)
1035 AC_DEFINE(INRIA_IPV6,1,INRIA IPv6)
1036 RIPNGD="ripngd"
1037 OSPF6D="ospf6d"
1038 LIB_IPV6=""
1039 AC_MSG_RESULT(INRIA IPv6)
paul7ea487b2003-03-17 02:05:07 +00001040dnl ---------
1041dnl KAME IPv6
1042dnl ---------
paula159ed92003-06-04 11:01:45 +00001043 elif grep WIDE /usr/include/netinet6/in6.h >/dev/null 2>&1; then
1044 zebra_cv_ipv6=yes
1045 AC_DEFINE(HAVE_IPV6,1,KAME IPv6)
1046 AC_DEFINE(KAME,1,KAME IPv6)
1047 RIPNGD="ripngd"
1048 OSPF6D="ospf6d"
1049 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
paul7ea487b2003-03-17 02:05:07 +00001050 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +00001051 fi
1052 AC_MSG_RESULT(KAME)
hasso71c0fb52003-05-25 20:18:13 +00001053dnl -------------------------
1054dnl MUSICA IPv6
1055dnl default host check
1056dnl It is not used by Kheops
1057dnl -------------------------
paula159ed92003-06-04 11:01:45 +00001058 elif grep MUSICA /usr/include6/netinet6/in6.h >/dev/null 2>&1; then
1059 zebra_cv_ipv6=yes
1060 AC_DEFINE(HAVE_IPV6,1,Musicia IPv6)
1061 AC_DEFINE(MUSICA,1,Musica IPv6 stack)
1062 AC_DEFINE(KAME,1,KAME IPv6 stack)
1063 RIPNGD="ripngd"
1064 OSPF6D="ospf6d"
1065 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
hasso71c0fb52003-05-25 20:18:13 +00001066 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +00001067 fi
1068 AC_MSG_RESULT(MUSICA)
paul7ea487b2003-03-17 02:05:07 +00001069dnl ---------
1070dnl NRL check
1071dnl ---------
paula159ed92003-06-04 11:01:45 +00001072 elif grep NRL /usr/include/netinet6/in6.h >/dev/null 2>&1; then
1073 zebra_cv_ipv6=yes
1074 AC_DEFINE(HAVE_IPV6,1,NRL IPv6)
1075 AC_DEFINE(NRL,1,NRL)
1076 RIPNGD="ripngd"
1077 OSPF6D="ospf6d"
1078 if test x"$opsys" = x"bsdi";then
paul7ea487b2003-03-17 02:05:07 +00001079 AC_DEFINE(BSDI_NRL,,BSDI)
1080 AC_MSG_RESULT(BSDI_NRL)
paula159ed92003-06-04 11:01:45 +00001081 else
paul7ea487b2003-03-17 02:05:07 +00001082 AC_MSG_RESULT(NRL)
paula159ed92003-06-04 11:01:45 +00001083 fi
paul19877dd2004-05-11 10:49:35 +00001084dnl ------------------------------------
1085dnl Solaris 9, 10 and potentially higher
1086dnl ------------------------------------
paulafd8a122005-03-12 06:36:10 +00001087 elif test x"$opsys" = x"sol8"; then
paul19877dd2004-05-11 10:49:35 +00001088 zebra_cv_ipv6=yes;
1089 AC_DEFINE(HAVE_IPV6, 1, IPv6)
1090 AC_DEFINE(SOLARIS_IPV6, 1, Solaris IPv6)
1091 RIPNGD="ripngd"
1092 OSPF6D="ospf6d"
1093 AC_MSG_RESULT(Solaris IPv6)
paul7ea487b2003-03-17 02:05:07 +00001094dnl ----------
1095dnl Linux IPv6
1096dnl ----------
paula159ed92003-06-04 11:01:45 +00001097 elif test "${enable_ipv6}" = "yes"; then
1098 AC_EGREP_CPP(yes, [
1099 #include <linux/version.h>
1100 /* 2.1.128 or later */
1101 #if LINUX_VERSION_CODE >= 0x020180
1102 yes
1103 #endif],
1104 [zebra_cv_ipv6=yes
1105 zebra_cv_linux_ipv6=yes
1106 AC_MSG_RESULT(Linux IPv6)])
1107 else
1108 if test x`ls /proc/net/ipv6_route 2>/dev/null` = x"/proc/net/ipv6_route"
1109 then
paul7ea487b2003-03-17 02:05:07 +00001110 zebra_cv_ipv6=yes
1111 zebra_cv_linux_ipv6=yes
1112 AC_MSG_RESULT(Linux IPv6)
paula159ed92003-06-04 11:01:45 +00001113 fi
1114 fi
paul7ea487b2003-03-17 02:05:07 +00001115
paula159ed92003-06-04 11:01:45 +00001116 if test "$zebra_cv_linux_ipv6" = "yes";then
hasso850d39f2005-06-30 13:52:20 +00001117 AC_MSG_CHECKING(whether libc has IPv6 support)
1118 AC_TRY_LINK([#include <netinet/in.h>
1119 ],[ int a; a = (int) in6addr_any.s6_addr[0]; if (a != 12345) return a; ],
1120 [AC_MSG_RESULT(yes)
1121 zebra_cv_ipv6=yes
1122 zebra_cv_linux_ipv6=yes],
1123 [AC_MSG_RESULT(no)
1124 zebra_cv_ipv6=no
1125 zebra_cv_linux_ipv6=no])
1126 fi
1127
1128 if test "$zebra_cv_linux_ipv6" = "yes";then
paula159ed92003-06-04 11:01:45 +00001129 AC_MSG_CHECKING(for GNU libc >= 2.1)
1130 AC_DEFINE(HAVE_IPV6,1,Linux IPv6)
1131 AC_EGREP_CPP(yes, [
paul7ea487b2003-03-17 02:05:07 +00001132#include <features.h>
1133#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
1134 yes
paula159ed92003-06-04 11:01:45 +00001135#endif],
1136 [glibc=yes
1137 AC_DEFINE(LINUX_IPV6,1,Linux IPv6 stack)
1138 AC_MSG_RESULT(yes)],
1139 AC_MSG_RESULT(no)
1140 )
1141 RIPNGD="ripngd"
1142 OSPF6D="ospf6d"
1143 if test "$glibc" != "yes"; then
paul7ea487b2003-03-17 02:05:07 +00001144 INCLUDES="-I/usr/inet6/include"
1145 if test x`ls /usr/inet6/lib/libinet6.a 2>/dev/null` != x;then
1146 LIB_IPV6="-L/usr/inet6/lib -linet6"
1147 fi
paula159ed92003-06-04 11:01:45 +00001148 fi
1149 fi
paul7ea487b2003-03-17 02:05:07 +00001150
1151dnl -----------------------
1152dnl Set IPv6 related values
1153dnl -----------------------
paula159ed92003-06-04 11:01:45 +00001154 LIBS="$LIB_IPV6 $LIBS"
1155 AC_SUBST(LIB_IPV6)
paul7ea487b2003-03-17 02:05:07 +00001156
paula159ed92003-06-04 11:01:45 +00001157 if test x"$RIPNGD" = x""; then
1158 AC_MSG_RESULT(IPv4 only)
1159 fi
paul7ea487b2003-03-17 02:05:07 +00001160fi
1161
gdtfa3232e2003-12-03 17:52:30 +00001162dnl ------------------
1163dnl IPv6 header checks
1164dnl ------------------
1165if test "x${zebra_cv_ipv6}" = "xyes"; then
1166AC_CHECK_HEADERS([netinet6/in6.h netinet/in6_var.h netinet/icmp6.h \
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001167 netinet6/in6_var.h netinet6/nd6.h], [], [],
1168 QUAGGA_INCLUDES)
gdtfa3232e2003-12-03 17:52:30 +00001169fi
1170
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001171m4_define([QUAGGA_INCLUDES],dnl
1172QUAGGA_INCLUDES
1173[#if HAVE_NETINET6_IN6_H
1174#include <netinet6/in6.h>
1175#endif
1176#if HAVE_NETINET_IN6_VAR_H
1177#include <netinet/in6_var.h>
1178#endif
1179#if HAVE_NETINET_ICMP6_H
1180# include <netinet/icmp6.h>
1181#endif
1182#if HAVE_NETINET6_IN6_VAR_H
1183# include <netinet6/in6_var.h>
1184#endif
1185#if HAVE_NETINET6_ND6_H
Hasso Tepperfbf24542007-06-25 19:30:59 +00001186# include <netinet6/nd6.h>
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001187#endif
1188])dnl
1189
Joakim Tjernlundcbcd9bf2009-02-16 09:40:39 +01001190dnl disable doc check
1191if test "${enable_doc}" = "no";then
1192 DOC=""
1193else
1194 DOC="doc"
1195fi
1196
paul7ea487b2003-03-17 02:05:07 +00001197dnl --------------------
1198dnl Daemon disable check
1199dnl --------------------
1200if test "${enable_zebra}" = "no";then
1201 ZEBRA=""
1202else
1203 ZEBRA="zebra"
1204fi
1205
1206if test "${enable_bgpd}" = "no";then
1207 BGPD=""
1208else
1209 BGPD="bgpd"
1210fi
1211
1212if test "${enable_ripd}" = "no";then
1213 RIPD=""
1214else
1215 RIPD="ripd"
1216fi
1217
1218if test "${enable_ospfd}" = "no";then
1219 OSPFD=""
1220else
1221 OSPFD="ospfd"
1222fi
1223
ajsd0199432004-12-22 14:03:52 +00001224if test "${enable_watchquagga}" = "no";then
1225 WATCHQUAGGA=""
1226else
1227 WATCHQUAGGA="watchquagga"
1228fi
1229
paul1ef74ef2003-03-21 15:16:05 +00001230OSPFCLIENT=""
1231if test "${enable_opaque_lsa}" = "yes"; then
1232 if test "${enable_ospfapi}" != "no";then
paul9a569842003-03-28 01:45:13 +00001233 AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI)
paul1ef74ef2003-03-21 15:16:05 +00001234
1235 if test "${enable_ospfclient}" != "no";then
1236 OSPFCLIENT="ospfclient"
1237 fi
1238 fi
1239
paul7ea487b2003-03-17 02:05:07 +00001240fi
1241
1242case "${enable_ripngd}" in
1243 "yes") RIPNGD="ripngd";;
1244 "no" ) RIPNGD="";;
1245 * ) ;;
1246esac
1247
1248case "${enable_ospf6d}" in
1249 "yes") OSPF6D="ospf6d";;
1250 "no" ) OSPF6D="";;
1251 * ) ;;
1252esac
1253
jardin9e867fe2003-12-23 08:56:18 +00001254case "${enable_isisd}" in
1255 "yes") ISISD="isisd";;
1256 "no" ) ISISD="";;
hassoae399ab2004-09-13 20:22:18 +00001257 * ) ;;
jardin9e867fe2003-12-23 08:56:18 +00001258esac
1259
Greg Troxel97cee872007-08-02 13:36:56 +00001260# XXX Perhaps auto-enable on Solaris, but that's messy for cross builds.
1261case "${enable_solaris}" in
1262 "yes") SOLARIS="solaris";;
1263 "no" ) SOLARIS="";;
1264 * ) ;;
1265esac
1266
paul7ea487b2003-03-17 02:05:07 +00001267if test "${enable_bgp_announce}" = "no";then
Paul Jakma750e8142008-07-22 21:11:48 +00001268 AC_DEFINE(DISABLE_BGP_ANNOUNCE,1,Disable BGP installation to zebra)
1269else
1270 AC_DEFINE(DISABLE_BGP_ANNOUNCE,0,Disable BGP installation to zebra)
paul7ea487b2003-03-17 02:05:07 +00001271fi
1272
Joakim Tjernlundcbcd9bf2009-02-16 09:40:39 +01001273AC_SUBST(DOC)
paul7ea487b2003-03-17 02:05:07 +00001274AC_SUBST(ZEBRA)
1275AC_SUBST(BGPD)
1276AC_SUBST(RIPD)
1277AC_SUBST(RIPNGD)
1278AC_SUBST(OSPFD)
1279AC_SUBST(OSPF6D)
ajsd0199432004-12-22 14:03:52 +00001280AC_SUBST(WATCHQUAGGA)
jardin9e867fe2003-12-23 08:56:18 +00001281AC_SUBST(ISISD)
Greg Troxel97cee872007-08-02 13:36:56 +00001282AC_SUBST(SOLARIS)
paul7ea487b2003-03-17 02:05:07 +00001283AC_SUBST(VTYSH)
1284AC_SUBST(INCLUDES)
1285AC_SUBST(CURSES)
1286AC_SUBST(OSPFCLIENT)
paul1ef74ef2003-03-21 15:16:05 +00001287AC_SUBST(OSPFAPI)
paul7ea487b2003-03-17 02:05:07 +00001288AC_CHECK_LIB(c, inet_ntop, [AC_DEFINE(HAVE_INET_NTOP,,inet_ntop)])
1289AC_CHECK_LIB(c, inet_pton, [AC_DEFINE(HAVE_INET_PTON,,inet_pton)])
1290AC_CHECK_LIB(crypt, crypt)
1291AC_CHECK_LIB(resolv, res_init)
paul7ea487b2003-03-17 02:05:07 +00001292
1293dnl ---------------------------------------------------
1294dnl BSD/OS 4.1 define inet_XtoY function as __inet_XtoY
1295dnl ---------------------------------------------------
paula159ed92003-06-04 11:01:45 +00001296AC_CHECK_FUNC(__inet_ntop, AC_DEFINE(HAVE_INET_NTOP,,__inet_ntop))
1297AC_CHECK_FUNC(__inet_pton, AC_DEFINE(HAVE_INET_PTON,,__inet_pton))
1298AC_CHECK_FUNC(__inet_aton, AC_DEFINE(HAVE_INET_ATON,,__inet_aton))
paul7ea487b2003-03-17 02:05:07 +00001299
1300dnl ---------------------------
Jeremy Jackson25f45882009-01-12 16:06:12 -05001301dnl check system has PCRE regexp
1302dnl ---------------------------
1303if test "x$enable_pcreposix" = "xyes"; then
1304 AC_CHECK_LIB(pcreposix, pcreposix_regexec, ,[enable_pcreposix=no
1305 AC_MSG_WARN([*** falling back to other regex library ***]) ])
1306fi
1307
1308if test "x$enable_pcreposix" != "xyes"; then
1309dnl ---------------------------
paul7ea487b2003-03-17 02:05:07 +00001310dnl check system has GNU regexp
1311dnl ---------------------------
Jeremy Jackson25f45882009-01-12 16:06:12 -05001312AC_MSG_CHECKING(whether system has GNU regex)
paul7ea487b2003-03-17 02:05:07 +00001313AC_CHECK_LIB(c, regexec,
1314[AC_DEFINE(HAVE_GNU_REGEX,,GNU regexp library)
1315 LIB_REGEX=""],
1316[LIB_REGEX="regex.o"])
Jeremy Jackson25f45882009-01-12 16:06:12 -05001317fi
1318AC_SUBST(HAVE_LIBPCREPOSIX)
paul7ea487b2003-03-17 02:05:07 +00001319AC_SUBST(LIB_REGEX)
1320
1321dnl ------------------
paulb1fc9ac2006-01-31 10:09:27 +00001322dnl check Net-SNMP library
paul7ea487b2003-03-17 02:05:07 +00001323dnl ------------------
paulb1fc9ac2006-01-31 10:09:27 +00001324if test "${enable_snmp}" = "yes"; then
Joakim Tjernlundfb62a3c2008-05-13 20:03:32 +02001325 if test "$with_crypto" != "no"; then
1326 LIBS="${LIBS} -lcrypto";
1327 fi
paulb1fc9ac2006-01-31 10:09:27 +00001328 AC_CHECK_LIB(netsnmp, asn_parse_int,
1329 [AC_DEFINE(HAVE_NETSNMP,,Net SNMP)
1330 AC_DEFINE(HAVE_SNMP,,SNMP)
1331 LIBS="${LIBS} -lnetsnmp"],
1332 [AC_MSG_ERROR([--enable-snmp given, but cannot find support for SNMP])])
Joakim Tjernlundfb62a3c2008-05-13 20:03:32 +02001333
1334 AC_CHECK_HEADER([net-snmp/net-snmp-config.h],
1335 [],
1336 [AC_MSG_ERROR([--enable-snmp given, but cannot find net-snmp-config.h])],
1337 QUAGGA_INCLUDES)
paulb1fc9ac2006-01-31 10:09:27 +00001338 AC_SUBST(SNMP_INCLUDES)
paul7ea487b2003-03-17 02:05:07 +00001339fi
1340
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001341dnl ---------------------------
1342dnl sockaddr and netinet checks
1343dnl ---------------------------
1344AC_CHECK_TYPES([struct sockaddr, struct sockaddr_in,
1345 struct sockaddr_in6, struct sockaddr_un, struct sockaddr_dl,
1346 socklen_t,
1347 struct ifaliasreq, struct if6_aliasreq, struct in6_aliasreq,
1348 struct nd_opt_adv_interval, struct rt_addrinfo,
Paul Jakma11770e12007-06-22 16:14:42 +00001349 struct nd_opt_homeagent_info, struct nd_opt_adv_interval],
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001350 [], [], QUAGGA_INCLUDES)
paul7ea487b2003-03-17 02:05:07 +00001351
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001352AC_CHECK_MEMBERS([struct sockaddr.sa_len,
1353 struct sockaddr_in.sin_len, struct sockaddr_un.sun_len,
1354 struct sockaddr_in6.sin6_scope_id,
1355 struct if6_aliasreq.ifra_lifetime,
1356 struct nd_opt_adv_interval.nd_opt_ai_type],
1357 [], [], QUAGGA_INCLUDES)
hasso71c0fb52003-05-25 20:18:13 +00001358
paul7ea487b2003-03-17 02:05:07 +00001359dnl ---------------------------
Paul Jakma11770e12007-06-22 16:14:42 +00001360dnl IRDP/pktinfo/icmphdr checks
paul7ea487b2003-03-17 02:05:07 +00001361dnl ---------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001362AC_CHECK_TYPES([struct in_pktinfo],
Paul Jakma11770e12007-06-22 16:14:42 +00001363 [AC_CHECK_TYPES([struct icmphdr],
1364 [if test "${enable_irdp}" != "no"; then
1365 AC_DEFINE(HAVE_IRDP,, IRDP)
1366 fi],
1367 [if test "${enable_irdp}" = "yes"; then
1368 AC_MSG_ERROR(['IRDP requires in_pktinfo at the moment!'])
1369 fi], [QUAGGA_INCLUDES])],
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001370 [if test "${enable_irdp}" = "yes"; then
1371 AC_MSG_ERROR(['IRDP requires in_pktinfo at the moment!'])
1372 fi], [QUAGGA_INCLUDES])
vincent29c4c9b2005-03-25 13:05:47 +00001373
paul7ea487b2003-03-17 02:05:07 +00001374dnl --------------------------------------
1375dnl checking for getrusage struct and call
1376dnl --------------------------------------
1377AC_MSG_CHECKING(whether getrusage is available)
1378AC_TRY_COMPILE([#include <sys/resource.h>
1379],[struct rusage ac_x; getrusage (RUSAGE_SELF, &ac_x);],
1380[AC_MSG_RESULT(yes)
1381 AC_DEFINE(HAVE_RUSAGE,,rusage)],
1382 AC_MSG_RESULT(no))
1383
Stephen Hemmingerc4376c92009-05-28 15:29:10 -07001384dnl --------------------------------------
1385dnl checking for clock_time monotonic struct and call
1386dnl --------------------------------------
Paul Jakma6511cab2009-06-18 17:38:01 +01001387AC_CHECK_DECL(CLOCK_MONOTONIC,
1388 [AC_CHECK_LIB(rt, clock_gettime, [LIBS="$LIBS -lrt"])
Dmitry Tejblum9964fcf2009-11-05 16:50:36 +03001389 AC_DEFINE(HAVE_CLOCK_MONOTONIC,, Have monotonic clock)
Paul Jakma6511cab2009-06-18 17:38:01 +01001390], [AC_MSG_RESULT(no)], [QUAGGA_INCLUDES])
Stephen Hemmingerc4376c92009-05-28 15:29:10 -07001391
pauledd7c242003-06-04 13:59:38 +00001392dnl -------------------
1393dnl capabilities checks
1394dnl -------------------
hasso41d3fc92004-04-06 11:59:00 +00001395if test "${enable_capabilities}" != "no"; then
1396 AC_MSG_CHECKING(whether prctl PR_SET_KEEPCAPS is available)
1397 AC_TRY_COMPILE([#include <sys/prctl.h>],[prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);],
1398 [AC_MSG_RESULT(yes)
1399 AC_DEFINE(HAVE_PR_SET_KEEPCAPS,,prctl)
1400 quagga_ac_keepcaps="yes"],
1401 AC_MSG_RESULT(no)
pauledd7c242003-06-04 13:59:38 +00001402 )
hasso41d3fc92004-04-06 11:59:00 +00001403 if test x"${quagga_ac_keepcaps}" = x"yes"; then
1404 AC_CHECK_HEADERS(sys/capability.h)
1405 fi
1406 if test x"${ac_cv_header_sys_capability_h}" = x"yes"; then
1407 AC_CHECK_LIB(cap, cap_init,
1408 [AC_DEFINE(HAVE_LCAPS,1,Capabilities)
1409 LIBCAP="-lcap"
paulceacedb2005-09-29 14:39:32 +00001410 quagga_ac_lcaps="yes"]
hasso41d3fc92004-04-06 11:59:00 +00001411 )
paulceacedb2005-09-29 14:39:32 +00001412 else
1413 AC_CHECK_HEADERS(priv.h,
1414 [AC_MSG_CHECKING(Solaris style privileges are available)
1415 AC_TRY_COMPILE([#include <priv.h>],[getpflags(PRIV_AWARE);],
1416 [AC_MSG_RESULT(yes)
1417 AC_DEFINE(HAVE_SOLARIS_CAPABILITIES,1,getpflags)
1418 quagga_ac_scaps="yes"],
1419 AC_MSG_RESULT(no)
1420 )
1421 ]
1422 )
1423 fi
1424 if test x"${quagga_ac_scaps}" = x"yes" \
1425 -o x"${quagga_ac_lcaps}" = x"yes"; then
1426 AC_DEFINE(HAVE_CAPABILITIES,1,capabilities)
hasso41d3fc92004-04-06 11:59:00 +00001427 fi
pauledd7c242003-06-04 13:59:38 +00001428fi
1429AC_SUBST(LIBCAP)
1430
paulfb2d1502003-06-04 09:40:54 +00001431dnl ---------------------------
1432dnl check for glibc 'backtrace'
1433dnl ---------------------------
1434if test "${glibc}" = "yes"; then
Paul Jakmafb66b292006-05-28 08:26:15 +00001435 AC_CHECK_HEADER([execinfo.h],
1436 [AC_CHECK_FUNC([backtrace],
1437 [AC_DEFINE(HAVE_GLIBC_BACKTRACE,,[Glibc backtrace])
1438 AC_DEFINE(HAVE_STACK_TRACE,,[Stack symbol decoding])
1439 ])
1440 ])
paulfb2d1502003-06-04 09:40:54 +00001441fi
1442
Paul Jakma41be32b2006-03-30 13:53:59 +00001443dnl -----------------------------------------
1444dnl check for malloc mallinfo struct and call
1445dnl this must try and link using LIBS, in
1446dnl order to check no alternative allocator
1447dnl has been specified, which might not provide
1448dnl mallinfo, e.g. such as Umem on Solaris.
1449dnl -----------------------------------------
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001450AC_CHECK_HEADER([malloc.h],
Paul Jakma41be32b2006-03-30 13:53:59 +00001451 [AC_MSG_CHECKING(whether mallinfo is available)
1452 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <malloc.h>]],
1453 [[struct mallinfo ac_x; ac_x = mallinfo ();]])],
1454 [AC_MSG_RESULT(yes)
1455 AC_DEFINE(HAVE_MALLINFO,,mallinfo)],
1456 AC_MSG_RESULT(no)
1457 )
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001458 ], [], QUAGGA_INCLUDES)
Paul Jakma41be32b2006-03-30 13:53:59 +00001459
paul408ad942003-05-20 00:03:33 +00001460dnl ----------
1461dnl configure date
1462dnl ----------
1463CONFDATE=`date '+%Y%m%d'`
1464AC_SUBST(CONFDATE)
1465
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +01001466dnl Conditionally enable PIE support for GNU toolchains.
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +01001467AC_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 +01001468if test "$enable_pie" != "no"; then
Paul P Komkoff Jr46bc0e42008-08-13 16:17:04 +01001469 AC_CACHE_CHECK([whether $CC accepts PIE flags], [ap_cv_cc_pie], [
1470 save_CFLAGS=$CFLAGS
1471 save_LDFLAGS=$LDFLAGS
1472 CFLAGS="$CFLAGS -fPIE"
1473 LDFLAGS="$LDFLAGS -pie"
1474 AC_LINK_IFELSE([AC_LANG_SOURCE([[static int foo[30000]; int main () { return 0; }]])],
1475 [ap_cv_cc_pie=yes], [ap_cv_cc_pie=no]
1476 )
1477 CFLAGS=$save_CFLAGS
1478 LDFLAGS=$save_LDFLAGS
1479 ])
1480 if test "$ap_cv_cc_pie" = "yes"; then
1481 PICFLAGS="-fPIE"
1482 PILDFLAGS="-pie"
1483 fi
1484fi
1485
1486AC_SUBST(PICFLAGS)
1487AC_SUBST(PILDFLAGS)
1488
paul7ea487b2003-03-17 02:05:07 +00001489dnl ------------------------------
paula159ed92003-06-04 11:01:45 +00001490dnl set paths for state directory
paul23bd12c2003-04-07 06:11:09 +00001491dnl ------------------------------
Jeremy Jacksone84999d2009-01-21 20:29:39 -05001492AC_MSG_CHECKING(directory to use for state file)
paul23bd12c2003-04-07 06:11:09 +00001493if test "${prefix}" = "NONE"; then
paule8f29842003-08-12 13:08:31 +00001494 quagga_statedir_prefix="";
paul23bd12c2003-04-07 06:11:09 +00001495else
paule8f29842003-08-12 13:08:31 +00001496 quagga_statedir_prefix=${prefix}
paul23bd12c2003-04-07 06:11:09 +00001497fi
1498if test "${localstatedir}" = '${prefix}/var'; then
Jeremy Jacksone84999d2009-01-21 20:29:39 -05001499 for QUAGGA_STATE_DIR in ${quagga_statedir_prefix}/var/run dnl
paule8f29842003-08-12 13:08:31 +00001500 ${quagga_statedir_prefix}/var/adm dnl
1501 ${quagga_statedir_prefix}/etc dnl
paula159ed92003-06-04 11:01:45 +00001502 /var/run dnl
1503 /var/adm dnl
1504 /etc dnl
1505 /dev/null;
paul23bd12c2003-04-07 06:11:09 +00001506 do
paule8f29842003-08-12 13:08:31 +00001507 test -d $QUAGGA_STATE_DIR && break
paul23bd12c2003-04-07 06:11:09 +00001508 done
Jeremy Jacksone84999d2009-01-21 20:29:39 -05001509 quagga_statedir=$QUAGGA_STATE_DIR
paul23bd12c2003-04-07 06:11:09 +00001510else
paule8f29842003-08-12 13:08:31 +00001511 quagga_statedir=${localstatedir}
paul23bd12c2003-04-07 06:11:09 +00001512fi
paule8f29842003-08-12 13:08:31 +00001513if test $quagga_statedir = "/dev/null"; then
paula159ed92003-06-04 11:01:45 +00001514 AC_MSG_ERROR('STATE DIRECTORY NOT FOUND! FIX OR SPECIFY --localstatedir!')
1515fi
Jeremy Jacksone84999d2009-01-21 20:29:39 -05001516AC_MSG_RESULT(${quagga_statedir})
1517AC_SUBST(quagga_statedir)
paula159ed92003-06-04 11:01:45 +00001518
paule8f29842003-08-12 13:08:31 +00001519AC_DEFINE_UNQUOTED(PATH_ZEBRA_PID, "$quagga_statedir/zebra.pid",zebra PID)
1520AC_DEFINE_UNQUOTED(PATH_RIPD_PID, "$quagga_statedir/ripd.pid",ripd PID)
1521AC_DEFINE_UNQUOTED(PATH_RIPNGD_PID, "$quagga_statedir/ripngd.pid",ripngd PID)
1522AC_DEFINE_UNQUOTED(PATH_BGPD_PID, "$quagga_statedir/bgpd.pid",bgpd PID)
1523AC_DEFINE_UNQUOTED(PATH_OSPFD_PID, "$quagga_statedir/ospfd.pid",ospfd PID)
1524AC_DEFINE_UNQUOTED(PATH_OSPF6D_PID, "$quagga_statedir/ospf6d.pid",ospf6d PID)
jardin9e867fe2003-12-23 08:56:18 +00001525AC_DEFINE_UNQUOTED(PATH_ISISD_PID, "$quagga_statedir/isisd.pid",isisd PID)
ajsd0199432004-12-22 14:03:52 +00001526AC_DEFINE_UNQUOTED(PATH_WATCHQUAGGA_PID, "$quagga_statedir/watchquagga.pid",watchquagga PID)
paule8f29842003-08-12 13:08:31 +00001527AC_DEFINE_UNQUOTED(ZEBRA_SERV_PATH, "$quagga_statedir/zserv.api",zebra api socket)
1528AC_DEFINE_UNQUOTED(ZEBRA_VTYSH_PATH, "$quagga_statedir/zebra.vty",zebra vty socket)
1529AC_DEFINE_UNQUOTED(RIP_VTYSH_PATH, "$quagga_statedir/ripd.vty",rip vty socket)
1530AC_DEFINE_UNQUOTED(RIPNG_VTYSH_PATH, "$quagga_statedir/ripngd.vty",ripng vty socket)
1531AC_DEFINE_UNQUOTED(BGP_VTYSH_PATH, "$quagga_statedir/bgpd.vty",bgpd vty socket)
1532AC_DEFINE_UNQUOTED(OSPF_VTYSH_PATH, "$quagga_statedir/ospfd.vty",ospfd vty socket)
1533AC_DEFINE_UNQUOTED(OSPF6_VTYSH_PATH, "$quagga_statedir/ospf6d.vty",ospf6d vty socket)
jardin9e867fe2003-12-23 08:56:18 +00001534AC_DEFINE_UNQUOTED(ISIS_VTYSH_PATH, "$quagga_statedir/isisd.vty",isisd vty socket)
ajs515210b2004-12-22 15:35:12 +00001535AC_DEFINE_UNQUOTED(DAEMON_VTY_DIR, "$quagga_statedir",daemon vty directory)
paul7ea487b2003-03-17 02:05:07 +00001536
paul1eb8ef22005-04-07 07:30:20 +00001537dnl -------------------------------
1538dnl Quagga sources should always be
1539dnl current wrt interfaces. Dont
1540dnl allow deprecated interfaces to
1541dnl be exposed.
1542dnl -------------------------------
1543AC_DEFINE(QUAGGA_NO_DEPRECATED_INTERFACES, 1, Hide deprecated interfaces)
1544
paul7ea487b2003-03-17 02:05:07 +00001545dnl ---------------------------
1546dnl Check htonl works correctly
1547dnl ---------------------------
1548AC_MSG_CHECKING(for working htonl)
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001549AC_CACHE_VAL(ac_cv_htonl_works,
1550 [AC_LINK_IFELSE([AC_LANG_PROGRAM([QUAGGA_INCLUDES],[htonl (0);])],
1551 [ac_cv_htonl_works=yes], [ac_cv_htonl_works=no])
1552 ]
1553)
paul7ea487b2003-03-17 02:05:07 +00001554AC_MSG_RESULT($ac_cv_htonl_works)
1555
paul14c17fd2004-11-07 22:34:23 +00001556AC_CONFIG_FILES([Makefile lib/Makefile zebra/Makefile ripd/Makefile
ajsd0199432004-12-22 14:03:52 +00001557 ripngd/Makefile bgpd/Makefile ospfd/Makefile watchquagga/Makefile
jardin9e867fe2003-12-23 08:56:18 +00001558 ospf6d/Makefile isisd/Makefile vtysh/Makefile doc/Makefile
paul14c17fd2004-11-07 22:34:23 +00001559 ospfclient/Makefile tests/Makefile m4/Makefile redhat/Makefile
gdt69f1fc22004-08-27 15:57:35 +00001560 pkgsrc/Makefile
paul670bbf12004-11-12 09:05:00 +00001561 redhat/quagga.spec
gdtb7a97f82004-07-23 16:23:56 +00001562 lib/version.h
paul14c17fd2004-11-07 22:34:23 +00001563 doc/defines.texi
hassof695b012005-04-02 19:03:39 +00001564 isisd/topology/Makefile
gdtcbd04082004-08-31 18:16:36 +00001565 pkgsrc/bgpd.sh pkgsrc/ospf6d.sh pkgsrc/ospfd.sh
paulf31293a2004-11-12 09:27:04 +00001566 pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh])
paul26275b02005-04-11 07:10:47 +00001567AC_CONFIG_FILES([solaris/Makefile])
1568
paul670bbf12004-11-12 09:05:00 +00001569AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl])
hasso48577192004-11-19 06:41:49 +00001570## Hack, but working solution to avoid rebuilding of quagga.info.
1571## It's already in CVS until texinfo 4.7 is more common.
paul14c17fd2004-11-07 22:34:23 +00001572AC_OUTPUT
paul7ea487b2003-03-17 02:05:07 +00001573
1574echo "
hassoc89f6492004-08-26 12:21:28 +00001575Quagga configuration
1576--------------------
1577quagga version : ${PACKAGE_VERSION}
David Wardcdb99502009-12-03 20:22:47 +03001578host operating system : ${host_os}
paul7ea487b2003-03-17 02:05:07 +00001579source code location : ${srcdir}
1580compiler : ${CC}
1581compiler flags : ${CFLAGS}
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001582make : ${MAKE-make}
hasso2d582282005-03-28 15:29:07 +00001583includes : ${INCLUDES} ${SNMP_INCLUDES}
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001584linker flags : ${LDFLAGS} ${LIBS} ${LIBCAP} ${LIBREADLINE} ${LIBM}
paule8f29842003-08-12 13:08:31 +00001585state file directory : ${quagga_statedir}
pauldc7a2bf2003-10-22 00:07:44 +00001586config file directory : `eval echo \`echo ${sysconfdir}\``
gdtd6b72f72003-12-03 17:24:27 +00001587example directory : `eval echo \`echo ${exampledir}\``
paul8d4aee52003-06-06 00:30:35 +00001588user to run as : ${enable_user}
1589group to run as : ${enable_group}
1590group for vty sockets : ${enable_vty_group}
gdtaa593d52003-12-22 20:15:53 +00001591config file mask : ${enable_configfile_mask}
1592log file mask : ${enable_logfile_mask}
pauldc7a2bf2003-10-22 00:07:44 +00001593
1594The above user and group must have read/write access to the state file
Paul Jakma105b8232006-05-28 08:02:41 +00001595directory and to the config files in the config file directory."
1596
1597if test x"$quagga_cv_gnu_make" = x"no"; then echo "
1598Warning: The ${MAKE-make} programme detected, either in your path or
1599via the MAKE variable, is not GNU Make. GNU make may be installed as
1600gmake on some systems. and is required to complete a build of Quagga
1601" > /dev/stderr
1602fi