blob: 904831163ff12f9959a94964fa6d2adc9c8effd2 [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##
hassoc0689392005-08-25 12:00:58 +00008## $Id: configure.ac,v 1.110 2005/08/25 12:00:58 hasso 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
gdt7fd63b32004-10-07 13:53:29 +000091 CFLAGS="-Os -g -Wall -Wsign-compare -Wpointer-arith"
hasso7347a2a2004-10-05 14:15:17 +000092 CFLAGS="${CFLAGS} -Wbad-function-cast -Wwrite-strings"
paula49c0ff2004-09-30 06:08:58 +000093 fi
gdt7fd63b32004-10-07 13:53:29 +000094 # TODO: conditionally addd -Wpacked if handled
paul7ea487b2003-03-17 02:05:07 +000095fi
96
hasso1969e4b2005-03-27 13:07:23 +000097dnl ---------------------------------------------------------------------
98dnl Intel compiler warnings we ignore:
99dnl 279: controlling expression is constant.
100dnl 869: parameter "xxx" was never referenced - to avoid massive warnings
101dnl about "self", "vty", "argc" and "argv" never referenced in DEFUN
102dnl macro.
103dnl 981: operands are evaluated in unspecified order.
104dnl ---------------------------------------------------------------------
105
106if test "$ICC" = "yes"; then
107 CFLAGS="-Os -g -Wall -wd 279,869,981"
108fi
109
paul7ea487b2003-03-17 02:05:07 +0000110dnl --------------
111dnl Check programs
112dnl --------------
paul7ea487b2003-03-17 02:05:07 +0000113AC_PROG_INSTALL
114AC_PROG_MAKE_SET
115AC_CHECK_TOOL(AR, ar)
116AC_CHECK_TOOL(RANLIB, ranlib, :)
117
118dnl ---------
119dnl AIX check
120dnl ---------
121AC_AIX
122
gdt87efd642004-06-30 17:36:11 +0000123dnl -------
124dnl libtool
125dnl -------
paul0fc42942004-08-19 04:41:21 +0000126AC_PROG_LIBTOOL
gdt87efd642004-06-30 17:36:11 +0000127
paul7ea487b2003-03-17 02:05:07 +0000128dnl ----------------------
129dnl Packages configuration
130dnl ----------------------
131AC_ARG_ENABLE(vtysh,
gdtfc9d0742004-06-30 14:25:12 +0000132[ --enable-vtysh include integrated vty shell for Quagga])
paul7ea487b2003-03-17 02:05:07 +0000133AC_ARG_ENABLE(ipv6,
134[ --disable-ipv6 turn off IPv6 related features and daemons])
135AC_ARG_ENABLE(zebra,
136[ --disable-zebra do not build zebra daemon])
137AC_ARG_ENABLE(bgpd,
138[ --disable-bgpd do not build bgpd])
139AC_ARG_ENABLE(ripd,
140[ --disable-ripd do not build ripd])
141AC_ARG_ENABLE(ripngd,
142[ --disable-ripngd do not build ripngd])
143AC_ARG_ENABLE(ospfd,
144[ --disable-ospfd do not build ospfd])
paul7ea487b2003-03-17 02:05:07 +0000145AC_ARG_ENABLE(ospf6d,
146[ --disable-ospf6d do not build ospf6d])
ajsd0199432004-12-22 14:03:52 +0000147AC_ARG_ENABLE(watchquagga,
148[ --disable-watchquagga do not build watchquagga])
jardin9e867fe2003-12-23 08:56:18 +0000149AC_ARG_ENABLE(isisd,
hassoae399ab2004-09-13 20:22:18 +0000150[ --enable-isisd build isisd])
paul7ea487b2003-03-17 02:05:07 +0000151AC_ARG_ENABLE(bgp-announce,
152[ --disable-bgp-announce, turn off BGP route announcement])
153AC_ARG_ENABLE(netlink,
154[ --enable-netlink force to use Linux netlink interface])
155AC_ARG_ENABLE(broken-aliases,
156[ --enable-broken-aliases enable aliases as distinct interfaces for Linux 2.2.X])
157AC_ARG_ENABLE(snmp,
158[ --enable-snmp enable SNMP support])
159AC_ARG_WITH(libpam,
160[ --with-libpam use libpam for PAM support in vtysh])
hasso71c0fb52003-05-25 20:18:13 +0000161AC_ARG_ENABLE(tcp-zebra,
paul7ea487b2003-03-17 02:05:07 +0000162[ --enable-tcp-zebra enable TCP/IP socket connection between zebra and protocol daemon])
paul7ea487b2003-03-17 02:05:07 +0000163AC_ARG_ENABLE(opaque-lsa,
paul1ef74ef2003-03-21 15:16:05 +0000164[ --enable-opaque-lsa enable OSPF Opaque-LSA with OSPFAPI support (RFC2370)])
165AC_ARG_ENABLE(ospfapi,
166[ --disable-ospfapi do not build OSPFAPI to access the OSPF LSA Database,
167 (this is the default if --enable-opaque-lsa is not set)])
168AC_ARG_ENABLE(ospfclient,
169[ --disable-ospfclient do not build OSPFAPI client for OSPFAPI,
170 (this is the default if --disable-ospfapi is set)])
paul7ea487b2003-03-17 02:05:07 +0000171AC_ARG_ENABLE(ospf-te,
172[ --enable-ospf-te enable Traffic Engineering Extension to OSPF])
173AC_ARG_ENABLE(multipath,
174[ --enable-multipath=ARG enable multipath function, ARG must be digit])
paule8f29842003-08-12 13:08:31 +0000175AC_ARG_ENABLE(quagga_user,
176[ --enable-user=ARG user to run Quagga suite as (default quagga)])
177AC_ARG_ENABLE(quagga_group,
178[ --enable-group=ARG group to run Quagga suite as (default quagga)])
pauledd7c242003-06-04 13:59:38 +0000179AC_ARG_ENABLE(vty_group,
paul6b6942f2004-10-22 04:55:05 +0000180[ --enable-vty-group=ARG set vty sockets to have specified group as owner])
gdtaa593d52003-12-22 20:15:53 +0000181AC_ARG_ENABLE(configfile_mask,
182[ --enable-configfile-mask=ARG set mask for config files])
183AC_ARG_ENABLE(logfile_mask,
184[ --enable-logfile-mask=ARG set mask for log files])
pauledd7c242003-06-04 13:59:38 +0000185
hasso71c0fb52003-05-25 20:18:13 +0000186AC_ARG_ENABLE(rtadv,
paul6b6942f2004-10-22 04:55:05 +0000187[ --disable-rtadv disable IPV6 router advertisement feature])
hassoca776982004-06-12 14:33:05 +0000188AC_ARG_ENABLE(irdp,
paul6b6942f2004-10-22 04:55:05 +0000189[ --enable-irdp enable IRDP server support in zebra])
hassof695b012005-04-02 19:03:39 +0000190AC_ARG_ENABLE(isis_topology,
191[ --enable-isis-topology enable IS-IS topology generator])
hasso41d3fc92004-04-06 11:59:00 +0000192AC_ARG_ENABLE(capabilities,
193[ --disable-capabilities disable using POSIX capabilities])
paul6b6942f2004-10-22 04:55:05 +0000194AC_ARG_ENABLE(gcc_ultra_verbose,
195[ --enable-gcc-ultra-verbose enable ultra verbose GCC warnings])
ajs3cade262004-12-29 17:50:22 +0000196AC_ARG_ENABLE(gcc-rdynamic,
197[ --enable-gcc-rdynamic enable gcc linking with -rdynamic for better backtraces])
ajs924b9222005-04-16 17:11:24 +0000198AC_ARG_ENABLE(time-check,
199[ --disable-time-check disable slow thread warning messages])
paul6b6942f2004-10-22 04:55:05 +0000200
201if test x"${enable_gcc_ultra_verbose}" = x"yes" ; then
202 CFLAGS="${CFLAGS} -W -Wcast-qual -Wstrict-prototypes"
203 CFLAGS="${CFLAGS} -Wmissing-declarations -Wmissing-noreturn"
204 CFLAGS="${CFLAGS} -Wmissing-format-attribute -Wunreachable-code"
205 CFLAGS="${CFLAGS} -Wpacked -Wpadded"
206fi
paul7ea487b2003-03-17 02:05:07 +0000207
ajs3cade262004-12-29 17:50:22 +0000208if test x"${enable_gcc_rdynamic}" = x"yes" ; then
209 LDFLAGS="${LDFLAGS} -rdynamic"
210fi
211
ajs924b9222005-04-16 17:11:24 +0000212if test x"${enable_time_check}" != x"no" ; then
213 if test x"${enable_time_check}" = x"yes" -o x"${enable_time_check}" = x ; then
214 AC_DEFINE(CONSUMED_TIME_CHECK,5000000,Consumed Time Check)
215 else
216 AC_DEFINE_UNQUOTED(CONSUMED_TIME_CHECK,$enable_time_check,Consumed Time Check)
217 fi
218fi
219
paul7ea487b2003-03-17 02:05:07 +0000220if test "${enable_broken_aliases}" = "yes"; then
221 if test "${enable_netlink}" = "yes"
222 then
223 echo "Sorry, you can't use netlink with broken aliases"
224 exit 1
225 fi
226 AC_DEFINE(HAVE_BROKEN_ALIASES,,Broken Alias)
227 enable_netlink=no
228fi
229
230if test "${enable_tcp_zebra}" = "yes"; then
231 AC_DEFINE(HAVE_TCP_ZEBRA,,Use TCP for zebra communication)
232fi
233
paul7ea487b2003-03-17 02:05:07 +0000234if test "${enable_opaque_lsa}" = "yes"; then
235 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
236fi
237
238if test "${enable_ospf_te}" = "yes"; then
239 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
240 AC_DEFINE(HAVE_OSPF_TE,,OSPF TE)
241fi
242
gdtd2a0ccc2003-12-03 18:13:48 +0000243AC_MSG_CHECKING(if zebra should be configurable to send Route Advertisements)
244if test "${enable_rtadv}" != "no"; then
hasso71c0fb52003-05-25 20:18:13 +0000245 AC_MSG_RESULT(yes)
gdtd2a0ccc2003-12-03 18:13:48 +0000246 AC_DEFINE(HAVE_RTADV,,Enable IPv6 Routing Advertisement support)
paul2487bea2003-05-25 23:51:31 +0000247else
248 AC_MSG_RESULT(no)
hasso71c0fb52003-05-25 20:18:13 +0000249fi
paul7ea487b2003-03-17 02:05:07 +0000250
hassoca776982004-06-12 14:33:05 +0000251if test "${enable_irdp}" = "yes"; then
252 AC_DEFINE(HAVE_IRDP,, IRDP )
253fi
254
hassof695b012005-04-02 19:03:39 +0000255if test "${enable_isisd}" = "yes" && test "${enable_isis_topology}" = yes; then
256 AC_DEFINE(TOPOLOGY_GENERATE,,Enable IS-IS topology generator code)
257 ISIS_TOPOLOGY_INCLUDES="-I./topology"
258 ISIS_TOPOLOGY_DIR="topology"
259 ISIS_TOPOLOGY_LIB="./topology/libtopology.a"
260fi
261
262AC_SUBST(ISIS_TOPOLOGY_INCLUDES)
263AC_SUBST(ISIS_TOPOLOGY_DIR)
264AC_SUBST(ISIS_TOPOLOGY_LIB)
265
paul79cb2162003-06-06 12:19:53 +0000266if test "${enable_user}" = "yes" || test x"${enable_user}" = x""; then
paule8f29842003-08-12 13:08:31 +0000267 enable_user="quagga"
pauledd7c242003-06-04 13:59:38 +0000268elif test "${enable_user}" = "no"; then
269 enable_user="root"
270fi
pauledd7c242003-06-04 13:59:38 +0000271
paul79cb2162003-06-06 12:19:53 +0000272if test "${enable_group}" = "yes" || test x"${enable_group}" = x""; then
paule8f29842003-08-12 13:08:31 +0000273 enable_group="quagga"
pauledd7c242003-06-04 13:59:38 +0000274elif test "${enable_group}" = "no"; then
275 enable_group="root"
276fi
pauledd7c242003-06-04 13:59:38 +0000277
278if test x"${enable_vty_group}" = x"yes" ; then
paul8d4aee52003-06-06 00:30:35 +0000279 AC_MSG_ERROR([--enable-vty-group requires a group as argument, not yes])
paul79cb2162003-06-06 12:19:53 +0000280elif test x"${enable_vty_group}" != x""; then
paul8d4aee52003-06-06 00:30:35 +0000281 if test x"${enable_vty_group}" != x"no"; then
pauledd7c242003-06-04 13:59:38 +0000282 AC_DEFINE_UNQUOTED(VTY_GROUP, "${enable_vty_group}", VTY Sockets Group)
283 fi
284fi
paul26275b02005-04-11 07:10:47 +0000285AC_SUBST([enable_user])
286AC_SUBST([enable_group])
287AC_SUBST([enable_vty_group])
288AC_DEFINE_UNQUOTED(QUAGGA_USER, "${enable_user}", Quagga User)
289AC_DEFINE_UNQUOTED(QUAGGA_GROUP, "${enable_group}", Quagga Group)
pauledd7c242003-06-04 13:59:38 +0000290
gdtaa593d52003-12-22 20:15:53 +0000291enable_configfile_mask=${enable_configfile_mask:-0600}
292AC_DEFINE_UNQUOTED(CONFIGFILE_MASK, ${enable_configfile_mask}, Mask for config files)
293
294enable_logfile_mask=${enable_logfile_mask:-0600}
295AC_DEFINE_UNQUOTED(LOGFILE_MASK, ${enable_logfile_mask}, Mask for log files)
296
paul7ea487b2003-03-17 02:05:07 +0000297changequote(, )dnl
298
299MULTIPATH_NUM=1
300
301case "${enable_multipath}" in
302 [0-9]|[1-9][0-9])
303 MULTIPATH_NUM="${enable_multipath}"
304 ;;
305 "")
306 ;;
307 *)
308 echo "Please specify digit to --enable-multipath ARG."
309 exit 1
310 ;;
311esac
312
313changequote([, ])dnl
314
315AC_SUBST(MULTIPATH_NUM)
316
317dnl -------------------
318dnl Check header files.
319dnl -------------------
pauldc7a2bf2003-10-22 00:07:44 +0000320AC_HEADER_STDC
321AC_CHECK_HEADERS([string.h stropts.h sys/conf.h sys/ksym.h sys/time.h \
322 sys/times.h sys/select.h sys/sysctl.h sys/sockio.h \
323 sys/types.h linux/version.h kvm.h netdb.h asm/types.h \
paul42c98192005-05-07 02:22:51 +0000324 sys/param.h libutil.h limits.h])
pauldc7a2bf2003-10-22 00:07:44 +0000325
paul835b7f12003-10-30 21:59:57 +0000326AC_CHECK_HEADERS([sys/socket.h netinet/in_systm.h netinet/in.h \
paulf3bd1a72003-11-02 07:29:11 +0000327 net/if_dl.h net/netopt.h inet/nd.h net/route.h \
paul835b7f12003-10-30 21:59:57 +0000328 net/if.h net/if_var.h netinet/in_var.h])
pauldc7a2bf2003-10-22 00:07:44 +0000329
gdtfa3232e2003-12-03 17:52:30 +0000330dnl V6 headers are checked below, after we check for v6
paul7ea487b2003-03-17 02:05:07 +0000331
332dnl check some types
333AC_C_CONST
334dnl AC_TYPE_PID_T
335AC_TYPE_SIGNAL
336
337dnl Some systems (Solaris 2.x) require libnsl (Network Services Library)
338case "$host" in
paulafd8a122005-03-12 06:36:10 +0000339 [*-sunos5.[6-7]*] | [*-solaris2.[6-7]*])
paul7ea487b2003-03-17 02:05:07 +0000340 opsys=sol2-6
paulafd8a122005-03-12 06:36:10 +0000341 AC_DEFINE(SUNOS_56, 1, SunOS 5.6 to 5.7)
paul19877dd2004-05-11 10:49:35 +0000342 AC_DEFINE(SUNOS_5, 1, SunOS 5)
paul7ea487b2003-03-17 02:05:07 +0000343 AC_CHECK_LIB(xnet, main)
344 CURSES=-lcurses
345 ;;
paul1b73de82005-04-10 16:31:51 +0000346 [*-sunos5.[8-9]] \
347 | [*-sunos5.1[0-9]] \
348 | [*-sunos5.1[0-9].[0-9]] \
349 | [*-solaris2.[8-9]] \
350 | [*-solaris2.1[0-9]] \
351 | [*-solaris2.1[0-9].[0-9]])
paulafd8a122005-03-12 06:36:10 +0000352 opsys=sol8
353 AC_DEFINE(SUNOS_59,,SunOS 5.8 up)
paul19877dd2004-05-11 10:49:35 +0000354 AC_DEFINE(SUNOS_5, 1, SunOS 5)
355 AC_CHECK_LIB(socket, main)
356 AC_CHECK_LIB(nsl, main)
paul1b73de82005-04-10 16:31:51 +0000357 AC_CHECK_LIB(umem, main)
paul19877dd2004-05-11 10:49:35 +0000358 CURSES=-lcurses
359 ;;
paul7ea487b2003-03-17 02:05:07 +0000360 *-sunos5* | *-solaris2*)
paul19877dd2004-05-11 10:49:35 +0000361 AC_DEFINE(SUNOS_5,,SunOS 5, Unknown SunOS)
paul7ea487b2003-03-17 02:05:07 +0000362 AC_CHECK_LIB(socket, main)
363 AC_CHECK_LIB(nsl, main)
364 CURSES=-lcurses
365 ;;
hassoc45eb832005-02-19 13:58:06 +0000366 *-linux*)
paul7ea487b2003-03-17 02:05:07 +0000367 opsys=gnu-linux
368 AC_DEFINE(GNU_LINUX,,GNU Linux)
369 ;;
370 *-nec-sysv4*)
371 AC_CHECK_LIB(nsl, gethostbyname)
372 AC_CHECK_LIB(socket, socket)
373 ;;
paul7ea487b2003-03-17 02:05:07 +0000374 *-openbsd*)
375 opsys=openbsd
376 AC_DEFINE(OPEN_BSD,,OpenBSD)
377 ;;
378 *-bsdi*)
379 opsys=bsdi
380 OTHER_METHOD="mtu_kvm.o"
381 AC_CHECK_LIB(kvm, main)
382 ;;
paul49e3b3c2003-10-23 20:39:50 +0000383 *-irix6.5)
pauldc7a2bf2003-10-22 00:07:44 +0000384 opsys=irix
385 AC_DEFINE(IRIX_65,,IRIX 6.5)
386 ;;
paul7ea487b2003-03-17 02:05:07 +0000387esac
388
389dnl ---------------------
390dnl Integrated VTY option
391dnl ---------------------
392case "${enable_vtysh}" in
393 "yes") VTYSH="vtysh";
394 AC_DEFINE(VTYSH,,VTY shell)
gdtfc9d0742004-06-30 14:25:12 +0000395 AC_PATH_PROG(PERL, perl)
396dnl Vtysh uses libreadline, which looks for termcap functions at
397dnl configure time. We follow readline's search order.
398dnl The required procedures are in libtermcap on NetBSD, in
399dnl [TODO] on Linux, and in [TODO] on Solaris.
hassoc0689392005-08-25 12:00:58 +0000400 AC_CHECK_LIB(termcap, tputs, LIBREADLINE="$LIBREADLINE -ltermcap",
401 AC_CHECK_LIB(tinfo, tputs, LIBREADLINE="$LIBREADLINE -ltinfo",
402 AC_CHECK_LIB(curses, tputs, LIBREADLINE="$LIBREADLINE -lcurses",
403 AC_CHECK_LIB(ncurses, tputs, LIBREADLINE="$LIBREADLINE -lncurses"))))
404 AC_CHECK_LIB(readline, main, LIBREADLINE="$LIBREADLINE -lreadline")
paul7ea487b2003-03-17 02:05:07 +0000405 if test $ac_cv_lib_readline_main = no; then
gdtfc9d0742004-06-30 14:25:12 +0000406 AC_MSG_ERROR([vtysh needs libreadline but was not found and usable on your system.])
paul7ea487b2003-03-17 02:05:07 +0000407 fi
408 AC_CHECK_HEADER(readline/history.h)
409 if test $ac_cv_header_readline_history_h = no;then
410 AC_MSG_ERROR([readline is too old to have readline/history.h, please update to the latest readline library.])
411 fi
hassoc0689392005-08-25 12:00:58 +0000412 AC_CHECK_LIB(readline, rl_completion_matches, LIBREADLINE="$LIBREADLINE")
paul3d3de8c2003-05-23 10:33:49 +0000413 if test $ac_cv_lib_readline_rl_completion_matches = no; then
414 AC_DEFINE(rl_completion_matches,completion_matches,Old readline)
415 fi
416 ;;
paul7ea487b2003-03-17 02:05:07 +0000417 "no" ) VTYSH="";;
418 * ) ;;
419esac
hassoc0689392005-08-25 12:00:58 +0000420AC_SUBST(LIBREADLINE)
paul7ea487b2003-03-17 02:05:07 +0000421
422dnl ----------
423dnl PAM module
424dnl ----------
425if test "$with_libpam" = "yes"; then
paul24cd4352003-05-06 12:16:27 +0000426 AC_CHECK_HEADER(security/pam_misc.h)
427 if test "$ac_cv_header_security_pam_misc_h" = yes; then
428 AC_DEFINE(HAVE_PAM_MISC_H,,Have pam_misc.h)
429 AC_DEFINE(PAM_CONV_FUNC,misc_conv,Have misc_conv)
430 pam_conv_func="misc_conv"
paul24cd4352003-05-06 12:16:27 +0000431 fi
paul24cd4352003-05-06 12:16:27 +0000432 AC_CHECK_HEADER(security/openpam.h)
433 if test "$ac_cv_header_security_openpam_h" = yes; then
434 AC_DEFINE(HAVE_OPENPAM_H,,Have openpam.h)
435 AC_DEFINE(PAM_CONV_FUNC,openpam_ttyconv,Have openpam_ttyconv)
436 pam_conv_func="openpam_ttyconv"
paul24cd4352003-05-06 12:16:27 +0000437 fi
438 if test -z "$ac_cv_header_security_pam_misc_h$ac_cv_header_security_openpam_h" ; then
439 AC_MSG_WARN([*** pam support will not be built ***])
440 with_libpam="no"
441 fi
442fi
443
444if test "$with_libpam" = "yes"; then
paul7ea487b2003-03-17 02:05:07 +0000445dnl took this test from proftpd's configure.in and suited to our needs
446dnl -------------------------------------------------------------------------
447dnl
448dnl This next check looks funky due to a linker problem with some versions
449dnl of the PAM library. Prior to 0.72 release, the Linux PAM shared library
450dnl omitted requiring libdl linking information. PAM-0.72 or better ships
451dnl with RedHat 6.2 and Debian 2.2 or better.
452AC_CHECK_LIB(pam, pam_start,
paul24cd4352003-05-06 12:16:27 +0000453 [AC_CHECK_LIB(pam, $pam_conv_func,
paul7ea487b2003-03-17 02:05:07 +0000454 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
455 LIBPAM="-lpam"],
456 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
457 LIBPAM="-lpam -lpam_misc"]
458 )
459 ],
460
461 [AC_CHECK_LIB(pam, pam_end,
paul24cd4352003-05-06 12:16:27 +0000462 [AC_CHECK_LIB(pam, $pam_conv_func,
paula159ed92003-06-04 11:01:45 +0000463 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000464 LIBPAM="-lpam -ldl"],
paula159ed92003-06-04 11:01:45 +0000465 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000466 LIBPAM="-lpam -ldl -lpam_misc"]
467 )
468 ],AC_MSG_WARN([*** pam support will not be built ***]),
469 [-ldl])
470 ]
471)
472fi
473AC_SUBST(LIBPAM)
474
475dnl -------------------------------
476dnl Endian-ness check
477dnl -------------------------------
478AC_WORDS_BIGENDIAN
479
480dnl -------------------------------
481dnl check the size in byte of the C
482dnl -------------------------------
483dnl AC_CHECK_SIZEOF(char)
484dnl AC_CHECK_SIZEOF(int)
485dnl AC_CHECK_SIZEOF(short)
486dnl AC_CHECK_SIZEOF(long)
487
488dnl ----------------------------
489dnl check existance of functions
490dnl ----------------------------
paul49e3b3c2003-10-23 20:39:50 +0000491AC_CHECK_FUNCS(memset memcpy strerror inet_aton daemon snprintf vsnprintf \
paul04bd4842003-10-24 04:24:39 +0000492 strlcat strlcpy if_nametoindex if_indextoname getifaddrs \
ajs3cb98de2005-04-02 16:01:05 +0000493 fcntl strnlen)
paula159ed92003-06-04 11:01:45 +0000494AC_CHECK_FUNCS(setproctitle, ,
495 [AC_CHECK_LIB(util, setproctitle,
496 [LIBS="$LIBS -lutil"
497 AC_DEFINE(HAVE_SETPROCTITLE,, Have setproctitle)
498 ]
499 )
500 ]
501)
paul7ea487b2003-03-17 02:05:07 +0000502
503dnl ------------------------------------
504dnl Determine routing get and set method
505dnl ------------------------------------
506AC_MSG_CHECKING(zebra between kernel interface method)
507if test x"$opsys" = x"gnu-linux"; then
508 if test "${enable_netlink}" = "yes";then
509 AC_MSG_RESULT(netlink)
510 RT_METHOD=rt_netlink.o
511 AC_DEFINE(HAVE_NETLINK,,netlink)
512 netlink=yes
513 elif test "${enable_netlink}" = "no"; then
514 AC_MSG_RESULT(ioctl)
515 RT_METHOD=rt_ioctl.o
516 netlink=no
517 else
518 AC_MSG_RESULT(netlink)
519 RT_METHOD=rt_netlink.o
520 AC_DEFINE(HAVE_NETLINK,,netlink)
521 netlink=yes
522 fi
paul19877dd2004-05-11 10:49:35 +0000523elif test x"$opsys" = x"sol2-6";then
524 AC_MSG_RESULT(Route socket)
525 KERNEL_METHOD="kernel_socket.o"
526 RT_METHOD="rt_socket.o"
paulafd8a122005-03-12 06:36:10 +0000527elif test x"$opsys" = x"sol8";then
paul19877dd2004-05-11 10:49:35 +0000528 AC_MSG_RESULT(Route socket)
529 KERNEL_METHOD="kernel_socket.o"
530 RT_METHOD="rt_socket.o"
531elif test "$opsys" = "irix" ; then
532 AC_MSG_RESULT(Route socket)
533 KERNEL_METHOD="kernel_socket.o"
534 RT_METHOD="rt_socket.o"
paul7ea487b2003-03-17 02:05:07 +0000535else
paul19877dd2004-05-11 10:49:35 +0000536 AC_TRY_RUN([#include <errno.h>
paul7ea487b2003-03-17 02:05:07 +0000537#include <sys/types.h>
538#include <sys/socket.h>
539
540main ()
541{
542 int ac_sock;
543
544 ac_sock = socket (AF_ROUTE, SOCK_RAW, 0);
545 if (ac_sock < 0 && errno == EINVAL)
546 exit (1);
547 exit (0);
548}],
549 [KERNEL_METHOD=kernel_socket.o
550 RT_METHOD=rt_socket.o
551 AC_MSG_RESULT(socket)],
552 [RT_METHOD=rt_ioctl.o
553 AC_MSG_RESULT(ioctl)],
554 [KERNEL_METHOD=kernel_socket.o
555 RT_METHOD=rt_socket.o
556 AC_MSG_RESULT(socket)])
paul7ea487b2003-03-17 02:05:07 +0000557fi
558AC_SUBST(RT_METHOD)
559AC_SUBST(KERNEL_METHOD)
560AC_SUBST(OTHER_METHOD)
561
ajsb99760a2005-01-04 16:24:43 +0000562dnl ------------------------------------
563dnl check for broken CMSG_FIRSTHDR macro
564dnl ------------------------------------
gdt6c200462005-01-04 17:02:48 +0000565AC_MSG_CHECKING(for broken CMSG_FIRSTHDR)
hasso5b087522005-04-03 23:46:37 +0000566AC_RUN_IFELSE([AC_LANG_SOURCE([[
ajsb99760a2005-01-04 16:24:43 +0000567#ifdef SUNOS_5
568#define _XPG4_2
569#define __EXTENSIONS__
570#endif
571#include <stdlib.h>
572#include <sys/types.h>
573#include <sys/socket.h>
574
575main()
576{
577 struct msghdr msg;
578 char buf[4];
579
580 msg.msg_control = buf;
581 msg.msg_controllen = 0;
582
583 if (CMSG_FIRSTHDR(&msg) != NULL)
584 exit(0);
585 exit (1);
hasso5b087522005-04-03 23:46:37 +0000586}]])],[AC_MSG_RESULT(yes - using workaround) AC_DEFINE(HAVE_BROKEN_CMSG_FIRSTHDR,,Broken CMSG_FIRSTHDR)],
hassod33e8d72005-04-03 13:07:21 +0000587[AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)])
ajsb99760a2005-01-04 16:24:43 +0000588
paul7ea487b2003-03-17 02:05:07 +0000589dnl ------------------------------
590dnl check kernel route read method
591dnl ------------------------------
592AC_CACHE_CHECK(route read method check, zebra_rtread,
593[if test "$netlink" = yes; then
594 RTREAD_METHOD="rtread_netlink.o"
595 zebra_rtread="netlink"
596else
597for zebra_rtread in /proc/net/route /dev/ip /dev/null;
598do
599 test x`ls $zebra_rtread 2>/dev/null` = x"$zebra_rtread" && break
600done
601case $zebra_rtread in
602 "/proc/net/route") RTREAD_METHOD="rtread_proc.o"
603 zebra_rtread="proc";;
paul9c30ab62003-07-08 08:36:17 +0000604 "/dev/ip")
605 case "$host" in
606 *-freebsd*) RTREAD_METHOD=rtread_sysctl.o
607 zebra_rtread="sysctl";;
608 *) RTREAD_METHOD="rtread_getmsg.o"
609 zebra_rtread="getmsg";;
610 esac;;
paul7ea487b2003-03-17 02:05:07 +0000611 *) RTREAD_METHOD="rtread_sysctl.o"
612 zebra_rtread="sysctl";;
613esac
614fi])
615AC_SUBST(RTREAD_METHOD)
616
617dnl -----------------------------
618dnl check interface lookup method
619dnl -----------------------------
paul19877dd2004-05-11 10:49:35 +0000620IOCTL_METHOD=ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000621AC_MSG_CHECKING(interface looking up method)
622if test "$netlink" = yes; then
623 AC_MSG_RESULT(netlink)
624 IF_METHOD=if_netlink.o
paul19877dd2004-05-11 10:49:35 +0000625elif test "$opsys" = "sol2-6";then
626 AC_MSG_RESULT(Solaris GIF)
627 IF_METHOD=if_ioctl.o
paulafd8a122005-03-12 06:36:10 +0000628elif test "$opsys" = "sol8";then
paul19877dd2004-05-11 10:49:35 +0000629 AC_MSG_RESULT(Solaris GLIF)
630 IF_METHOD=if_ioctl_solaris.o
631 IOCTL_METHOD=ioctl_solaris.o
632elif test "$opsys" = "irix" ; then
633 AC_MSG_RESULT(IRIX)
634 IF_METHOD=if_ioctl.o
635elif test "$opsys" = "openbsd";then
636 AC_MSG_RESULT(openbsd)
637 IF_METHOD=if_ioctl.o
638elif grep NET_RT_IFLIST /usr/include/sys/socket.h >/dev/null 2>&1; then
639 AC_MSG_RESULT(sysctl)
paul7ea487b2003-03-17 02:05:07 +0000640 IF_METHOD=if_sysctl.o
641 AC_DEFINE(HAVE_NET_RT_IFLIST,,NET_RT_IFLIST)
paul19877dd2004-05-11 10:49:35 +0000642else
paul7ea487b2003-03-17 02:05:07 +0000643 AC_MSG_RESULT(ioctl)
644 IF_METHOD=if_ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000645fi
646AC_SUBST(IF_METHOD)
paul19877dd2004-05-11 10:49:35 +0000647AC_SUBST(IOCTL_METHOD)
paul7ea487b2003-03-17 02:05:07 +0000648
paul42c98192005-05-07 02:22:51 +0000649dnl ---------------------------------------------------------------
650dnl figure out how to specify an interface in multicast sockets API
651dnl ---------------------------------------------------------------
652AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex],,,[#ifdef HAVE_SYS_TYPES_H
653#include <sys/types.h>
654#endif
655#ifdef HAVE_NETINET_IN_H
656#include <netinet/in.h>
657#endif])
658
659AC_MSG_CHECKING([for BSD struct ip_mreq hack])
660AC_TRY_COMPILE([#ifdef HAVE_SYS_PARAM_H
661#include <sys/param.h>
662#endif],[#if (defined(__FreeBSD__) && (__FreeBSD_version >= 500022 || (__FreeBSD_version < 500000 && __FreeBSD_version >= 440000))) || (defined(__NetBSD__) && defined(__NetBSD_Version__) && __NetBSD_Version__ >= 106010000)
663 return (0);
664#else
665 #error No support for BSD struct ip_mreq hack detected
666#endif],[AC_MSG_RESULT(yes)
667AC_DEFINE(HAVE_BSD_STRUCT_IP_MREQ_HACK,,[Can pass ifindex in struct ip_mreq])],
668AC_MSG_RESULT(no))
669
paul7ea487b2003-03-17 02:05:07 +0000670dnl -----------------------
671dnl check proc file system.
672dnl -----------------------
673if test -r /proc/net/dev; then
674 AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev)
675 IF_PROC=if_proc.o
676fi
677
678if test -r /proc/net/if_inet6; then
679 AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6)
680 IF_PROC=if_proc.o
681fi
682AC_SUBST(IF_PROC)
683
684dnl -----------------------------
685dnl check ipforward detect method
686dnl -----------------------------
687AC_CACHE_CHECK(ipforward method check, zebra_ipforward_path,
688[for zebra_ipforward_path in /proc/net/snmp /dev/ip /dev/null;
689do
690 test x`ls $zebra_ipforward_path 2>/dev/null` = x"$zebra_ipforward_path" && break
691done
692case $zebra_ipforward_path in
693 "/proc/net/snmp") IPFORWARD=ipforward_proc.o
694 zebra_ipforward_path="proc";;
695 "/dev/ip")
696 case "$host" in
697 *-nec-sysv4*) IPFORWARD=ipforward_ews.o
698 zebra_ipforward_path="ews";;
paul9c30ab62003-07-08 08:36:17 +0000699 *-freebsd*) IPFORWARD=ipforward_sysctl.o
700 zebra_ipforward_path="sysctl";;
paul7ea487b2003-03-17 02:05:07 +0000701 *) IPFORWARD=ipforward_solaris.o
702 zebra_ipforward_path="solaris";;
703 esac;;
704 *) IPFORWARD=ipforward_sysctl.o
705 zebra_ipforward_path="sysctl";;
706esac])
707AC_SUBST(IPFORWARD)
708
709AC_CHECK_FUNCS(getaddrinfo, [have_getaddrinfo=yes], [have_getaddrinfo=no])
710
711dnl ----------
712dnl IPv6 check
713dnl ----------
714AC_MSG_CHECKING(whether does this OS have IPv6 stack)
715if test "${enable_ipv6}" = "no"; then
716 AC_MSG_RESULT(disabled)
717else
718dnl ----------
719dnl INRIA IPv6
720dnl ----------
paula159ed92003-06-04 11:01:45 +0000721 if grep IPV6_INRIA_VERSION /usr/include/netinet/in.h >/dev/null 2>&1; then
722 zebra_cv_ipv6=yes
723 AC_DEFINE(HAVE_IPV6,1,INRIA IPv6)
724 AC_DEFINE(INRIA_IPV6,1,INRIA IPv6)
725 RIPNGD="ripngd"
726 OSPF6D="ospf6d"
727 LIB_IPV6=""
728 AC_MSG_RESULT(INRIA IPv6)
paul7ea487b2003-03-17 02:05:07 +0000729dnl ---------
730dnl KAME IPv6
731dnl ---------
paula159ed92003-06-04 11:01:45 +0000732 elif grep WIDE /usr/include/netinet6/in6.h >/dev/null 2>&1; then
733 zebra_cv_ipv6=yes
734 AC_DEFINE(HAVE_IPV6,1,KAME IPv6)
735 AC_DEFINE(KAME,1,KAME IPv6)
736 RIPNGD="ripngd"
737 OSPF6D="ospf6d"
738 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
paul7ea487b2003-03-17 02:05:07 +0000739 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +0000740 fi
741 AC_MSG_RESULT(KAME)
hasso71c0fb52003-05-25 20:18:13 +0000742dnl -------------------------
743dnl MUSICA IPv6
744dnl default host check
745dnl It is not used by Kheops
746dnl -------------------------
paula159ed92003-06-04 11:01:45 +0000747 elif grep MUSICA /usr/include6/netinet6/in6.h >/dev/null 2>&1; then
748 zebra_cv_ipv6=yes
749 AC_DEFINE(HAVE_IPV6,1,Musicia IPv6)
750 AC_DEFINE(MUSICA,1,Musica IPv6 stack)
751 AC_DEFINE(KAME,1,KAME IPv6 stack)
752 RIPNGD="ripngd"
753 OSPF6D="ospf6d"
754 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
hasso71c0fb52003-05-25 20:18:13 +0000755 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +0000756 fi
757 AC_MSG_RESULT(MUSICA)
paul7ea487b2003-03-17 02:05:07 +0000758dnl ---------
759dnl NRL check
760dnl ---------
paula159ed92003-06-04 11:01:45 +0000761 elif grep NRL /usr/include/netinet6/in6.h >/dev/null 2>&1; then
762 zebra_cv_ipv6=yes
763 AC_DEFINE(HAVE_IPV6,1,NRL IPv6)
764 AC_DEFINE(NRL,1,NRL)
765 RIPNGD="ripngd"
766 OSPF6D="ospf6d"
767 if test x"$opsys" = x"bsdi";then
paul7ea487b2003-03-17 02:05:07 +0000768 AC_DEFINE(BSDI_NRL,,BSDI)
769 AC_MSG_RESULT(BSDI_NRL)
paula159ed92003-06-04 11:01:45 +0000770 else
paul7ea487b2003-03-17 02:05:07 +0000771 AC_MSG_RESULT(NRL)
paula159ed92003-06-04 11:01:45 +0000772 fi
paul19877dd2004-05-11 10:49:35 +0000773dnl ------------------------------------
774dnl Solaris 9, 10 and potentially higher
775dnl ------------------------------------
paulafd8a122005-03-12 06:36:10 +0000776 elif test x"$opsys" = x"sol8"; then
paul19877dd2004-05-11 10:49:35 +0000777 zebra_cv_ipv6=yes;
778 AC_DEFINE(HAVE_IPV6, 1, IPv6)
779 AC_DEFINE(SOLARIS_IPV6, 1, Solaris IPv6)
780 RIPNGD="ripngd"
781 OSPF6D="ospf6d"
782 AC_MSG_RESULT(Solaris IPv6)
paul7ea487b2003-03-17 02:05:07 +0000783dnl ----------
784dnl Linux IPv6
785dnl ----------
paula159ed92003-06-04 11:01:45 +0000786 elif test "${enable_ipv6}" = "yes"; then
787 AC_EGREP_CPP(yes, [
788 #include <linux/version.h>
789 /* 2.1.128 or later */
790 #if LINUX_VERSION_CODE >= 0x020180
791 yes
792 #endif],
793 [zebra_cv_ipv6=yes
794 zebra_cv_linux_ipv6=yes
795 AC_MSG_RESULT(Linux IPv6)])
796 else
797 if test x`ls /proc/net/ipv6_route 2>/dev/null` = x"/proc/net/ipv6_route"
798 then
paul7ea487b2003-03-17 02:05:07 +0000799 zebra_cv_ipv6=yes
800 zebra_cv_linux_ipv6=yes
801 AC_MSG_RESULT(Linux IPv6)
paula159ed92003-06-04 11:01:45 +0000802 fi
803 fi
paul7ea487b2003-03-17 02:05:07 +0000804
paula159ed92003-06-04 11:01:45 +0000805 if test "$zebra_cv_linux_ipv6" = "yes";then
hasso850d39f2005-06-30 13:52:20 +0000806 AC_MSG_CHECKING(whether libc has IPv6 support)
807 AC_TRY_LINK([#include <netinet/in.h>
808 ],[ int a; a = (int) in6addr_any.s6_addr[0]; if (a != 12345) return a; ],
809 [AC_MSG_RESULT(yes)
810 zebra_cv_ipv6=yes
811 zebra_cv_linux_ipv6=yes],
812 [AC_MSG_RESULT(no)
813 zebra_cv_ipv6=no
814 zebra_cv_linux_ipv6=no])
815 fi
816
817 if test "$zebra_cv_linux_ipv6" = "yes";then
paula159ed92003-06-04 11:01:45 +0000818 AC_MSG_CHECKING(for GNU libc >= 2.1)
819 AC_DEFINE(HAVE_IPV6,1,Linux IPv6)
820 AC_EGREP_CPP(yes, [
paul7ea487b2003-03-17 02:05:07 +0000821#include <features.h>
822#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
823 yes
paula159ed92003-06-04 11:01:45 +0000824#endif],
825 [glibc=yes
826 AC_DEFINE(LINUX_IPV6,1,Linux IPv6 stack)
827 AC_MSG_RESULT(yes)],
828 AC_MSG_RESULT(no)
829 )
830 RIPNGD="ripngd"
831 OSPF6D="ospf6d"
832 if test "$glibc" != "yes"; then
paul7ea487b2003-03-17 02:05:07 +0000833 INCLUDES="-I/usr/inet6/include"
834 if test x`ls /usr/inet6/lib/libinet6.a 2>/dev/null` != x;then
835 LIB_IPV6="-L/usr/inet6/lib -linet6"
836 fi
paula159ed92003-06-04 11:01:45 +0000837 fi
838 fi
paul7ea487b2003-03-17 02:05:07 +0000839
840dnl -----------------------
841dnl Set IPv6 related values
842dnl -----------------------
paula159ed92003-06-04 11:01:45 +0000843 LIBS="$LIB_IPV6 $LIBS"
844 AC_SUBST(LIB_IPV6)
paul7ea487b2003-03-17 02:05:07 +0000845
paula159ed92003-06-04 11:01:45 +0000846 if test x"$RIPNGD" = x""; then
847 AC_MSG_RESULT(IPv4 only)
848 fi
paul7ea487b2003-03-17 02:05:07 +0000849fi
850
gdtfa3232e2003-12-03 17:52:30 +0000851dnl ------------------
852dnl IPv6 header checks
853dnl ------------------
854if test "x${zebra_cv_ipv6}" = "xyes"; then
855AC_CHECK_HEADERS([netinet6/in6.h netinet/in6_var.h netinet/icmp6.h \
856 netinet6/in6_var.h netinet6/nd6.h])
857fi
858
paul7ea487b2003-03-17 02:05:07 +0000859dnl --------------------
860dnl Daemon disable check
861dnl --------------------
862if test "${enable_zebra}" = "no";then
863 ZEBRA=""
864else
865 ZEBRA="zebra"
866fi
867
868if test "${enable_bgpd}" = "no";then
869 BGPD=""
870else
871 BGPD="bgpd"
872fi
873
874if test "${enable_ripd}" = "no";then
875 RIPD=""
876else
877 RIPD="ripd"
878fi
879
880if test "${enable_ospfd}" = "no";then
881 OSPFD=""
882else
883 OSPFD="ospfd"
884fi
885
ajsd0199432004-12-22 14:03:52 +0000886if test "${enable_watchquagga}" = "no";then
887 WATCHQUAGGA=""
888else
889 WATCHQUAGGA="watchquagga"
890fi
891
paul1ef74ef2003-03-21 15:16:05 +0000892OSPFCLIENT=""
893if test "${enable_opaque_lsa}" = "yes"; then
894 if test "${enable_ospfapi}" != "no";then
paul9a569842003-03-28 01:45:13 +0000895 AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI)
paul1ef74ef2003-03-21 15:16:05 +0000896
897 if test "${enable_ospfclient}" != "no";then
898 OSPFCLIENT="ospfclient"
899 fi
900 fi
901
paul7ea487b2003-03-17 02:05:07 +0000902fi
903
904case "${enable_ripngd}" in
905 "yes") RIPNGD="ripngd";;
906 "no" ) RIPNGD="";;
907 * ) ;;
908esac
909
910case "${enable_ospf6d}" in
911 "yes") OSPF6D="ospf6d";;
912 "no" ) OSPF6D="";;
913 * ) ;;
914esac
915
jardin9e867fe2003-12-23 08:56:18 +0000916case "${enable_isisd}" in
917 "yes") ISISD="isisd";;
918 "no" ) ISISD="";;
hassoae399ab2004-09-13 20:22:18 +0000919 * ) ;;
jardin9e867fe2003-12-23 08:56:18 +0000920esac
921
paul7ea487b2003-03-17 02:05:07 +0000922if test "${enable_bgp_announce}" = "no";then
923 AC_DEFINE(DISABLE_BGP_ANNOUNCE,,Disable BGP installation to zebra)
924fi
925
926AC_SUBST(ZEBRA)
927AC_SUBST(BGPD)
928AC_SUBST(RIPD)
929AC_SUBST(RIPNGD)
930AC_SUBST(OSPFD)
931AC_SUBST(OSPF6D)
ajsd0199432004-12-22 14:03:52 +0000932AC_SUBST(WATCHQUAGGA)
jardin9e867fe2003-12-23 08:56:18 +0000933AC_SUBST(ISISD)
paul7ea487b2003-03-17 02:05:07 +0000934AC_SUBST(VTYSH)
935AC_SUBST(INCLUDES)
936AC_SUBST(CURSES)
937AC_SUBST(OSPFCLIENT)
paul1ef74ef2003-03-21 15:16:05 +0000938AC_SUBST(OSPFAPI)
paul7ea487b2003-03-17 02:05:07 +0000939AC_CHECK_LIB(c, inet_ntop, [AC_DEFINE(HAVE_INET_NTOP,,inet_ntop)])
940AC_CHECK_LIB(c, inet_pton, [AC_DEFINE(HAVE_INET_PTON,,inet_pton)])
941AC_CHECK_LIB(crypt, crypt)
942AC_CHECK_LIB(resolv, res_init)
943AC_CHECK_LIB(m, main)
944
945dnl ---------------------------------------------------
946dnl BSD/OS 4.1 define inet_XtoY function as __inet_XtoY
947dnl ---------------------------------------------------
paula159ed92003-06-04 11:01:45 +0000948AC_CHECK_FUNC(__inet_ntop, AC_DEFINE(HAVE_INET_NTOP,,__inet_ntop))
949AC_CHECK_FUNC(__inet_pton, AC_DEFINE(HAVE_INET_PTON,,__inet_pton))
950AC_CHECK_FUNC(__inet_aton, AC_DEFINE(HAVE_INET_ATON,,__inet_aton))
paul7ea487b2003-03-17 02:05:07 +0000951
952dnl ---------------------------
953dnl check system has GNU regexp
954dnl ---------------------------
955dnl AC_MSG_CHECKING(whether system has GNU regex)
956AC_CHECK_LIB(c, regexec,
957[AC_DEFINE(HAVE_GNU_REGEX,,GNU regexp library)
958 LIB_REGEX=""],
959[LIB_REGEX="regex.o"])
960AC_SUBST(LIB_REGEX)
961
962dnl ------------------
963dnl check SNMP library
964dnl ------------------
965if test "${enable_snmp}" = "yes";then
966dnl AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
paul7ea487b2003-03-17 02:05:07 +0000967 if test "${HAVE_SNMP}" = ""; then
paul1ef74ef2003-03-21 15:16:05 +0000968 old_libs="${LIBS}"
969 LIBS="-L/usr/lib"
paul7ea487b2003-03-17 02:05:07 +0000970 unset ac_cv_lib_snmp_asn_parse_int
paul1ef74ef2003-03-21 15:16:05 +0000971 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
972 if test "${NEED_CRYPTO}" = ""; then
973 AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes ])
974 else
975 AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes; NEED_CRYPTO=yes;LIBS="$LIBS -lcrypto" ],,"-lcrypto")
976 fi
977 LIBS="${old_libs}"
paul7ea487b2003-03-17 02:05:07 +0000978 fi
paul1ef74ef2003-03-21 15:16:05 +0000979 if test "${HAVE_SNMP}" = ""; then
980 old_libs="${LIBS}"
981 LIBS="-L/usr/lib"
982 unset ac_cv_lib_snmp_asn_parse_int
983 AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes, )
984 if test "${HAVE_SNMP}" = ""; then
985 unset ac_cv_lib_snmp_asn_parse_int
986 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
987 if test "${NEED_CRYPTO}" = "yes"; then
988 AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
989 fi
990 fi
991 LIBS="${old_libs}"
992 fi
paul7ea487b2003-03-17 02:05:07 +0000993
994 if test "${HAVE_SNMP}" = ""; then
paul1ef74ef2003-03-21 15:16:05 +0000995 old_libs="${LIBS}"
996 LIBS="-L/usr/local/lib"
997 unset ac_cv_lib_snmp_asn_parse_int
998 AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
999 if test "${HAVE_SNMP}" = ""; then
1000 unset ac_cv_lib_snmp_asn_parse_int
1001 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
1002 if test "${NEED_CRYPTO}" = "yes"; then
1003 AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
1004 fi
1005 fi
1006 LIBS="${old_libs}"
paul7ea487b2003-03-17 02:05:07 +00001007 fi
paul1ef74ef2003-03-21 15:16:05 +00001008
paul7ea487b2003-03-17 02:05:07 +00001009 if test "${HAVE_SNMP}" = "yes"; then
1010 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
1011 do
1012 test -f "${ac_snmp}" && break
1013 done
paul1ef74ef2003-03-21 15:16:05 +00001014
paul7ea487b2003-03-17 02:05:07 +00001015 case ${ac_snmp} in
1016 /usr/include/net-snmp/*)
1017 AC_DEFINE(HAVE_SNMP,,SNMP)
paul1ef74ef2003-03-21 15:16:05 +00001018 AC_DEFINE(HAVE_NETSNMP,,SNMP)
paul7ea487b2003-03-17 02:05:07 +00001019 AC_DEFINE(UCD_COMPATIBLE,,SNMP)
hasso2d582282005-03-28 15:29:07 +00001020 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/net-snmp -I/usr/include/net-snmp/library"
paulac7c4bb2003-03-19 04:25:08 +00001021 if test "${HAVE_NETSNMP}" = "yes"; then
paul1ef74ef2003-03-21 15:16:05 +00001022 LIBS="${LIBS} -lnetsnmp"
paulac7c4bb2003-03-19 04:25:08 +00001023 else
paul1ef74ef2003-03-21 15:16:05 +00001024 LIBS="${LIBS} -lsnmp"
paulac7c4bb2003-03-19 04:25:08 +00001025 fi
paul7ea487b2003-03-17 02:05:07 +00001026 ;;
1027 /usr/include/ucd-snmp/*)
1028 AC_DEFINE(HAVE_SNMP,,SNMP)
hasso2d582282005-03-28 15:29:07 +00001029 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/ucd-snmp"
paul7ea487b2003-03-17 02:05:07 +00001030 LIBS="${LIBS} -lsnmp"
1031 ;;
1032 /usr/local/include/ucd-snmp/*)
1033 AC_DEFINE(HAVE_SNMP,,SNMP)
hasso2d582282005-03-28 15:29:07 +00001034 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/ucd-snmp"
paul7ea487b2003-03-17 02:05:07 +00001035 LIBS="${LIBS} -L/usr/local/lib -lsnmp"
1036 ;;
paulf3bd1a72003-11-02 07:29:11 +00001037 /usr/local/include/net-snmp/*)
1038 AC_DEFINE(HAVE_SNMP,,SNMP)
1039 AC_DEFINE(HAVE_NET_SNMP,,SNMP)
1040 AC_DEFINE(UCD_COMPATIBLE,,SNMP)
hasso2d582282005-03-28 15:29:07 +00001041 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/net-snmp"
paulf3bd1a72003-11-02 07:29:11 +00001042 LIBS="${LIBS} -L/usr/local/lib -lnetsnmp"
1043 ;;
paul7ea487b2003-03-17 02:05:07 +00001044 esac
1045 if test "${NEED_CRYPTO}" = "yes"; then
1046 LIBS="${LIBS} -lcrypto"
1047 fi
1048 fi
1049fi
1050
ajs6cf9df02005-01-12 16:52:55 +00001051if test "${enable_snmp}" = "yes" -a "${HAVE_SNMP}" != "yes"; then
1052 AC_MSG_ERROR([--enable-snmp given, but cannot find support for SNMP])
1053fi
1054
hasso2d582282005-03-28 15:29:07 +00001055AC_SUBST(SNMP_INCLUDES)
1056
paul7ea487b2003-03-17 02:05:07 +00001057dnl ----------------------------
1058dnl check sa_len of sockaddr
1059dnl ----------------------------
1060AC_MSG_CHECKING(whether struct sockaddr has a sa_len field)
1061AC_TRY_COMPILE([#include <sys/types.h>
1062#include <sys/socket.h>
1063],[static struct sockaddr ac_i;int ac_j = sizeof (ac_i.sa_len);],
1064[AC_MSG_RESULT(yes)
1065 AC_DEFINE(HAVE_SA_LEN,,sa_len)],
1066 AC_MSG_RESULT(no))
1067
1068dnl ----------------------------
1069dnl check sin_len of sockaddr_in
1070dnl ----------------------------
1071AC_MSG_CHECKING(whether struct sockaddr_in has a sin_len field)
1072AC_TRY_COMPILE([#include <sys/types.h>
1073#include <netinet/in.h>
1074],[static struct sockaddr_in ac_i;int ac_j = sizeof (ac_i.sin_len);],
1075[AC_MSG_RESULT(yes)
1076 AC_DEFINE(HAVE_SIN_LEN,,sin_len)],
1077 AC_MSG_RESULT(no))
1078
1079dnl ----------------------------
1080dnl check sun_len of sockaddr_un
1081dnl ----------------------------
1082AC_MSG_CHECKING(whether struct sockaddr_un has a sun_len field)
1083AC_TRY_COMPILE([#include <sys/types.h>
1084#include <sys/un.h>
1085],[static struct sockaddr_un ac_i;int ac_j = sizeof (ac_i.sun_len);],
1086[AC_MSG_RESULT(yes)
1087 AC_DEFINE(HAVE_SUN_LEN,,sun_len)],
1088 AC_MSG_RESULT(no))
1089
1090dnl -----------------------------------
1091dnl check sin6_scope_id of sockaddr_in6
1092dnl -----------------------------------
1093if test "$zebra_cv_ipv6" = yes; then
1094 AC_MSG_CHECKING(whether struct sockaddr_in6 has a sin6_scope_id field)
1095 AC_TRY_COMPILE([#include <sys/types.h>
1096#include <netinet/in.h>
1097],[static struct sockaddr_in6 ac_i;int ac_j = sizeof (ac_i.sin6_scope_id);],
1098[AC_MSG_RESULT(yes)
1099 AC_DEFINE(HAVE_SIN6_SCOPE_ID,,scope id)],
1100 AC_MSG_RESULT(no))
1101fi
1102
1103dnl ----------------------------
1104dnl check socklen_t exist or not
1105dnl ----------------------------
1106AC_MSG_CHECKING(whther socklen_t is defined)
1107AC_TRY_COMPILE([#include <sys/types.h>
1108#include <sys/socket.h>
1109#include <netinet/in.h>
1110],[socklen_t ac_x;],
1111[AC_MSG_RESULT(yes)
1112 AC_DEFINE(HAVE_SOCKLEN_T,,socklen_t)],
1113 AC_MSG_RESULT(no))
1114
1115dnl ------------------------
1116dnl check struct sockaddr_dl
1117dnl ------------------------
1118AC_MSG_CHECKING(whether struct sockaddr_dl exist)
1119AC_EGREP_HEADER(sockaddr_dl,
1120net/if_dl.h,
1121[AC_MSG_RESULT(yes)
1122 AC_DEFINE(HAVE_SOCKADDR_DL,,sockaddr_dl)],
1123 AC_MSG_RESULT(no))
1124
1125dnl --------------------------
1126dnl check structure ifaliasreq
1127dnl --------------------------
1128AC_MSG_CHECKING(whether struct ifaliasreq exist)
1129AC_EGREP_HEADER(ifaliasreq,
1130net/if.h,
1131[AC_MSG_RESULT(yes)
1132 AC_DEFINE(HAVE_IFALIASREQ,,ifaliasreq)],
1133 AC_MSG_RESULT(no))
1134
1135dnl ----------------------------
1136dnl check structure in6_aliasreq
1137dnl ----------------------------
hasso71c0fb52003-05-25 20:18:13 +00001138AC_MSG_CHECKING(whether struct in6_aliasreq exist)
paul7ea487b2003-03-17 02:05:07 +00001139AC_EGREP_HEADER(in6_aliasreq,
1140netinet6/in6_var.h,
1141[AC_MSG_RESULT(yes)
1142 AC_DEFINE(HAVE_IN6_ALIASREQ,,in6_aliasreq)],
1143 AC_MSG_RESULT(no))
1144
hasso71c0fb52003-05-25 20:18:13 +00001145dnl -----------------------------------
1146dnl check ifra_lifetime of in6_aliasreq
1147dnl -----------------------------------
1148AC_MSG_CHECKING(whether in6_aliasreq.ifra_lifetime exist)
1149AC_TRY_COMPILE([#include <sys/types.h>
1150#include <netinet6/in6_var.h>
1151],[static struct if6_aliasreq ac_i;int ac_j = sizeof (ac_i.ifra_lifetime);],
1152[AC_MSG_RESULT(yes)
paula159ed92003-06-04 11:01:45 +00001153 AC_DEFINE(HAVE_IFRA_LIFETIME,,Have in6_aliasreq.ifra_lifetime)],
hasso71c0fb52003-05-25 20:18:13 +00001154 AC_MSG_RESULT(no))
1155
paul7ea487b2003-03-17 02:05:07 +00001156dnl ---------------------------
1157dnl check structure rt_addrinfo
1158dnl ---------------------------
1159AC_MSG_CHECKING(whether struct rt_addrinfo exist)
1160AC_EGREP_HEADER(rt_addrinfo,
1161net/route.h,
1162[AC_MSG_RESULT(yes)
1163 AC_DEFINE(HAVE_RT_ADDRINFO,,rt_addrinfo)],
1164 AC_MSG_RESULT(no))
1165
1166dnl --------------------------
1167dnl check structure in_pktinfo
1168dnl --------------------------
1169AC_MSG_CHECKING(whether struct in_pktinfo exist)
1170AC_TRY_COMPILE([#include <netinet/in.h>
1171],[struct in_pktinfo ac_x;],
1172[AC_MSG_RESULT(yes)
1173 AC_DEFINE(HAVE_INPKTINFO,,in_pktinfo)],
1174 AC_MSG_RESULT(no))
1175
vincent29c4c9b2005-03-25 13:05:47 +00001176dnl ----------------------------------
1177dnl check struct nd_opt_homeagent_info
1178dnl ----------------------------------
1179AC_MSG_CHECKING(whether struct nd_opt_homeagent_info exist)
1180AC_EGREP_HEADER(nd_opt_homeagent_info,
1181netinet/icmp6.h,
1182[AC_MSG_RESULT(yes)
1183 AC_DEFINE(HAVE_ND_OPT_HOMEAGENT_INFO,,nd_opt_homeagent_info)],
1184 AC_MSG_RESULT(no))
1185
1186dnl --------------------------------
1187dnl check struct nd_opt_adv_interval
1188dnl --------------------------------
1189AC_MSG_CHECKING(whether struct nd_opt_adv_interval exist)
1190AC_EGREP_HEADER(nd_opt_adv_interval,
1191netinet/icmp6.h,
1192[AC_MSG_RESULT(yes)
1193 AC_DEFINE(HAVE_ND_OPT_ADV_INTERVAL,,nd_opt_adv_interval)],
1194 AC_MSG_RESULT(no))
1195
1196dnl ------------------------------------
1197dnl check fields in nd_opt_adv_interval
1198dnl ------------------------------------
1199AC_MSG_CHECKING(whether nd_opt_ai_type field exist)
1200AC_EGREP_HEADER(nd_opt_ai_type,
1201netinet/icmp6.h,
1202[AC_MSG_RESULT(yes)
1203 AC_DEFINE(HAVE_ND_OPT_ADV_INTERVAL_AI_FIELDS,,nd_opt_ai_type)],
1204 AC_MSG_RESULT(no))
1205
paul7ea487b2003-03-17 02:05:07 +00001206dnl --------------------------------------
1207dnl checking for getrusage struct and call
1208dnl --------------------------------------
1209AC_MSG_CHECKING(whether getrusage is available)
1210AC_TRY_COMPILE([#include <sys/resource.h>
1211],[struct rusage ac_x; getrusage (RUSAGE_SELF, &ac_x);],
1212[AC_MSG_RESULT(yes)
1213 AC_DEFINE(HAVE_RUSAGE,,rusage)],
1214 AC_MSG_RESULT(no))
1215
pauledd7c242003-06-04 13:59:38 +00001216dnl -------------------
1217dnl capabilities checks
1218dnl -------------------
hasso41d3fc92004-04-06 11:59:00 +00001219if test "${enable_capabilities}" != "no"; then
1220 AC_MSG_CHECKING(whether prctl PR_SET_KEEPCAPS is available)
1221 AC_TRY_COMPILE([#include <sys/prctl.h>],[prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);],
1222 [AC_MSG_RESULT(yes)
1223 AC_DEFINE(HAVE_PR_SET_KEEPCAPS,,prctl)
1224 quagga_ac_keepcaps="yes"],
1225 AC_MSG_RESULT(no)
pauledd7c242003-06-04 13:59:38 +00001226 )
hasso41d3fc92004-04-06 11:59:00 +00001227 if test x"${quagga_ac_keepcaps}" = x"yes"; then
1228 AC_CHECK_HEADERS(sys/capability.h)
1229 fi
1230 if test x"${ac_cv_header_sys_capability_h}" = x"yes"; then
1231 AC_CHECK_LIB(cap, cap_init,
1232 [AC_DEFINE(HAVE_LCAPS,1,Capabilities)
1233 LIBCAP="-lcap"
1234 ]
1235 )
1236 fi
pauledd7c242003-06-04 13:59:38 +00001237fi
1238AC_SUBST(LIBCAP)
1239
ajs40abf232005-01-12 17:27:27 +00001240dnl -------------------
1241dnl test for ucontext.h
1242dnl -------------------
1243AC_CHECK_HEADERS(ucontext.h)
1244
paulfb2d1502003-06-04 09:40:54 +00001245dnl ---------------------------
1246dnl check for glibc 'backtrace'
1247dnl ---------------------------
1248if test "${glibc}" = "yes"; then
1249 AC_CHECK_HEADER(execinfo.h)
1250fi
1251if test x"${ac_cv_header_execinfo_h}" = x"yes"; then
1252 AC_CHECK_FUNC(backtrace,
1253 [AC_DEFINE(HAVE_GLIBC_BACKTRACE,,Glibc backtrace)]
1254 )
1255fi
1256
paul408ad942003-05-20 00:03:33 +00001257dnl ----------
1258dnl configure date
1259dnl ----------
1260CONFDATE=`date '+%Y%m%d'`
1261AC_SUBST(CONFDATE)
1262
paul7ea487b2003-03-17 02:05:07 +00001263dnl ------------------------------
paula159ed92003-06-04 11:01:45 +00001264dnl set paths for state directory
paul23bd12c2003-04-07 06:11:09 +00001265dnl ------------------------------
1266if test "${prefix}" = "NONE"; then
paule8f29842003-08-12 13:08:31 +00001267 quagga_statedir_prefix="";
paul23bd12c2003-04-07 06:11:09 +00001268else
paule8f29842003-08-12 13:08:31 +00001269 quagga_statedir_prefix=${prefix}
paul23bd12c2003-04-07 06:11:09 +00001270fi
1271if test "${localstatedir}" = '${prefix}/var'; then
paula159ed92003-06-04 11:01:45 +00001272 AC_CACHE_CHECK(state directory,ac_statedir,
paule8f29842003-08-12 13:08:31 +00001273 [for QUAGGA_STATE_DIR in ${quagga_statedir_prefix}/var/run dnl
1274 ${quagga_statedir_prefix}/var/adm dnl
1275 ${quagga_statedir_prefix}/etc dnl
paula159ed92003-06-04 11:01:45 +00001276 /var/run dnl
1277 /var/adm dnl
1278 /etc dnl
1279 /dev/null;
paul23bd12c2003-04-07 06:11:09 +00001280 do
paule8f29842003-08-12 13:08:31 +00001281 test -d $QUAGGA_STATE_DIR && break
paul23bd12c2003-04-07 06:11:09 +00001282 done
paule8f29842003-08-12 13:08:31 +00001283 quagga_statedir=$QUAGGA_STATE_DIR])
paul23bd12c2003-04-07 06:11:09 +00001284else
paule8f29842003-08-12 13:08:31 +00001285 quagga_statedir=${localstatedir}
paula159ed92003-06-04 11:01:45 +00001286 AC_MSG_CHECKING(directory to use for state file)
paule8f29842003-08-12 13:08:31 +00001287 AC_MSG_RESULT(${quagga_statedir})
paul26275b02005-04-11 07:10:47 +00001288 AC_SUBST(quagga_statedir)
paul23bd12c2003-04-07 06:11:09 +00001289fi
paule8f29842003-08-12 13:08:31 +00001290if test $quagga_statedir = "/dev/null"; then
paula159ed92003-06-04 11:01:45 +00001291 AC_MSG_ERROR('STATE DIRECTORY NOT FOUND! FIX OR SPECIFY --localstatedir!')
1292fi
1293
paule8f29842003-08-12 13:08:31 +00001294AC_DEFINE_UNQUOTED(PATH_ZEBRA_PID, "$quagga_statedir/zebra.pid",zebra PID)
1295AC_DEFINE_UNQUOTED(PATH_RIPD_PID, "$quagga_statedir/ripd.pid",ripd PID)
1296AC_DEFINE_UNQUOTED(PATH_RIPNGD_PID, "$quagga_statedir/ripngd.pid",ripngd PID)
1297AC_DEFINE_UNQUOTED(PATH_BGPD_PID, "$quagga_statedir/bgpd.pid",bgpd PID)
1298AC_DEFINE_UNQUOTED(PATH_OSPFD_PID, "$quagga_statedir/ospfd.pid",ospfd PID)
1299AC_DEFINE_UNQUOTED(PATH_OSPF6D_PID, "$quagga_statedir/ospf6d.pid",ospf6d PID)
jardin9e867fe2003-12-23 08:56:18 +00001300AC_DEFINE_UNQUOTED(PATH_ISISD_PID, "$quagga_statedir/isisd.pid",isisd PID)
ajsd0199432004-12-22 14:03:52 +00001301AC_DEFINE_UNQUOTED(PATH_WATCHQUAGGA_PID, "$quagga_statedir/watchquagga.pid",watchquagga PID)
paule8f29842003-08-12 13:08:31 +00001302AC_DEFINE_UNQUOTED(ZEBRA_SERV_PATH, "$quagga_statedir/zserv.api",zebra api socket)
1303AC_DEFINE_UNQUOTED(ZEBRA_VTYSH_PATH, "$quagga_statedir/zebra.vty",zebra vty socket)
1304AC_DEFINE_UNQUOTED(RIP_VTYSH_PATH, "$quagga_statedir/ripd.vty",rip vty socket)
1305AC_DEFINE_UNQUOTED(RIPNG_VTYSH_PATH, "$quagga_statedir/ripngd.vty",ripng vty socket)
1306AC_DEFINE_UNQUOTED(BGP_VTYSH_PATH, "$quagga_statedir/bgpd.vty",bgpd vty socket)
1307AC_DEFINE_UNQUOTED(OSPF_VTYSH_PATH, "$quagga_statedir/ospfd.vty",ospfd vty socket)
1308AC_DEFINE_UNQUOTED(OSPF6_VTYSH_PATH, "$quagga_statedir/ospf6d.vty",ospf6d vty socket)
jardin9e867fe2003-12-23 08:56:18 +00001309AC_DEFINE_UNQUOTED(ISIS_VTYSH_PATH, "$quagga_statedir/isisd.vty",isisd vty socket)
ajs515210b2004-12-22 15:35:12 +00001310AC_DEFINE_UNQUOTED(DAEMON_VTY_DIR, "$quagga_statedir",daemon vty directory)
paul7ea487b2003-03-17 02:05:07 +00001311
paul1eb8ef22005-04-07 07:30:20 +00001312dnl -------------------------------
1313dnl Quagga sources should always be
1314dnl current wrt interfaces. Dont
1315dnl allow deprecated interfaces to
1316dnl be exposed.
1317dnl -------------------------------
1318AC_DEFINE(QUAGGA_NO_DEPRECATED_INTERFACES, 1, Hide deprecated interfaces)
1319
paul7ea487b2003-03-17 02:05:07 +00001320dnl ---------------------------
1321dnl Check htonl works correctly
1322dnl ---------------------------
1323AC_MSG_CHECKING(for working htonl)
1324AC_CACHE_VAL(ac_cv_htonl_works, [
1325AC_TRY_LINK([#ifdef HAVE_SYS_TYPES_H
1326#include <sys/types.h>
1327#endif
1328#ifdef HAVE_NETDB_H
1329#include <netdb.h>
1330#endif
1331#ifdef HAVE_NETINET_IN_H
1332#include <netinet/in.h>
1333#endif],
1334[htonl (0);],
1335ac_cv_htonl_works=yes,
1336ac_cv_htonl_works=no)])
1337AC_MSG_RESULT($ac_cv_htonl_works)
1338
paul14c17fd2004-11-07 22:34:23 +00001339AC_CONFIG_FILES([Makefile lib/Makefile zebra/Makefile ripd/Makefile
ajsd0199432004-12-22 14:03:52 +00001340 ripngd/Makefile bgpd/Makefile ospfd/Makefile watchquagga/Makefile
jardin9e867fe2003-12-23 08:56:18 +00001341 ospf6d/Makefile isisd/Makefile vtysh/Makefile doc/Makefile
paul14c17fd2004-11-07 22:34:23 +00001342 ospfclient/Makefile tests/Makefile m4/Makefile redhat/Makefile
gdt69f1fc22004-08-27 15:57:35 +00001343 pkgsrc/Makefile
paul670bbf12004-11-12 09:05:00 +00001344 redhat/quagga.spec
gdtb7a97f82004-07-23 16:23:56 +00001345 lib/version.h
paul14c17fd2004-11-07 22:34:23 +00001346 doc/defines.texi
hassof695b012005-04-02 19:03:39 +00001347 isisd/topology/Makefile
gdtcbd04082004-08-31 18:16:36 +00001348 pkgsrc/bgpd.sh pkgsrc/ospf6d.sh pkgsrc/ospfd.sh
paulf31293a2004-11-12 09:27:04 +00001349 pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh])
paul26275b02005-04-11 07:10:47 +00001350AC_CONFIG_FILES([solaris/Makefile])
1351
paul670bbf12004-11-12 09:05:00 +00001352AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl])
hasso48577192004-11-19 06:41:49 +00001353## Hack, but working solution to avoid rebuilding of quagga.info.
1354## It's already in CVS until texinfo 4.7 is more common.
paul14c1f182005-05-13 20:11:53 +00001355AC_CONFIG_COMMANDS([info-time],[touch doc/quagga.info])
paul14c17fd2004-11-07 22:34:23 +00001356AC_OUTPUT
paul7ea487b2003-03-17 02:05:07 +00001357
1358echo "
hassoc89f6492004-08-26 12:21:28 +00001359Quagga configuration
1360--------------------
1361quagga version : ${PACKAGE_VERSION}
paul7ea487b2003-03-17 02:05:07 +00001362host operationg system : ${host_os}
1363source code location : ${srcdir}
1364compiler : ${CC}
1365compiler flags : ${CFLAGS}
hasso2d582282005-03-28 15:29:07 +00001366includes : ${INCLUDES} ${SNMP_INCLUDES}
hassoc0689392005-08-25 12:00:58 +00001367linker flags : ${LDFLAGS} ${LIBS} ${LIBCAP} ${LIBREADLINE}
paule8f29842003-08-12 13:08:31 +00001368state file directory : ${quagga_statedir}
pauldc7a2bf2003-10-22 00:07:44 +00001369config file directory : `eval echo \`echo ${sysconfdir}\``
gdtd6b72f72003-12-03 17:24:27 +00001370example directory : `eval echo \`echo ${exampledir}\``
paul8d4aee52003-06-06 00:30:35 +00001371user to run as : ${enable_user}
1372group to run as : ${enable_group}
1373group for vty sockets : ${enable_vty_group}
gdtaa593d52003-12-22 20:15:53 +00001374config file mask : ${enable_configfile_mask}
1375log file mask : ${enable_logfile_mask}
pauldc7a2bf2003-10-22 00:07:44 +00001376
1377The above user and group must have read/write access to the state file
1378directory and to the config files in the config file directory.
paul7ea487b2003-03-17 02:05:07 +00001379"