blob: 15bd07516066713d8e32403fc8c330531f5cc9ed [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##
paula9694592005-08-25 14:50:05 +00008## $Id: configure.ac,v 1.111 2005/08/25 14:50:05 paul Exp $
paule8f29842003-08-12 13:08:31 +00009AC_PREREQ(2.53)
paul7ea487b2003-03-17 02:05:07 +000010
paul0c2029e2005-04-29 03:20:54 +000011AC_INIT(Quagga, 0.99.1, [http://bugzilla.quagga.net])
paulfa1253d2003-09-24 05:09:26 +000012AC_CONFIG_SRCDIR(lib/zebra.h)
ajsdfb9a542005-04-11 14:55:55 +000013
14dnl -----------------------------------
15dnl Get hostname and other information.
16dnl -----------------------------------
17AC_CANONICAL_BUILD()
18AC_CANONICAL_HOST()
19AC_CANONICAL_TARGET()
20
gdt81b81822004-04-07 22:48:47 +000021AM_INIT_AUTOMAKE(1.6)
paul7ea487b2003-03-17 02:05:07 +000022AM_CONFIG_HEADER(config.h)
23
paul03ecfb62005-04-16 15:38:23 +000024dnl we need gawk for memtypes.awk
25AC_CHECK_PROG([GAWK],[gawk],[gawk],[/bin/false])
26AC_ARG_VAR([GAWK],[GNU AWK])
27
gdtd6b72f72003-12-03 17:24:27 +000028dnl default is to match previous behavior
gdtc4f0efe2003-12-04 15:39:25 +000029exampledir=${sysconfdir}
gdtd6b72f72003-12-03 17:24:27 +000030AC_ARG_ENABLE([exampledir],
31 AC_HELP_STRING([--enable-exampledir],
32 [specify alternate directory for examples]),
33 exampledir="$enableval",)
gdtc4f0efe2003-12-04 15:39:25 +000034dnl XXX add --exampledir to autoconf standard directory list somehow
gdtd6b72f72003-12-03 17:24:27 +000035AC_SUBST(exampledir)
36
gdtcbd04082004-08-31 18:16:36 +000037dnl default is to match previous behavior
38pkgsrcrcdir=""
39pkgsrcdir=""
40AC_ARG_ENABLE([pkgsrcrcdir],
41 AC_HELP_STRING([--enable-pkgsrcrcdir],
42 [specify directory for rc.d scripts]),
43 pkgsrcrcdir="$enableval"; pkgsrcdir="pkgsrc",)
44dnl XXX add --pkgsrcrcdir to autoconf standard directory list somehow
45AC_SUBST(pkgsrcdir)
46AC_SUBST(pkgsrcrcdir)
47
paul7ea487b2003-03-17 02:05:07 +000048dnl ------------
49dnl Check CFLAGS
50dnl ------------
51AC_ARG_WITH(cflags,
52[ --with-cflags Set CFLAGS for use in compilation.])
53if test "x$with_cflags" != "x" ; then
54 CFLAGS="$with_cflags" ; cflags_specified=yes ;
55elif test -n "$CFLAGS" ; then
56 cflags_specified=yes ;
57fi
58
hasso1969e4b2005-03-27 13:07:23 +000059dnl --------------------
60dnl Check CC and friends
61dnl --------------------
paul7ea487b2003-03-17 02:05:07 +000062AC_PROG_CC
hasso1969e4b2005-03-27 13:07:23 +000063AC_PROG_CPP
64AC_PROG_EGREP
65
66dnl ------------------------------------------------------------------
67dnl Intel compiler check. Although Intel tries really hard to make icc
68dnl look like gcc, there are some differences. It's very verbose with
69dnl -Wall and it doesn't support the individual -W options.
70dnl ------------------------------------------------------------------
71AC_MSG_CHECKING([whether we are using the Intel compiler])
72AC_EGREP_CPP([^__INTEL_COMPILER], [__INTEL_COMPILER],
73 ICC="no"
74 AC_MSG_RESULT([no]),
75 ICC="yes"
76 AC_MSG_RESULT([yes])
77)
paul7ea487b2003-03-17 02:05:07 +000078
paula49c0ff2004-09-30 06:08:58 +000079dnl ---------------------------------------------
paul7ea487b2003-03-17 02:05:07 +000080dnl If CLFAGS doesn\'t exist set default value
paula49c0ff2004-09-30 06:08:58 +000081dnl AC_PROG_CC will have set minimal default
82dnl already, eg "-O2 -g" for gcc, "-g" for others
paul27eebb32004-07-22 18:16:59 +000083dnl (Wall is gcc specific... have to make sure
84dnl gcc is being used before setting it)
hasso1969e4b2005-03-27 13:07:23 +000085dnl Intel icc 8.0 also sets __GNUC__, but
86dnl doesn't support all these fancy -W options.
paula49c0ff2004-09-30 06:08:58 +000087dnl ---------------------------------------------
paul27eebb32004-07-22 18:16:59 +000088dnl
paul7ea487b2003-03-17 02:05:07 +000089if test "x$cflags_specified" = "x" ; then
hasso1969e4b2005-03-27 13:07:23 +000090 if test "x${GCC}" = "xyes" && test "x${ICC}" = "xno"; then
paula9694592005-08-25 14:50:05 +000091 CFLAGS="-Os -fno-omit-frame-pointer -g -Wall"
92 CFLAGS="${CFLAGS} -Wsign-compare -Wpointer-arith"
hasso7347a2a2004-10-05 14:15:17 +000093 CFLAGS="${CFLAGS} -Wbad-function-cast -Wwrite-strings"
paula49c0ff2004-09-30 06:08:58 +000094 fi
gdt7fd63b32004-10-07 13:53:29 +000095 # TODO: conditionally addd -Wpacked if handled
paul7ea487b2003-03-17 02:05:07 +000096fi
97
hasso1969e4b2005-03-27 13:07:23 +000098dnl ---------------------------------------------------------------------
99dnl Intel compiler warnings we ignore:
100dnl 279: controlling expression is constant.
101dnl 869: parameter "xxx" was never referenced - to avoid massive warnings
102dnl about "self", "vty", "argc" and "argv" never referenced in DEFUN
103dnl macro.
104dnl 981: operands are evaluated in unspecified order.
105dnl ---------------------------------------------------------------------
106
107if test "$ICC" = "yes"; then
108 CFLAGS="-Os -g -Wall -wd 279,869,981"
109fi
110
paul7ea487b2003-03-17 02:05:07 +0000111dnl --------------
112dnl Check programs
113dnl --------------
paul7ea487b2003-03-17 02:05:07 +0000114AC_PROG_INSTALL
115AC_PROG_MAKE_SET
116AC_CHECK_TOOL(AR, ar)
117AC_CHECK_TOOL(RANLIB, ranlib, :)
118
119dnl ---------
120dnl AIX check
121dnl ---------
122AC_AIX
123
gdt87efd642004-06-30 17:36:11 +0000124dnl -------
125dnl libtool
126dnl -------
paul0fc42942004-08-19 04:41:21 +0000127AC_PROG_LIBTOOL
gdt87efd642004-06-30 17:36:11 +0000128
paul7ea487b2003-03-17 02:05:07 +0000129dnl ----------------------
130dnl Packages configuration
131dnl ----------------------
132AC_ARG_ENABLE(vtysh,
gdtfc9d0742004-06-30 14:25:12 +0000133[ --enable-vtysh include integrated vty shell for Quagga])
paul7ea487b2003-03-17 02:05:07 +0000134AC_ARG_ENABLE(ipv6,
135[ --disable-ipv6 turn off IPv6 related features and daemons])
136AC_ARG_ENABLE(zebra,
137[ --disable-zebra do not build zebra daemon])
138AC_ARG_ENABLE(bgpd,
139[ --disable-bgpd do not build bgpd])
140AC_ARG_ENABLE(ripd,
141[ --disable-ripd do not build ripd])
142AC_ARG_ENABLE(ripngd,
143[ --disable-ripngd do not build ripngd])
144AC_ARG_ENABLE(ospfd,
145[ --disable-ospfd do not build ospfd])
paul7ea487b2003-03-17 02:05:07 +0000146AC_ARG_ENABLE(ospf6d,
147[ --disable-ospf6d do not build ospf6d])
ajsd0199432004-12-22 14:03:52 +0000148AC_ARG_ENABLE(watchquagga,
149[ --disable-watchquagga do not build watchquagga])
jardin9e867fe2003-12-23 08:56:18 +0000150AC_ARG_ENABLE(isisd,
hassoae399ab2004-09-13 20:22:18 +0000151[ --enable-isisd build isisd])
paul7ea487b2003-03-17 02:05:07 +0000152AC_ARG_ENABLE(bgp-announce,
153[ --disable-bgp-announce, turn off BGP route announcement])
154AC_ARG_ENABLE(netlink,
155[ --enable-netlink force to use Linux netlink interface])
156AC_ARG_ENABLE(broken-aliases,
157[ --enable-broken-aliases enable aliases as distinct interfaces for Linux 2.2.X])
158AC_ARG_ENABLE(snmp,
159[ --enable-snmp enable SNMP support])
160AC_ARG_WITH(libpam,
161[ --with-libpam use libpam for PAM support in vtysh])
hasso71c0fb52003-05-25 20:18:13 +0000162AC_ARG_ENABLE(tcp-zebra,
paul7ea487b2003-03-17 02:05:07 +0000163[ --enable-tcp-zebra enable TCP/IP socket connection between zebra and protocol daemon])
paul7ea487b2003-03-17 02:05:07 +0000164AC_ARG_ENABLE(opaque-lsa,
paul1ef74ef2003-03-21 15:16:05 +0000165[ --enable-opaque-lsa enable OSPF Opaque-LSA with OSPFAPI support (RFC2370)])
166AC_ARG_ENABLE(ospfapi,
167[ --disable-ospfapi do not build OSPFAPI to access the OSPF LSA Database,
168 (this is the default if --enable-opaque-lsa is not set)])
169AC_ARG_ENABLE(ospfclient,
170[ --disable-ospfclient do not build OSPFAPI client for OSPFAPI,
171 (this is the default if --disable-ospfapi is set)])
paul7ea487b2003-03-17 02:05:07 +0000172AC_ARG_ENABLE(ospf-te,
173[ --enable-ospf-te enable Traffic Engineering Extension to OSPF])
174AC_ARG_ENABLE(multipath,
175[ --enable-multipath=ARG enable multipath function, ARG must be digit])
paule8f29842003-08-12 13:08:31 +0000176AC_ARG_ENABLE(quagga_user,
177[ --enable-user=ARG user to run Quagga suite as (default quagga)])
178AC_ARG_ENABLE(quagga_group,
179[ --enable-group=ARG group to run Quagga suite as (default quagga)])
pauledd7c242003-06-04 13:59:38 +0000180AC_ARG_ENABLE(vty_group,
paul6b6942f2004-10-22 04:55:05 +0000181[ --enable-vty-group=ARG set vty sockets to have specified group as owner])
gdtaa593d52003-12-22 20:15:53 +0000182AC_ARG_ENABLE(configfile_mask,
183[ --enable-configfile-mask=ARG set mask for config files])
184AC_ARG_ENABLE(logfile_mask,
185[ --enable-logfile-mask=ARG set mask for log files])
pauledd7c242003-06-04 13:59:38 +0000186
hasso71c0fb52003-05-25 20:18:13 +0000187AC_ARG_ENABLE(rtadv,
paul6b6942f2004-10-22 04:55:05 +0000188[ --disable-rtadv disable IPV6 router advertisement feature])
hassoca776982004-06-12 14:33:05 +0000189AC_ARG_ENABLE(irdp,
paul6b6942f2004-10-22 04:55:05 +0000190[ --enable-irdp enable IRDP server support in zebra])
hassof695b012005-04-02 19:03:39 +0000191AC_ARG_ENABLE(isis_topology,
192[ --enable-isis-topology enable IS-IS topology generator])
hasso41d3fc92004-04-06 11:59:00 +0000193AC_ARG_ENABLE(capabilities,
194[ --disable-capabilities disable using POSIX capabilities])
paul6b6942f2004-10-22 04:55:05 +0000195AC_ARG_ENABLE(gcc_ultra_verbose,
196[ --enable-gcc-ultra-verbose enable ultra verbose GCC warnings])
ajs3cade262004-12-29 17:50:22 +0000197AC_ARG_ENABLE(gcc-rdynamic,
198[ --enable-gcc-rdynamic enable gcc linking with -rdynamic for better backtraces])
ajs924b9222005-04-16 17:11:24 +0000199AC_ARG_ENABLE(time-check,
200[ --disable-time-check disable slow thread warning messages])
paul6b6942f2004-10-22 04:55:05 +0000201
202if test x"${enable_gcc_ultra_verbose}" = x"yes" ; then
203 CFLAGS="${CFLAGS} -W -Wcast-qual -Wstrict-prototypes"
204 CFLAGS="${CFLAGS} -Wmissing-declarations -Wmissing-noreturn"
205 CFLAGS="${CFLAGS} -Wmissing-format-attribute -Wunreachable-code"
206 CFLAGS="${CFLAGS} -Wpacked -Wpadded"
207fi
paul7ea487b2003-03-17 02:05:07 +0000208
ajs3cade262004-12-29 17:50:22 +0000209if test x"${enable_gcc_rdynamic}" = x"yes" ; then
210 LDFLAGS="${LDFLAGS} -rdynamic"
211fi
212
ajs924b9222005-04-16 17:11:24 +0000213if test x"${enable_time_check}" != x"no" ; then
214 if test x"${enable_time_check}" = x"yes" -o x"${enable_time_check}" = x ; then
215 AC_DEFINE(CONSUMED_TIME_CHECK,5000000,Consumed Time Check)
216 else
217 AC_DEFINE_UNQUOTED(CONSUMED_TIME_CHECK,$enable_time_check,Consumed Time Check)
218 fi
219fi
220
paul7ea487b2003-03-17 02:05:07 +0000221if test "${enable_broken_aliases}" = "yes"; then
222 if test "${enable_netlink}" = "yes"
223 then
224 echo "Sorry, you can't use netlink with broken aliases"
225 exit 1
226 fi
227 AC_DEFINE(HAVE_BROKEN_ALIASES,,Broken Alias)
228 enable_netlink=no
229fi
230
231if test "${enable_tcp_zebra}" = "yes"; then
232 AC_DEFINE(HAVE_TCP_ZEBRA,,Use TCP for zebra communication)
233fi
234
paul7ea487b2003-03-17 02:05:07 +0000235if test "${enable_opaque_lsa}" = "yes"; then
236 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
237fi
238
239if test "${enable_ospf_te}" = "yes"; then
240 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
241 AC_DEFINE(HAVE_OSPF_TE,,OSPF TE)
242fi
243
gdtd2a0ccc2003-12-03 18:13:48 +0000244AC_MSG_CHECKING(if zebra should be configurable to send Route Advertisements)
245if test "${enable_rtadv}" != "no"; then
hasso71c0fb52003-05-25 20:18:13 +0000246 AC_MSG_RESULT(yes)
gdtd2a0ccc2003-12-03 18:13:48 +0000247 AC_DEFINE(HAVE_RTADV,,Enable IPv6 Routing Advertisement support)
paul2487bea2003-05-25 23:51:31 +0000248else
249 AC_MSG_RESULT(no)
hasso71c0fb52003-05-25 20:18:13 +0000250fi
paul7ea487b2003-03-17 02:05:07 +0000251
hassoca776982004-06-12 14:33:05 +0000252if test "${enable_irdp}" = "yes"; then
253 AC_DEFINE(HAVE_IRDP,, IRDP )
254fi
255
hassof695b012005-04-02 19:03:39 +0000256if test "${enable_isisd}" = "yes" && test "${enable_isis_topology}" = yes; then
257 AC_DEFINE(TOPOLOGY_GENERATE,,Enable IS-IS topology generator code)
258 ISIS_TOPOLOGY_INCLUDES="-I./topology"
259 ISIS_TOPOLOGY_DIR="topology"
260 ISIS_TOPOLOGY_LIB="./topology/libtopology.a"
261fi
262
263AC_SUBST(ISIS_TOPOLOGY_INCLUDES)
264AC_SUBST(ISIS_TOPOLOGY_DIR)
265AC_SUBST(ISIS_TOPOLOGY_LIB)
266
paul79cb2162003-06-06 12:19:53 +0000267if test "${enable_user}" = "yes" || test x"${enable_user}" = x""; then
paule8f29842003-08-12 13:08:31 +0000268 enable_user="quagga"
pauledd7c242003-06-04 13:59:38 +0000269elif test "${enable_user}" = "no"; then
270 enable_user="root"
271fi
pauledd7c242003-06-04 13:59:38 +0000272
paul79cb2162003-06-06 12:19:53 +0000273if test "${enable_group}" = "yes" || test x"${enable_group}" = x""; then
paule8f29842003-08-12 13:08:31 +0000274 enable_group="quagga"
pauledd7c242003-06-04 13:59:38 +0000275elif test "${enable_group}" = "no"; then
276 enable_group="root"
277fi
pauledd7c242003-06-04 13:59:38 +0000278
279if test x"${enable_vty_group}" = x"yes" ; then
paul8d4aee52003-06-06 00:30:35 +0000280 AC_MSG_ERROR([--enable-vty-group requires a group as argument, not yes])
paul79cb2162003-06-06 12:19:53 +0000281elif test x"${enable_vty_group}" != x""; then
paul8d4aee52003-06-06 00:30:35 +0000282 if test x"${enable_vty_group}" != x"no"; then
pauledd7c242003-06-04 13:59:38 +0000283 AC_DEFINE_UNQUOTED(VTY_GROUP, "${enable_vty_group}", VTY Sockets Group)
284 fi
285fi
paul26275b02005-04-11 07:10:47 +0000286AC_SUBST([enable_user])
287AC_SUBST([enable_group])
288AC_SUBST([enable_vty_group])
289AC_DEFINE_UNQUOTED(QUAGGA_USER, "${enable_user}", Quagga User)
290AC_DEFINE_UNQUOTED(QUAGGA_GROUP, "${enable_group}", Quagga Group)
pauledd7c242003-06-04 13:59:38 +0000291
gdtaa593d52003-12-22 20:15:53 +0000292enable_configfile_mask=${enable_configfile_mask:-0600}
293AC_DEFINE_UNQUOTED(CONFIGFILE_MASK, ${enable_configfile_mask}, Mask for config files)
294
295enable_logfile_mask=${enable_logfile_mask:-0600}
296AC_DEFINE_UNQUOTED(LOGFILE_MASK, ${enable_logfile_mask}, Mask for log files)
297
paul7ea487b2003-03-17 02:05:07 +0000298changequote(, )dnl
299
300MULTIPATH_NUM=1
301
302case "${enable_multipath}" in
303 [0-9]|[1-9][0-9])
304 MULTIPATH_NUM="${enable_multipath}"
305 ;;
306 "")
307 ;;
308 *)
309 echo "Please specify digit to --enable-multipath ARG."
310 exit 1
311 ;;
312esac
313
314changequote([, ])dnl
315
316AC_SUBST(MULTIPATH_NUM)
317
318dnl -------------------
319dnl Check header files.
320dnl -------------------
pauldc7a2bf2003-10-22 00:07:44 +0000321AC_HEADER_STDC
322AC_CHECK_HEADERS([string.h stropts.h sys/conf.h sys/ksym.h sys/time.h \
323 sys/times.h sys/select.h sys/sysctl.h sys/sockio.h \
324 sys/types.h linux/version.h kvm.h netdb.h asm/types.h \
paul42c98192005-05-07 02:22:51 +0000325 sys/param.h libutil.h limits.h])
pauldc7a2bf2003-10-22 00:07:44 +0000326
paul835b7f12003-10-30 21:59:57 +0000327AC_CHECK_HEADERS([sys/socket.h netinet/in_systm.h netinet/in.h \
paulf3bd1a72003-11-02 07:29:11 +0000328 net/if_dl.h net/netopt.h inet/nd.h net/route.h \
paul835b7f12003-10-30 21:59:57 +0000329 net/if.h net/if_var.h netinet/in_var.h])
pauldc7a2bf2003-10-22 00:07:44 +0000330
gdtfa3232e2003-12-03 17:52:30 +0000331dnl V6 headers are checked below, after we check for v6
paul7ea487b2003-03-17 02:05:07 +0000332
333dnl check some types
334AC_C_CONST
335dnl AC_TYPE_PID_T
336AC_TYPE_SIGNAL
337
338dnl Some systems (Solaris 2.x) require libnsl (Network Services Library)
339case "$host" in
paulafd8a122005-03-12 06:36:10 +0000340 [*-sunos5.[6-7]*] | [*-solaris2.[6-7]*])
paul7ea487b2003-03-17 02:05:07 +0000341 opsys=sol2-6
paulafd8a122005-03-12 06:36:10 +0000342 AC_DEFINE(SUNOS_56, 1, SunOS 5.6 to 5.7)
paul19877dd2004-05-11 10:49:35 +0000343 AC_DEFINE(SUNOS_5, 1, SunOS 5)
paul7ea487b2003-03-17 02:05:07 +0000344 AC_CHECK_LIB(xnet, main)
345 CURSES=-lcurses
346 ;;
paul1b73de82005-04-10 16:31:51 +0000347 [*-sunos5.[8-9]] \
348 | [*-sunos5.1[0-9]] \
349 | [*-sunos5.1[0-9].[0-9]] \
350 | [*-solaris2.[8-9]] \
351 | [*-solaris2.1[0-9]] \
352 | [*-solaris2.1[0-9].[0-9]])
paulafd8a122005-03-12 06:36:10 +0000353 opsys=sol8
354 AC_DEFINE(SUNOS_59,,SunOS 5.8 up)
paul19877dd2004-05-11 10:49:35 +0000355 AC_DEFINE(SUNOS_5, 1, SunOS 5)
356 AC_CHECK_LIB(socket, main)
357 AC_CHECK_LIB(nsl, main)
paul1b73de82005-04-10 16:31:51 +0000358 AC_CHECK_LIB(umem, main)
paul19877dd2004-05-11 10:49:35 +0000359 CURSES=-lcurses
360 ;;
paul7ea487b2003-03-17 02:05:07 +0000361 *-sunos5* | *-solaris2*)
paul19877dd2004-05-11 10:49:35 +0000362 AC_DEFINE(SUNOS_5,,SunOS 5, Unknown SunOS)
paul7ea487b2003-03-17 02:05:07 +0000363 AC_CHECK_LIB(socket, main)
364 AC_CHECK_LIB(nsl, main)
365 CURSES=-lcurses
366 ;;
hassoc45eb832005-02-19 13:58:06 +0000367 *-linux*)
paul7ea487b2003-03-17 02:05:07 +0000368 opsys=gnu-linux
369 AC_DEFINE(GNU_LINUX,,GNU Linux)
370 ;;
371 *-nec-sysv4*)
372 AC_CHECK_LIB(nsl, gethostbyname)
373 AC_CHECK_LIB(socket, socket)
374 ;;
paul7ea487b2003-03-17 02:05:07 +0000375 *-openbsd*)
376 opsys=openbsd
377 AC_DEFINE(OPEN_BSD,,OpenBSD)
378 ;;
379 *-bsdi*)
380 opsys=bsdi
381 OTHER_METHOD="mtu_kvm.o"
382 AC_CHECK_LIB(kvm, main)
383 ;;
paul49e3b3c2003-10-23 20:39:50 +0000384 *-irix6.5)
pauldc7a2bf2003-10-22 00:07:44 +0000385 opsys=irix
386 AC_DEFINE(IRIX_65,,IRIX 6.5)
387 ;;
paul7ea487b2003-03-17 02:05:07 +0000388esac
389
390dnl ---------------------
391dnl Integrated VTY option
392dnl ---------------------
393case "${enable_vtysh}" in
394 "yes") VTYSH="vtysh";
395 AC_DEFINE(VTYSH,,VTY shell)
gdtfc9d0742004-06-30 14:25:12 +0000396 AC_PATH_PROG(PERL, perl)
397dnl Vtysh uses libreadline, which looks for termcap functions at
398dnl configure time. We follow readline's search order.
399dnl The required procedures are in libtermcap on NetBSD, in
400dnl [TODO] on Linux, and in [TODO] on Solaris.
hassoc0689392005-08-25 12:00:58 +0000401 AC_CHECK_LIB(termcap, tputs, LIBREADLINE="$LIBREADLINE -ltermcap",
paula9694592005-08-25 14:50:05 +0000402 [AC_CHECK_LIB(tinfo, tputs, LIBREADLINE="$LIBREADLINE -ltinfo",
403 [AC_CHECK_LIB(curses, tputs, LIBREADLINE="$LIBREADLINE -lcurses",
404 [AC_CHECK_LIB(ncurses, tputs,
405 LIBREADLINE="$LIBREADLINE -lncurses")]
406 )]
407 )]
408 )
409 AC_CHECK_LIB(readline, main, LIBREADLINE="$LIBREADLINE -lreadline",,
410 "$LIBREADLINE")
paul7ea487b2003-03-17 02:05:07 +0000411 if test $ac_cv_lib_readline_main = no; then
gdtfc9d0742004-06-30 14:25:12 +0000412 AC_MSG_ERROR([vtysh needs libreadline but was not found and usable on your system.])
paul7ea487b2003-03-17 02:05:07 +0000413 fi
414 AC_CHECK_HEADER(readline/history.h)
415 if test $ac_cv_header_readline_history_h = no;then
416 AC_MSG_ERROR([readline is too old to have readline/history.h, please update to the latest readline library.])
417 fi
paula9694592005-08-25 14:50:05 +0000418 AC_CHECK_LIB(readline, rl_completion_matches,
419 LIBREADLINE="$LIBREADLINE",, "$LIBREADLINE")
paul3d3de8c2003-05-23 10:33:49 +0000420 if test $ac_cv_lib_readline_rl_completion_matches = no; then
421 AC_DEFINE(rl_completion_matches,completion_matches,Old readline)
422 fi
423 ;;
paul7ea487b2003-03-17 02:05:07 +0000424 "no" ) VTYSH="";;
425 * ) ;;
426esac
hassoc0689392005-08-25 12:00:58 +0000427AC_SUBST(LIBREADLINE)
paul7ea487b2003-03-17 02:05:07 +0000428
429dnl ----------
430dnl PAM module
431dnl ----------
432if test "$with_libpam" = "yes"; then
paul24cd4352003-05-06 12:16:27 +0000433 AC_CHECK_HEADER(security/pam_misc.h)
434 if test "$ac_cv_header_security_pam_misc_h" = yes; then
435 AC_DEFINE(HAVE_PAM_MISC_H,,Have pam_misc.h)
436 AC_DEFINE(PAM_CONV_FUNC,misc_conv,Have misc_conv)
437 pam_conv_func="misc_conv"
paul24cd4352003-05-06 12:16:27 +0000438 fi
paul24cd4352003-05-06 12:16:27 +0000439 AC_CHECK_HEADER(security/openpam.h)
440 if test "$ac_cv_header_security_openpam_h" = yes; then
441 AC_DEFINE(HAVE_OPENPAM_H,,Have openpam.h)
442 AC_DEFINE(PAM_CONV_FUNC,openpam_ttyconv,Have openpam_ttyconv)
443 pam_conv_func="openpam_ttyconv"
paul24cd4352003-05-06 12:16:27 +0000444 fi
445 if test -z "$ac_cv_header_security_pam_misc_h$ac_cv_header_security_openpam_h" ; then
446 AC_MSG_WARN([*** pam support will not be built ***])
447 with_libpam="no"
448 fi
449fi
450
451if test "$with_libpam" = "yes"; then
paul7ea487b2003-03-17 02:05:07 +0000452dnl took this test from proftpd's configure.in and suited to our needs
453dnl -------------------------------------------------------------------------
454dnl
455dnl This next check looks funky due to a linker problem with some versions
456dnl of the PAM library. Prior to 0.72 release, the Linux PAM shared library
457dnl omitted requiring libdl linking information. PAM-0.72 or better ships
458dnl with RedHat 6.2 and Debian 2.2 or better.
459AC_CHECK_LIB(pam, pam_start,
paul24cd4352003-05-06 12:16:27 +0000460 [AC_CHECK_LIB(pam, $pam_conv_func,
paul7ea487b2003-03-17 02:05:07 +0000461 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
462 LIBPAM="-lpam"],
463 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
464 LIBPAM="-lpam -lpam_misc"]
465 )
466 ],
467
468 [AC_CHECK_LIB(pam, pam_end,
paul24cd4352003-05-06 12:16:27 +0000469 [AC_CHECK_LIB(pam, $pam_conv_func,
paula159ed92003-06-04 11:01:45 +0000470 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000471 LIBPAM="-lpam -ldl"],
paula159ed92003-06-04 11:01:45 +0000472 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000473 LIBPAM="-lpam -ldl -lpam_misc"]
474 )
475 ],AC_MSG_WARN([*** pam support will not be built ***]),
476 [-ldl])
477 ]
478)
479fi
480AC_SUBST(LIBPAM)
481
482dnl -------------------------------
483dnl Endian-ness check
484dnl -------------------------------
485AC_WORDS_BIGENDIAN
486
487dnl -------------------------------
488dnl check the size in byte of the C
489dnl -------------------------------
490dnl AC_CHECK_SIZEOF(char)
491dnl AC_CHECK_SIZEOF(int)
492dnl AC_CHECK_SIZEOF(short)
493dnl AC_CHECK_SIZEOF(long)
494
495dnl ----------------------------
496dnl check existance of functions
497dnl ----------------------------
paul49e3b3c2003-10-23 20:39:50 +0000498AC_CHECK_FUNCS(memset memcpy strerror inet_aton daemon snprintf vsnprintf \
paul04bd4842003-10-24 04:24:39 +0000499 strlcat strlcpy if_nametoindex if_indextoname getifaddrs \
ajs3cb98de2005-04-02 16:01:05 +0000500 fcntl strnlen)
paula159ed92003-06-04 11:01:45 +0000501AC_CHECK_FUNCS(setproctitle, ,
502 [AC_CHECK_LIB(util, setproctitle,
503 [LIBS="$LIBS -lutil"
504 AC_DEFINE(HAVE_SETPROCTITLE,, Have setproctitle)
505 ]
506 )
507 ]
508)
paul7ea487b2003-03-17 02:05:07 +0000509
510dnl ------------------------------------
511dnl Determine routing get and set method
512dnl ------------------------------------
513AC_MSG_CHECKING(zebra between kernel interface method)
514if test x"$opsys" = x"gnu-linux"; then
515 if test "${enable_netlink}" = "yes";then
516 AC_MSG_RESULT(netlink)
517 RT_METHOD=rt_netlink.o
518 AC_DEFINE(HAVE_NETLINK,,netlink)
519 netlink=yes
520 elif test "${enable_netlink}" = "no"; then
521 AC_MSG_RESULT(ioctl)
522 RT_METHOD=rt_ioctl.o
523 netlink=no
524 else
525 AC_MSG_RESULT(netlink)
526 RT_METHOD=rt_netlink.o
527 AC_DEFINE(HAVE_NETLINK,,netlink)
528 netlink=yes
529 fi
paul19877dd2004-05-11 10:49:35 +0000530elif test x"$opsys" = x"sol2-6";then
531 AC_MSG_RESULT(Route socket)
532 KERNEL_METHOD="kernel_socket.o"
533 RT_METHOD="rt_socket.o"
paulafd8a122005-03-12 06:36:10 +0000534elif test x"$opsys" = x"sol8";then
paul19877dd2004-05-11 10:49:35 +0000535 AC_MSG_RESULT(Route socket)
536 KERNEL_METHOD="kernel_socket.o"
537 RT_METHOD="rt_socket.o"
538elif test "$opsys" = "irix" ; then
539 AC_MSG_RESULT(Route socket)
540 KERNEL_METHOD="kernel_socket.o"
541 RT_METHOD="rt_socket.o"
paul7ea487b2003-03-17 02:05:07 +0000542else
paul19877dd2004-05-11 10:49:35 +0000543 AC_TRY_RUN([#include <errno.h>
paul7ea487b2003-03-17 02:05:07 +0000544#include <sys/types.h>
545#include <sys/socket.h>
546
547main ()
548{
549 int ac_sock;
550
551 ac_sock = socket (AF_ROUTE, SOCK_RAW, 0);
552 if (ac_sock < 0 && errno == EINVAL)
553 exit (1);
554 exit (0);
555}],
556 [KERNEL_METHOD=kernel_socket.o
557 RT_METHOD=rt_socket.o
558 AC_MSG_RESULT(socket)],
559 [RT_METHOD=rt_ioctl.o
560 AC_MSG_RESULT(ioctl)],
561 [KERNEL_METHOD=kernel_socket.o
562 RT_METHOD=rt_socket.o
563 AC_MSG_RESULT(socket)])
paul7ea487b2003-03-17 02:05:07 +0000564fi
565AC_SUBST(RT_METHOD)
566AC_SUBST(KERNEL_METHOD)
567AC_SUBST(OTHER_METHOD)
568
ajsb99760a2005-01-04 16:24:43 +0000569dnl ------------------------------------
570dnl check for broken CMSG_FIRSTHDR macro
571dnl ------------------------------------
gdt6c200462005-01-04 17:02:48 +0000572AC_MSG_CHECKING(for broken CMSG_FIRSTHDR)
hasso5b087522005-04-03 23:46:37 +0000573AC_RUN_IFELSE([AC_LANG_SOURCE([[
ajsb99760a2005-01-04 16:24:43 +0000574#ifdef SUNOS_5
575#define _XPG4_2
576#define __EXTENSIONS__
577#endif
578#include <stdlib.h>
579#include <sys/types.h>
580#include <sys/socket.h>
581
582main()
583{
584 struct msghdr msg;
585 char buf[4];
586
587 msg.msg_control = buf;
588 msg.msg_controllen = 0;
589
590 if (CMSG_FIRSTHDR(&msg) != NULL)
591 exit(0);
592 exit (1);
hasso5b087522005-04-03 23:46:37 +0000593}]])],[AC_MSG_RESULT(yes - using workaround) AC_DEFINE(HAVE_BROKEN_CMSG_FIRSTHDR,,Broken CMSG_FIRSTHDR)],
hassod33e8d72005-04-03 13:07:21 +0000594[AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)])
ajsb99760a2005-01-04 16:24:43 +0000595
paul7ea487b2003-03-17 02:05:07 +0000596dnl ------------------------------
597dnl check kernel route read method
598dnl ------------------------------
599AC_CACHE_CHECK(route read method check, zebra_rtread,
600[if test "$netlink" = yes; then
601 RTREAD_METHOD="rtread_netlink.o"
602 zebra_rtread="netlink"
603else
604for zebra_rtread in /proc/net/route /dev/ip /dev/null;
605do
606 test x`ls $zebra_rtread 2>/dev/null` = x"$zebra_rtread" && break
607done
608case $zebra_rtread in
609 "/proc/net/route") RTREAD_METHOD="rtread_proc.o"
610 zebra_rtread="proc";;
paul9c30ab62003-07-08 08:36:17 +0000611 "/dev/ip")
612 case "$host" in
613 *-freebsd*) RTREAD_METHOD=rtread_sysctl.o
614 zebra_rtread="sysctl";;
615 *) RTREAD_METHOD="rtread_getmsg.o"
616 zebra_rtread="getmsg";;
617 esac;;
paul7ea487b2003-03-17 02:05:07 +0000618 *) RTREAD_METHOD="rtread_sysctl.o"
619 zebra_rtread="sysctl";;
620esac
621fi])
622AC_SUBST(RTREAD_METHOD)
623
624dnl -----------------------------
625dnl check interface lookup method
626dnl -----------------------------
paul19877dd2004-05-11 10:49:35 +0000627IOCTL_METHOD=ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000628AC_MSG_CHECKING(interface looking up method)
629if test "$netlink" = yes; then
630 AC_MSG_RESULT(netlink)
631 IF_METHOD=if_netlink.o
paul19877dd2004-05-11 10:49:35 +0000632elif test "$opsys" = "sol2-6";then
633 AC_MSG_RESULT(Solaris GIF)
634 IF_METHOD=if_ioctl.o
paulafd8a122005-03-12 06:36:10 +0000635elif test "$opsys" = "sol8";then
paul19877dd2004-05-11 10:49:35 +0000636 AC_MSG_RESULT(Solaris GLIF)
637 IF_METHOD=if_ioctl_solaris.o
638 IOCTL_METHOD=ioctl_solaris.o
639elif test "$opsys" = "irix" ; then
640 AC_MSG_RESULT(IRIX)
641 IF_METHOD=if_ioctl.o
642elif test "$opsys" = "openbsd";then
643 AC_MSG_RESULT(openbsd)
644 IF_METHOD=if_ioctl.o
645elif grep NET_RT_IFLIST /usr/include/sys/socket.h >/dev/null 2>&1; then
646 AC_MSG_RESULT(sysctl)
paul7ea487b2003-03-17 02:05:07 +0000647 IF_METHOD=if_sysctl.o
648 AC_DEFINE(HAVE_NET_RT_IFLIST,,NET_RT_IFLIST)
paul19877dd2004-05-11 10:49:35 +0000649else
paul7ea487b2003-03-17 02:05:07 +0000650 AC_MSG_RESULT(ioctl)
651 IF_METHOD=if_ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000652fi
653AC_SUBST(IF_METHOD)
paul19877dd2004-05-11 10:49:35 +0000654AC_SUBST(IOCTL_METHOD)
paul7ea487b2003-03-17 02:05:07 +0000655
paul42c98192005-05-07 02:22:51 +0000656dnl ---------------------------------------------------------------
657dnl figure out how to specify an interface in multicast sockets API
658dnl ---------------------------------------------------------------
659AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex],,,[#ifdef HAVE_SYS_TYPES_H
660#include <sys/types.h>
661#endif
662#ifdef HAVE_NETINET_IN_H
663#include <netinet/in.h>
664#endif])
665
666AC_MSG_CHECKING([for BSD struct ip_mreq hack])
667AC_TRY_COMPILE([#ifdef HAVE_SYS_PARAM_H
668#include <sys/param.h>
669#endif],[#if (defined(__FreeBSD__) && (__FreeBSD_version >= 500022 || (__FreeBSD_version < 500000 && __FreeBSD_version >= 440000))) || (defined(__NetBSD__) && defined(__NetBSD_Version__) && __NetBSD_Version__ >= 106010000)
670 return (0);
671#else
672 #error No support for BSD struct ip_mreq hack detected
673#endif],[AC_MSG_RESULT(yes)
674AC_DEFINE(HAVE_BSD_STRUCT_IP_MREQ_HACK,,[Can pass ifindex in struct ip_mreq])],
675AC_MSG_RESULT(no))
676
paul7ea487b2003-03-17 02:05:07 +0000677dnl -----------------------
678dnl check proc file system.
679dnl -----------------------
680if test -r /proc/net/dev; then
681 AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev)
682 IF_PROC=if_proc.o
683fi
684
685if test -r /proc/net/if_inet6; then
686 AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6)
687 IF_PROC=if_proc.o
688fi
689AC_SUBST(IF_PROC)
690
691dnl -----------------------------
692dnl check ipforward detect method
693dnl -----------------------------
694AC_CACHE_CHECK(ipforward method check, zebra_ipforward_path,
695[for zebra_ipforward_path in /proc/net/snmp /dev/ip /dev/null;
696do
697 test x`ls $zebra_ipforward_path 2>/dev/null` = x"$zebra_ipforward_path" && break
698done
699case $zebra_ipforward_path in
700 "/proc/net/snmp") IPFORWARD=ipforward_proc.o
701 zebra_ipforward_path="proc";;
702 "/dev/ip")
703 case "$host" in
704 *-nec-sysv4*) IPFORWARD=ipforward_ews.o
705 zebra_ipforward_path="ews";;
paul9c30ab62003-07-08 08:36:17 +0000706 *-freebsd*) IPFORWARD=ipforward_sysctl.o
707 zebra_ipforward_path="sysctl";;
paul7ea487b2003-03-17 02:05:07 +0000708 *) IPFORWARD=ipforward_solaris.o
709 zebra_ipforward_path="solaris";;
710 esac;;
711 *) IPFORWARD=ipforward_sysctl.o
712 zebra_ipforward_path="sysctl";;
713esac])
714AC_SUBST(IPFORWARD)
715
716AC_CHECK_FUNCS(getaddrinfo, [have_getaddrinfo=yes], [have_getaddrinfo=no])
717
718dnl ----------
719dnl IPv6 check
720dnl ----------
721AC_MSG_CHECKING(whether does this OS have IPv6 stack)
722if test "${enable_ipv6}" = "no"; then
723 AC_MSG_RESULT(disabled)
724else
725dnl ----------
726dnl INRIA IPv6
727dnl ----------
paula159ed92003-06-04 11:01:45 +0000728 if grep IPV6_INRIA_VERSION /usr/include/netinet/in.h >/dev/null 2>&1; then
729 zebra_cv_ipv6=yes
730 AC_DEFINE(HAVE_IPV6,1,INRIA IPv6)
731 AC_DEFINE(INRIA_IPV6,1,INRIA IPv6)
732 RIPNGD="ripngd"
733 OSPF6D="ospf6d"
734 LIB_IPV6=""
735 AC_MSG_RESULT(INRIA IPv6)
paul7ea487b2003-03-17 02:05:07 +0000736dnl ---------
737dnl KAME IPv6
738dnl ---------
paula159ed92003-06-04 11:01:45 +0000739 elif grep WIDE /usr/include/netinet6/in6.h >/dev/null 2>&1; then
740 zebra_cv_ipv6=yes
741 AC_DEFINE(HAVE_IPV6,1,KAME IPv6)
742 AC_DEFINE(KAME,1,KAME IPv6)
743 RIPNGD="ripngd"
744 OSPF6D="ospf6d"
745 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
paul7ea487b2003-03-17 02:05:07 +0000746 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +0000747 fi
748 AC_MSG_RESULT(KAME)
hasso71c0fb52003-05-25 20:18:13 +0000749dnl -------------------------
750dnl MUSICA IPv6
751dnl default host check
752dnl It is not used by Kheops
753dnl -------------------------
paula159ed92003-06-04 11:01:45 +0000754 elif grep MUSICA /usr/include6/netinet6/in6.h >/dev/null 2>&1; then
755 zebra_cv_ipv6=yes
756 AC_DEFINE(HAVE_IPV6,1,Musicia IPv6)
757 AC_DEFINE(MUSICA,1,Musica IPv6 stack)
758 AC_DEFINE(KAME,1,KAME IPv6 stack)
759 RIPNGD="ripngd"
760 OSPF6D="ospf6d"
761 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
hasso71c0fb52003-05-25 20:18:13 +0000762 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +0000763 fi
764 AC_MSG_RESULT(MUSICA)
paul7ea487b2003-03-17 02:05:07 +0000765dnl ---------
766dnl NRL check
767dnl ---------
paula159ed92003-06-04 11:01:45 +0000768 elif grep NRL /usr/include/netinet6/in6.h >/dev/null 2>&1; then
769 zebra_cv_ipv6=yes
770 AC_DEFINE(HAVE_IPV6,1,NRL IPv6)
771 AC_DEFINE(NRL,1,NRL)
772 RIPNGD="ripngd"
773 OSPF6D="ospf6d"
774 if test x"$opsys" = x"bsdi";then
paul7ea487b2003-03-17 02:05:07 +0000775 AC_DEFINE(BSDI_NRL,,BSDI)
776 AC_MSG_RESULT(BSDI_NRL)
paula159ed92003-06-04 11:01:45 +0000777 else
paul7ea487b2003-03-17 02:05:07 +0000778 AC_MSG_RESULT(NRL)
paula159ed92003-06-04 11:01:45 +0000779 fi
paul19877dd2004-05-11 10:49:35 +0000780dnl ------------------------------------
781dnl Solaris 9, 10 and potentially higher
782dnl ------------------------------------
paulafd8a122005-03-12 06:36:10 +0000783 elif test x"$opsys" = x"sol8"; then
paul19877dd2004-05-11 10:49:35 +0000784 zebra_cv_ipv6=yes;
785 AC_DEFINE(HAVE_IPV6, 1, IPv6)
786 AC_DEFINE(SOLARIS_IPV6, 1, Solaris IPv6)
787 RIPNGD="ripngd"
788 OSPF6D="ospf6d"
789 AC_MSG_RESULT(Solaris IPv6)
paul7ea487b2003-03-17 02:05:07 +0000790dnl ----------
791dnl Linux IPv6
792dnl ----------
paula159ed92003-06-04 11:01:45 +0000793 elif test "${enable_ipv6}" = "yes"; then
794 AC_EGREP_CPP(yes, [
795 #include <linux/version.h>
796 /* 2.1.128 or later */
797 #if LINUX_VERSION_CODE >= 0x020180
798 yes
799 #endif],
800 [zebra_cv_ipv6=yes
801 zebra_cv_linux_ipv6=yes
802 AC_MSG_RESULT(Linux IPv6)])
803 else
804 if test x`ls /proc/net/ipv6_route 2>/dev/null` = x"/proc/net/ipv6_route"
805 then
paul7ea487b2003-03-17 02:05:07 +0000806 zebra_cv_ipv6=yes
807 zebra_cv_linux_ipv6=yes
808 AC_MSG_RESULT(Linux IPv6)
paula159ed92003-06-04 11:01:45 +0000809 fi
810 fi
paul7ea487b2003-03-17 02:05:07 +0000811
paula159ed92003-06-04 11:01:45 +0000812 if test "$zebra_cv_linux_ipv6" = "yes";then
hasso850d39f2005-06-30 13:52:20 +0000813 AC_MSG_CHECKING(whether libc has IPv6 support)
814 AC_TRY_LINK([#include <netinet/in.h>
815 ],[ int a; a = (int) in6addr_any.s6_addr[0]; if (a != 12345) return a; ],
816 [AC_MSG_RESULT(yes)
817 zebra_cv_ipv6=yes
818 zebra_cv_linux_ipv6=yes],
819 [AC_MSG_RESULT(no)
820 zebra_cv_ipv6=no
821 zebra_cv_linux_ipv6=no])
822 fi
823
824 if test "$zebra_cv_linux_ipv6" = "yes";then
paula159ed92003-06-04 11:01:45 +0000825 AC_MSG_CHECKING(for GNU libc >= 2.1)
826 AC_DEFINE(HAVE_IPV6,1,Linux IPv6)
827 AC_EGREP_CPP(yes, [
paul7ea487b2003-03-17 02:05:07 +0000828#include <features.h>
829#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
830 yes
paula159ed92003-06-04 11:01:45 +0000831#endif],
832 [glibc=yes
833 AC_DEFINE(LINUX_IPV6,1,Linux IPv6 stack)
834 AC_MSG_RESULT(yes)],
835 AC_MSG_RESULT(no)
836 )
837 RIPNGD="ripngd"
838 OSPF6D="ospf6d"
839 if test "$glibc" != "yes"; then
paul7ea487b2003-03-17 02:05:07 +0000840 INCLUDES="-I/usr/inet6/include"
841 if test x`ls /usr/inet6/lib/libinet6.a 2>/dev/null` != x;then
842 LIB_IPV6="-L/usr/inet6/lib -linet6"
843 fi
paula159ed92003-06-04 11:01:45 +0000844 fi
845 fi
paul7ea487b2003-03-17 02:05:07 +0000846
847dnl -----------------------
848dnl Set IPv6 related values
849dnl -----------------------
paula159ed92003-06-04 11:01:45 +0000850 LIBS="$LIB_IPV6 $LIBS"
851 AC_SUBST(LIB_IPV6)
paul7ea487b2003-03-17 02:05:07 +0000852
paula159ed92003-06-04 11:01:45 +0000853 if test x"$RIPNGD" = x""; then
854 AC_MSG_RESULT(IPv4 only)
855 fi
paul7ea487b2003-03-17 02:05:07 +0000856fi
857
gdtfa3232e2003-12-03 17:52:30 +0000858dnl ------------------
859dnl IPv6 header checks
860dnl ------------------
861if test "x${zebra_cv_ipv6}" = "xyes"; then
862AC_CHECK_HEADERS([netinet6/in6.h netinet/in6_var.h netinet/icmp6.h \
863 netinet6/in6_var.h netinet6/nd6.h])
864fi
865
paul7ea487b2003-03-17 02:05:07 +0000866dnl --------------------
867dnl Daemon disable check
868dnl --------------------
869if test "${enable_zebra}" = "no";then
870 ZEBRA=""
871else
872 ZEBRA="zebra"
873fi
874
875if test "${enable_bgpd}" = "no";then
876 BGPD=""
877else
878 BGPD="bgpd"
879fi
880
881if test "${enable_ripd}" = "no";then
882 RIPD=""
883else
884 RIPD="ripd"
885fi
886
887if test "${enable_ospfd}" = "no";then
888 OSPFD=""
889else
890 OSPFD="ospfd"
891fi
892
ajsd0199432004-12-22 14:03:52 +0000893if test "${enable_watchquagga}" = "no";then
894 WATCHQUAGGA=""
895else
896 WATCHQUAGGA="watchquagga"
897fi
898
paul1ef74ef2003-03-21 15:16:05 +0000899OSPFCLIENT=""
900if test "${enable_opaque_lsa}" = "yes"; then
901 if test "${enable_ospfapi}" != "no";then
paul9a569842003-03-28 01:45:13 +0000902 AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI)
paul1ef74ef2003-03-21 15:16:05 +0000903
904 if test "${enable_ospfclient}" != "no";then
905 OSPFCLIENT="ospfclient"
906 fi
907 fi
908
paul7ea487b2003-03-17 02:05:07 +0000909fi
910
911case "${enable_ripngd}" in
912 "yes") RIPNGD="ripngd";;
913 "no" ) RIPNGD="";;
914 * ) ;;
915esac
916
917case "${enable_ospf6d}" in
918 "yes") OSPF6D="ospf6d";;
919 "no" ) OSPF6D="";;
920 * ) ;;
921esac
922
jardin9e867fe2003-12-23 08:56:18 +0000923case "${enable_isisd}" in
924 "yes") ISISD="isisd";;
925 "no" ) ISISD="";;
hassoae399ab2004-09-13 20:22:18 +0000926 * ) ;;
jardin9e867fe2003-12-23 08:56:18 +0000927esac
928
paul7ea487b2003-03-17 02:05:07 +0000929if test "${enable_bgp_announce}" = "no";then
930 AC_DEFINE(DISABLE_BGP_ANNOUNCE,,Disable BGP installation to zebra)
931fi
932
933AC_SUBST(ZEBRA)
934AC_SUBST(BGPD)
935AC_SUBST(RIPD)
936AC_SUBST(RIPNGD)
937AC_SUBST(OSPFD)
938AC_SUBST(OSPF6D)
ajsd0199432004-12-22 14:03:52 +0000939AC_SUBST(WATCHQUAGGA)
jardin9e867fe2003-12-23 08:56:18 +0000940AC_SUBST(ISISD)
paul7ea487b2003-03-17 02:05:07 +0000941AC_SUBST(VTYSH)
942AC_SUBST(INCLUDES)
943AC_SUBST(CURSES)
944AC_SUBST(OSPFCLIENT)
paul1ef74ef2003-03-21 15:16:05 +0000945AC_SUBST(OSPFAPI)
paul7ea487b2003-03-17 02:05:07 +0000946AC_CHECK_LIB(c, inet_ntop, [AC_DEFINE(HAVE_INET_NTOP,,inet_ntop)])
947AC_CHECK_LIB(c, inet_pton, [AC_DEFINE(HAVE_INET_PTON,,inet_pton)])
948AC_CHECK_LIB(crypt, crypt)
949AC_CHECK_LIB(resolv, res_init)
950AC_CHECK_LIB(m, main)
951
952dnl ---------------------------------------------------
953dnl BSD/OS 4.1 define inet_XtoY function as __inet_XtoY
954dnl ---------------------------------------------------
paula159ed92003-06-04 11:01:45 +0000955AC_CHECK_FUNC(__inet_ntop, AC_DEFINE(HAVE_INET_NTOP,,__inet_ntop))
956AC_CHECK_FUNC(__inet_pton, AC_DEFINE(HAVE_INET_PTON,,__inet_pton))
957AC_CHECK_FUNC(__inet_aton, AC_DEFINE(HAVE_INET_ATON,,__inet_aton))
paul7ea487b2003-03-17 02:05:07 +0000958
959dnl ---------------------------
960dnl check system has GNU regexp
961dnl ---------------------------
962dnl AC_MSG_CHECKING(whether system has GNU regex)
963AC_CHECK_LIB(c, regexec,
964[AC_DEFINE(HAVE_GNU_REGEX,,GNU regexp library)
965 LIB_REGEX=""],
966[LIB_REGEX="regex.o"])
967AC_SUBST(LIB_REGEX)
968
969dnl ------------------
970dnl check SNMP library
971dnl ------------------
972if test "${enable_snmp}" = "yes";then
973dnl AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
paul7ea487b2003-03-17 02:05:07 +0000974 if test "${HAVE_SNMP}" = ""; then
paul1ef74ef2003-03-21 15:16:05 +0000975 old_libs="${LIBS}"
976 LIBS="-L/usr/lib"
paul7ea487b2003-03-17 02:05:07 +0000977 unset ac_cv_lib_snmp_asn_parse_int
paul1ef74ef2003-03-21 15:16:05 +0000978 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
979 if test "${NEED_CRYPTO}" = ""; then
980 AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes ])
981 else
982 AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes; NEED_CRYPTO=yes;LIBS="$LIBS -lcrypto" ],,"-lcrypto")
983 fi
984 LIBS="${old_libs}"
paul7ea487b2003-03-17 02:05:07 +0000985 fi
paul1ef74ef2003-03-21 15:16:05 +0000986 if test "${HAVE_SNMP}" = ""; then
987 old_libs="${LIBS}"
988 LIBS="-L/usr/lib"
989 unset ac_cv_lib_snmp_asn_parse_int
990 AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes, )
991 if test "${HAVE_SNMP}" = ""; then
992 unset ac_cv_lib_snmp_asn_parse_int
993 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
994 if test "${NEED_CRYPTO}" = "yes"; then
995 AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
996 fi
997 fi
998 LIBS="${old_libs}"
999 fi
paul7ea487b2003-03-17 02:05:07 +00001000
1001 if test "${HAVE_SNMP}" = ""; then
paul1ef74ef2003-03-21 15:16:05 +00001002 old_libs="${LIBS}"
1003 LIBS="-L/usr/local/lib"
1004 unset ac_cv_lib_snmp_asn_parse_int
1005 AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
1006 if test "${HAVE_SNMP}" = ""; then
1007 unset ac_cv_lib_snmp_asn_parse_int
1008 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
1009 if test "${NEED_CRYPTO}" = "yes"; then
1010 AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
1011 fi
1012 fi
1013 LIBS="${old_libs}"
paul7ea487b2003-03-17 02:05:07 +00001014 fi
paul1ef74ef2003-03-21 15:16:05 +00001015
paul7ea487b2003-03-17 02:05:07 +00001016 if test "${HAVE_SNMP}" = "yes"; then
1017 for ac_snmp in /usr/include/net-snmp/library/asn1.h /usr/include/ucd-snmp/asn1.h /usr/local/include/ucd-snmp/asn1.h /dev/null
1018 do
1019 test -f "${ac_snmp}" && break
1020 done
paul1ef74ef2003-03-21 15:16:05 +00001021
paul7ea487b2003-03-17 02:05:07 +00001022 case ${ac_snmp} in
1023 /usr/include/net-snmp/*)
1024 AC_DEFINE(HAVE_SNMP,,SNMP)
paul1ef74ef2003-03-21 15:16:05 +00001025 AC_DEFINE(HAVE_NETSNMP,,SNMP)
paul7ea487b2003-03-17 02:05:07 +00001026 AC_DEFINE(UCD_COMPATIBLE,,SNMP)
hasso2d582282005-03-28 15:29:07 +00001027 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/net-snmp -I/usr/include/net-snmp/library"
paulac7c4bb2003-03-19 04:25:08 +00001028 if test "${HAVE_NETSNMP}" = "yes"; then
paul1ef74ef2003-03-21 15:16:05 +00001029 LIBS="${LIBS} -lnetsnmp"
paulac7c4bb2003-03-19 04:25:08 +00001030 else
paul1ef74ef2003-03-21 15:16:05 +00001031 LIBS="${LIBS} -lsnmp"
paulac7c4bb2003-03-19 04:25:08 +00001032 fi
paul7ea487b2003-03-17 02:05:07 +00001033 ;;
1034 /usr/include/ucd-snmp/*)
1035 AC_DEFINE(HAVE_SNMP,,SNMP)
hasso2d582282005-03-28 15:29:07 +00001036 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/ucd-snmp"
paul7ea487b2003-03-17 02:05:07 +00001037 LIBS="${LIBS} -lsnmp"
1038 ;;
1039 /usr/local/include/ucd-snmp/*)
1040 AC_DEFINE(HAVE_SNMP,,SNMP)
hasso2d582282005-03-28 15:29:07 +00001041 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/ucd-snmp"
paul7ea487b2003-03-17 02:05:07 +00001042 LIBS="${LIBS} -L/usr/local/lib -lsnmp"
1043 ;;
paulf3bd1a72003-11-02 07:29:11 +00001044 /usr/local/include/net-snmp/*)
1045 AC_DEFINE(HAVE_SNMP,,SNMP)
1046 AC_DEFINE(HAVE_NET_SNMP,,SNMP)
1047 AC_DEFINE(UCD_COMPATIBLE,,SNMP)
hasso2d582282005-03-28 15:29:07 +00001048 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/net-snmp"
paulf3bd1a72003-11-02 07:29:11 +00001049 LIBS="${LIBS} -L/usr/local/lib -lnetsnmp"
1050 ;;
paul7ea487b2003-03-17 02:05:07 +00001051 esac
1052 if test "${NEED_CRYPTO}" = "yes"; then
1053 LIBS="${LIBS} -lcrypto"
1054 fi
1055 fi
1056fi
1057
ajs6cf9df02005-01-12 16:52:55 +00001058if test "${enable_snmp}" = "yes" -a "${HAVE_SNMP}" != "yes"; then
1059 AC_MSG_ERROR([--enable-snmp given, but cannot find support for SNMP])
1060fi
1061
hasso2d582282005-03-28 15:29:07 +00001062AC_SUBST(SNMP_INCLUDES)
1063
paul7ea487b2003-03-17 02:05:07 +00001064dnl ----------------------------
1065dnl check sa_len of sockaddr
1066dnl ----------------------------
1067AC_MSG_CHECKING(whether struct sockaddr has a sa_len field)
1068AC_TRY_COMPILE([#include <sys/types.h>
1069#include <sys/socket.h>
1070],[static struct sockaddr ac_i;int ac_j = sizeof (ac_i.sa_len);],
1071[AC_MSG_RESULT(yes)
1072 AC_DEFINE(HAVE_SA_LEN,,sa_len)],
1073 AC_MSG_RESULT(no))
1074
1075dnl ----------------------------
1076dnl check sin_len of sockaddr_in
1077dnl ----------------------------
1078AC_MSG_CHECKING(whether struct sockaddr_in has a sin_len field)
1079AC_TRY_COMPILE([#include <sys/types.h>
1080#include <netinet/in.h>
1081],[static struct sockaddr_in ac_i;int ac_j = sizeof (ac_i.sin_len);],
1082[AC_MSG_RESULT(yes)
1083 AC_DEFINE(HAVE_SIN_LEN,,sin_len)],
1084 AC_MSG_RESULT(no))
1085
1086dnl ----------------------------
1087dnl check sun_len of sockaddr_un
1088dnl ----------------------------
1089AC_MSG_CHECKING(whether struct sockaddr_un has a sun_len field)
1090AC_TRY_COMPILE([#include <sys/types.h>
1091#include <sys/un.h>
1092],[static struct sockaddr_un ac_i;int ac_j = sizeof (ac_i.sun_len);],
1093[AC_MSG_RESULT(yes)
1094 AC_DEFINE(HAVE_SUN_LEN,,sun_len)],
1095 AC_MSG_RESULT(no))
1096
1097dnl -----------------------------------
1098dnl check sin6_scope_id of sockaddr_in6
1099dnl -----------------------------------
1100if test "$zebra_cv_ipv6" = yes; then
1101 AC_MSG_CHECKING(whether struct sockaddr_in6 has a sin6_scope_id field)
1102 AC_TRY_COMPILE([#include <sys/types.h>
1103#include <netinet/in.h>
1104],[static struct sockaddr_in6 ac_i;int ac_j = sizeof (ac_i.sin6_scope_id);],
1105[AC_MSG_RESULT(yes)
1106 AC_DEFINE(HAVE_SIN6_SCOPE_ID,,scope id)],
1107 AC_MSG_RESULT(no))
1108fi
1109
1110dnl ----------------------------
1111dnl check socklen_t exist or not
1112dnl ----------------------------
1113AC_MSG_CHECKING(whther socklen_t is defined)
1114AC_TRY_COMPILE([#include <sys/types.h>
1115#include <sys/socket.h>
1116#include <netinet/in.h>
1117],[socklen_t ac_x;],
1118[AC_MSG_RESULT(yes)
1119 AC_DEFINE(HAVE_SOCKLEN_T,,socklen_t)],
1120 AC_MSG_RESULT(no))
1121
1122dnl ------------------------
1123dnl check struct sockaddr_dl
1124dnl ------------------------
1125AC_MSG_CHECKING(whether struct sockaddr_dl exist)
1126AC_EGREP_HEADER(sockaddr_dl,
1127net/if_dl.h,
1128[AC_MSG_RESULT(yes)
1129 AC_DEFINE(HAVE_SOCKADDR_DL,,sockaddr_dl)],
1130 AC_MSG_RESULT(no))
1131
1132dnl --------------------------
1133dnl check structure ifaliasreq
1134dnl --------------------------
1135AC_MSG_CHECKING(whether struct ifaliasreq exist)
1136AC_EGREP_HEADER(ifaliasreq,
1137net/if.h,
1138[AC_MSG_RESULT(yes)
1139 AC_DEFINE(HAVE_IFALIASREQ,,ifaliasreq)],
1140 AC_MSG_RESULT(no))
1141
1142dnl ----------------------------
1143dnl check structure in6_aliasreq
1144dnl ----------------------------
hasso71c0fb52003-05-25 20:18:13 +00001145AC_MSG_CHECKING(whether struct in6_aliasreq exist)
paul7ea487b2003-03-17 02:05:07 +00001146AC_EGREP_HEADER(in6_aliasreq,
1147netinet6/in6_var.h,
1148[AC_MSG_RESULT(yes)
1149 AC_DEFINE(HAVE_IN6_ALIASREQ,,in6_aliasreq)],
1150 AC_MSG_RESULT(no))
1151
hasso71c0fb52003-05-25 20:18:13 +00001152dnl -----------------------------------
1153dnl check ifra_lifetime of in6_aliasreq
1154dnl -----------------------------------
1155AC_MSG_CHECKING(whether in6_aliasreq.ifra_lifetime exist)
1156AC_TRY_COMPILE([#include <sys/types.h>
1157#include <netinet6/in6_var.h>
1158],[static struct if6_aliasreq ac_i;int ac_j = sizeof (ac_i.ifra_lifetime);],
1159[AC_MSG_RESULT(yes)
paula159ed92003-06-04 11:01:45 +00001160 AC_DEFINE(HAVE_IFRA_LIFETIME,,Have in6_aliasreq.ifra_lifetime)],
hasso71c0fb52003-05-25 20:18:13 +00001161 AC_MSG_RESULT(no))
1162
paul7ea487b2003-03-17 02:05:07 +00001163dnl ---------------------------
1164dnl check structure rt_addrinfo
1165dnl ---------------------------
1166AC_MSG_CHECKING(whether struct rt_addrinfo exist)
1167AC_EGREP_HEADER(rt_addrinfo,
1168net/route.h,
1169[AC_MSG_RESULT(yes)
1170 AC_DEFINE(HAVE_RT_ADDRINFO,,rt_addrinfo)],
1171 AC_MSG_RESULT(no))
1172
1173dnl --------------------------
1174dnl check structure in_pktinfo
1175dnl --------------------------
1176AC_MSG_CHECKING(whether struct in_pktinfo exist)
1177AC_TRY_COMPILE([#include <netinet/in.h>
1178],[struct in_pktinfo ac_x;],
1179[AC_MSG_RESULT(yes)
1180 AC_DEFINE(HAVE_INPKTINFO,,in_pktinfo)],
1181 AC_MSG_RESULT(no))
1182
vincent29c4c9b2005-03-25 13:05:47 +00001183dnl ----------------------------------
1184dnl check struct nd_opt_homeagent_info
1185dnl ----------------------------------
1186AC_MSG_CHECKING(whether struct nd_opt_homeagent_info exist)
1187AC_EGREP_HEADER(nd_opt_homeagent_info,
1188netinet/icmp6.h,
1189[AC_MSG_RESULT(yes)
1190 AC_DEFINE(HAVE_ND_OPT_HOMEAGENT_INFO,,nd_opt_homeagent_info)],
1191 AC_MSG_RESULT(no))
1192
1193dnl --------------------------------
1194dnl check struct nd_opt_adv_interval
1195dnl --------------------------------
1196AC_MSG_CHECKING(whether struct nd_opt_adv_interval exist)
1197AC_EGREP_HEADER(nd_opt_adv_interval,
1198netinet/icmp6.h,
1199[AC_MSG_RESULT(yes)
1200 AC_DEFINE(HAVE_ND_OPT_ADV_INTERVAL,,nd_opt_adv_interval)],
1201 AC_MSG_RESULT(no))
1202
1203dnl ------------------------------------
1204dnl check fields in nd_opt_adv_interval
1205dnl ------------------------------------
1206AC_MSG_CHECKING(whether nd_opt_ai_type field exist)
1207AC_EGREP_HEADER(nd_opt_ai_type,
1208netinet/icmp6.h,
1209[AC_MSG_RESULT(yes)
1210 AC_DEFINE(HAVE_ND_OPT_ADV_INTERVAL_AI_FIELDS,,nd_opt_ai_type)],
1211 AC_MSG_RESULT(no))
1212
paul7ea487b2003-03-17 02:05:07 +00001213dnl --------------------------------------
1214dnl checking for getrusage struct and call
1215dnl --------------------------------------
1216AC_MSG_CHECKING(whether getrusage is available)
1217AC_TRY_COMPILE([#include <sys/resource.h>
1218],[struct rusage ac_x; getrusage (RUSAGE_SELF, &ac_x);],
1219[AC_MSG_RESULT(yes)
1220 AC_DEFINE(HAVE_RUSAGE,,rusage)],
1221 AC_MSG_RESULT(no))
1222
pauledd7c242003-06-04 13:59:38 +00001223dnl -------------------
1224dnl capabilities checks
1225dnl -------------------
hasso41d3fc92004-04-06 11:59:00 +00001226if test "${enable_capabilities}" != "no"; then
1227 AC_MSG_CHECKING(whether prctl PR_SET_KEEPCAPS is available)
1228 AC_TRY_COMPILE([#include <sys/prctl.h>],[prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);],
1229 [AC_MSG_RESULT(yes)
1230 AC_DEFINE(HAVE_PR_SET_KEEPCAPS,,prctl)
1231 quagga_ac_keepcaps="yes"],
1232 AC_MSG_RESULT(no)
pauledd7c242003-06-04 13:59:38 +00001233 )
hasso41d3fc92004-04-06 11:59:00 +00001234 if test x"${quagga_ac_keepcaps}" = x"yes"; then
1235 AC_CHECK_HEADERS(sys/capability.h)
1236 fi
1237 if test x"${ac_cv_header_sys_capability_h}" = x"yes"; then
1238 AC_CHECK_LIB(cap, cap_init,
1239 [AC_DEFINE(HAVE_LCAPS,1,Capabilities)
1240 LIBCAP="-lcap"
1241 ]
1242 )
1243 fi
pauledd7c242003-06-04 13:59:38 +00001244fi
1245AC_SUBST(LIBCAP)
1246
ajs40abf232005-01-12 17:27:27 +00001247dnl -------------------
1248dnl test for ucontext.h
1249dnl -------------------
1250AC_CHECK_HEADERS(ucontext.h)
1251
paulfb2d1502003-06-04 09:40:54 +00001252dnl ---------------------------
1253dnl check for glibc 'backtrace'
1254dnl ---------------------------
1255if test "${glibc}" = "yes"; then
1256 AC_CHECK_HEADER(execinfo.h)
1257fi
1258if test x"${ac_cv_header_execinfo_h}" = x"yes"; then
1259 AC_CHECK_FUNC(backtrace,
1260 [AC_DEFINE(HAVE_GLIBC_BACKTRACE,,Glibc backtrace)]
1261 )
1262fi
1263
paul408ad942003-05-20 00:03:33 +00001264dnl ----------
1265dnl configure date
1266dnl ----------
1267CONFDATE=`date '+%Y%m%d'`
1268AC_SUBST(CONFDATE)
1269
paul7ea487b2003-03-17 02:05:07 +00001270dnl ------------------------------
paula159ed92003-06-04 11:01:45 +00001271dnl set paths for state directory
paul23bd12c2003-04-07 06:11:09 +00001272dnl ------------------------------
1273if test "${prefix}" = "NONE"; then
paule8f29842003-08-12 13:08:31 +00001274 quagga_statedir_prefix="";
paul23bd12c2003-04-07 06:11:09 +00001275else
paule8f29842003-08-12 13:08:31 +00001276 quagga_statedir_prefix=${prefix}
paul23bd12c2003-04-07 06:11:09 +00001277fi
1278if test "${localstatedir}" = '${prefix}/var'; then
paula159ed92003-06-04 11:01:45 +00001279 AC_CACHE_CHECK(state directory,ac_statedir,
paule8f29842003-08-12 13:08:31 +00001280 [for QUAGGA_STATE_DIR in ${quagga_statedir_prefix}/var/run dnl
1281 ${quagga_statedir_prefix}/var/adm dnl
1282 ${quagga_statedir_prefix}/etc dnl
paula159ed92003-06-04 11:01:45 +00001283 /var/run dnl
1284 /var/adm dnl
1285 /etc dnl
1286 /dev/null;
paul23bd12c2003-04-07 06:11:09 +00001287 do
paule8f29842003-08-12 13:08:31 +00001288 test -d $QUAGGA_STATE_DIR && break
paul23bd12c2003-04-07 06:11:09 +00001289 done
paule8f29842003-08-12 13:08:31 +00001290 quagga_statedir=$QUAGGA_STATE_DIR])
paul23bd12c2003-04-07 06:11:09 +00001291else
paule8f29842003-08-12 13:08:31 +00001292 quagga_statedir=${localstatedir}
paula159ed92003-06-04 11:01:45 +00001293 AC_MSG_CHECKING(directory to use for state file)
paule8f29842003-08-12 13:08:31 +00001294 AC_MSG_RESULT(${quagga_statedir})
paul26275b02005-04-11 07:10:47 +00001295 AC_SUBST(quagga_statedir)
paul23bd12c2003-04-07 06:11:09 +00001296fi
paule8f29842003-08-12 13:08:31 +00001297if test $quagga_statedir = "/dev/null"; then
paula159ed92003-06-04 11:01:45 +00001298 AC_MSG_ERROR('STATE DIRECTORY NOT FOUND! FIX OR SPECIFY --localstatedir!')
1299fi
1300
paule8f29842003-08-12 13:08:31 +00001301AC_DEFINE_UNQUOTED(PATH_ZEBRA_PID, "$quagga_statedir/zebra.pid",zebra PID)
1302AC_DEFINE_UNQUOTED(PATH_RIPD_PID, "$quagga_statedir/ripd.pid",ripd PID)
1303AC_DEFINE_UNQUOTED(PATH_RIPNGD_PID, "$quagga_statedir/ripngd.pid",ripngd PID)
1304AC_DEFINE_UNQUOTED(PATH_BGPD_PID, "$quagga_statedir/bgpd.pid",bgpd PID)
1305AC_DEFINE_UNQUOTED(PATH_OSPFD_PID, "$quagga_statedir/ospfd.pid",ospfd PID)
1306AC_DEFINE_UNQUOTED(PATH_OSPF6D_PID, "$quagga_statedir/ospf6d.pid",ospf6d PID)
jardin9e867fe2003-12-23 08:56:18 +00001307AC_DEFINE_UNQUOTED(PATH_ISISD_PID, "$quagga_statedir/isisd.pid",isisd PID)
ajsd0199432004-12-22 14:03:52 +00001308AC_DEFINE_UNQUOTED(PATH_WATCHQUAGGA_PID, "$quagga_statedir/watchquagga.pid",watchquagga PID)
paule8f29842003-08-12 13:08:31 +00001309AC_DEFINE_UNQUOTED(ZEBRA_SERV_PATH, "$quagga_statedir/zserv.api",zebra api socket)
1310AC_DEFINE_UNQUOTED(ZEBRA_VTYSH_PATH, "$quagga_statedir/zebra.vty",zebra vty socket)
1311AC_DEFINE_UNQUOTED(RIP_VTYSH_PATH, "$quagga_statedir/ripd.vty",rip vty socket)
1312AC_DEFINE_UNQUOTED(RIPNG_VTYSH_PATH, "$quagga_statedir/ripngd.vty",ripng vty socket)
1313AC_DEFINE_UNQUOTED(BGP_VTYSH_PATH, "$quagga_statedir/bgpd.vty",bgpd vty socket)
1314AC_DEFINE_UNQUOTED(OSPF_VTYSH_PATH, "$quagga_statedir/ospfd.vty",ospfd vty socket)
1315AC_DEFINE_UNQUOTED(OSPF6_VTYSH_PATH, "$quagga_statedir/ospf6d.vty",ospf6d vty socket)
jardin9e867fe2003-12-23 08:56:18 +00001316AC_DEFINE_UNQUOTED(ISIS_VTYSH_PATH, "$quagga_statedir/isisd.vty",isisd vty socket)
ajs515210b2004-12-22 15:35:12 +00001317AC_DEFINE_UNQUOTED(DAEMON_VTY_DIR, "$quagga_statedir",daemon vty directory)
paul7ea487b2003-03-17 02:05:07 +00001318
paul1eb8ef22005-04-07 07:30:20 +00001319dnl -------------------------------
1320dnl Quagga sources should always be
1321dnl current wrt interfaces. Dont
1322dnl allow deprecated interfaces to
1323dnl be exposed.
1324dnl -------------------------------
1325AC_DEFINE(QUAGGA_NO_DEPRECATED_INTERFACES, 1, Hide deprecated interfaces)
1326
paul7ea487b2003-03-17 02:05:07 +00001327dnl ---------------------------
1328dnl Check htonl works correctly
1329dnl ---------------------------
1330AC_MSG_CHECKING(for working htonl)
1331AC_CACHE_VAL(ac_cv_htonl_works, [
1332AC_TRY_LINK([#ifdef HAVE_SYS_TYPES_H
1333#include <sys/types.h>
1334#endif
1335#ifdef HAVE_NETDB_H
1336#include <netdb.h>
1337#endif
1338#ifdef HAVE_NETINET_IN_H
1339#include <netinet/in.h>
1340#endif],
1341[htonl (0);],
1342ac_cv_htonl_works=yes,
1343ac_cv_htonl_works=no)])
1344AC_MSG_RESULT($ac_cv_htonl_works)
1345
paul14c17fd2004-11-07 22:34:23 +00001346AC_CONFIG_FILES([Makefile lib/Makefile zebra/Makefile ripd/Makefile
ajsd0199432004-12-22 14:03:52 +00001347 ripngd/Makefile bgpd/Makefile ospfd/Makefile watchquagga/Makefile
jardin9e867fe2003-12-23 08:56:18 +00001348 ospf6d/Makefile isisd/Makefile vtysh/Makefile doc/Makefile
paul14c17fd2004-11-07 22:34:23 +00001349 ospfclient/Makefile tests/Makefile m4/Makefile redhat/Makefile
gdt69f1fc22004-08-27 15:57:35 +00001350 pkgsrc/Makefile
paul670bbf12004-11-12 09:05:00 +00001351 redhat/quagga.spec
gdtb7a97f82004-07-23 16:23:56 +00001352 lib/version.h
paul14c17fd2004-11-07 22:34:23 +00001353 doc/defines.texi
hassof695b012005-04-02 19:03:39 +00001354 isisd/topology/Makefile
gdtcbd04082004-08-31 18:16:36 +00001355 pkgsrc/bgpd.sh pkgsrc/ospf6d.sh pkgsrc/ospfd.sh
paulf31293a2004-11-12 09:27:04 +00001356 pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh])
paul26275b02005-04-11 07:10:47 +00001357AC_CONFIG_FILES([solaris/Makefile])
1358
paul670bbf12004-11-12 09:05:00 +00001359AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl])
hasso48577192004-11-19 06:41:49 +00001360## Hack, but working solution to avoid rebuilding of quagga.info.
1361## It's already in CVS until texinfo 4.7 is more common.
paul14c1f182005-05-13 20:11:53 +00001362AC_CONFIG_COMMANDS([info-time],[touch doc/quagga.info])
paul14c17fd2004-11-07 22:34:23 +00001363AC_OUTPUT
paul7ea487b2003-03-17 02:05:07 +00001364
1365echo "
hassoc89f6492004-08-26 12:21:28 +00001366Quagga configuration
1367--------------------
1368quagga version : ${PACKAGE_VERSION}
paul7ea487b2003-03-17 02:05:07 +00001369host operationg system : ${host_os}
1370source code location : ${srcdir}
1371compiler : ${CC}
1372compiler flags : ${CFLAGS}
hasso2d582282005-03-28 15:29:07 +00001373includes : ${INCLUDES} ${SNMP_INCLUDES}
hassoc0689392005-08-25 12:00:58 +00001374linker flags : ${LDFLAGS} ${LIBS} ${LIBCAP} ${LIBREADLINE}
paule8f29842003-08-12 13:08:31 +00001375state file directory : ${quagga_statedir}
pauldc7a2bf2003-10-22 00:07:44 +00001376config file directory : `eval echo \`echo ${sysconfdir}\``
gdtd6b72f72003-12-03 17:24:27 +00001377example directory : `eval echo \`echo ${exampledir}\``
paul8d4aee52003-06-06 00:30:35 +00001378user to run as : ${enable_user}
1379group to run as : ${enable_group}
1380group for vty sockets : ${enable_vty_group}
gdtaa593d52003-12-22 20:15:53 +00001381config file mask : ${enable_configfile_mask}
1382log file mask : ${enable_logfile_mask}
pauldc7a2bf2003-10-22 00:07:44 +00001383
1384The above user and group must have read/write access to the state file
1385directory and to the config files in the config file directory.
paul7ea487b2003-03-17 02:05:07 +00001386"