blob: ccb02a084459d0b7173cbf64e0daf12b2938ee73 [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##
ajs3cb98de2005-04-02 16:01:05 +00008## $Id: configure.ac,v 1.95 2005/04/02 16:01:05 ajs Exp $
paule8f29842003-08-12 13:08:31 +00009AC_PREREQ(2.53)
paul7ea487b2003-03-17 02:05:07 +000010
paulf83d18d2005-01-24 10:24:31 +000011AC_INIT(Quagga, 0.99.0, [http://bugzilla.quagga.net])
paulfa1253d2003-09-24 05:09:26 +000012AC_CONFIG_SRCDIR(lib/zebra.h)
gdt81b81822004-04-07 22:48:47 +000013AM_INIT_AUTOMAKE(1.6)
paul7ea487b2003-03-17 02:05:07 +000014AM_CONFIG_HEADER(config.h)
15
gdtd6b72f72003-12-03 17:24:27 +000016dnl default is to match previous behavior
gdtc4f0efe2003-12-04 15:39:25 +000017exampledir=${sysconfdir}
gdtd6b72f72003-12-03 17:24:27 +000018AC_ARG_ENABLE([exampledir],
19 AC_HELP_STRING([--enable-exampledir],
20 [specify alternate directory for examples]),
21 exampledir="$enableval",)
gdtc4f0efe2003-12-04 15:39:25 +000022dnl XXX add --exampledir to autoconf standard directory list somehow
gdtd6b72f72003-12-03 17:24:27 +000023AC_SUBST(exampledir)
24
gdtcbd04082004-08-31 18:16:36 +000025dnl default is to match previous behavior
26pkgsrcrcdir=""
27pkgsrcdir=""
28AC_ARG_ENABLE([pkgsrcrcdir],
29 AC_HELP_STRING([--enable-pkgsrcrcdir],
30 [specify directory for rc.d scripts]),
31 pkgsrcrcdir="$enableval"; pkgsrcdir="pkgsrc",)
32dnl XXX add --pkgsrcrcdir to autoconf standard directory list somehow
33AC_SUBST(pkgsrcdir)
34AC_SUBST(pkgsrcrcdir)
35
paul7ea487b2003-03-17 02:05:07 +000036dnl -----------------------------------
37dnl Get hostname and other information.
38dnl -----------------------------------
39AC_CANONICAL_HOST
40
41dnl ------------
42dnl Check CFLAGS
43dnl ------------
44AC_ARG_WITH(cflags,
45[ --with-cflags Set CFLAGS for use in compilation.])
46if test "x$with_cflags" != "x" ; then
47 CFLAGS="$with_cflags" ; cflags_specified=yes ;
48elif test -n "$CFLAGS" ; then
49 cflags_specified=yes ;
50fi
51
hasso1969e4b2005-03-27 13:07:23 +000052dnl --------------------
53dnl Check CC and friends
54dnl --------------------
paul7ea487b2003-03-17 02:05:07 +000055AC_PROG_CC
hasso1969e4b2005-03-27 13:07:23 +000056AC_PROG_CPP
57AC_PROG_EGREP
58
59dnl ------------------------------------------------------------------
60dnl Intel compiler check. Although Intel tries really hard to make icc
61dnl look like gcc, there are some differences. It's very verbose with
62dnl -Wall and it doesn't support the individual -W options.
63dnl ------------------------------------------------------------------
64AC_MSG_CHECKING([whether we are using the Intel compiler])
65AC_EGREP_CPP([^__INTEL_COMPILER], [__INTEL_COMPILER],
66 ICC="no"
67 AC_MSG_RESULT([no]),
68 ICC="yes"
69 AC_MSG_RESULT([yes])
70)
paul7ea487b2003-03-17 02:05:07 +000071
paula49c0ff2004-09-30 06:08:58 +000072dnl ---------------------------------------------
paul7ea487b2003-03-17 02:05:07 +000073dnl If CLFAGS doesn\'t exist set default value
paula49c0ff2004-09-30 06:08:58 +000074dnl AC_PROG_CC will have set minimal default
75dnl already, eg "-O2 -g" for gcc, "-g" for others
paul27eebb32004-07-22 18:16:59 +000076dnl (Wall is gcc specific... have to make sure
77dnl gcc is being used before setting it)
hasso1969e4b2005-03-27 13:07:23 +000078dnl Intel icc 8.0 also sets __GNUC__, but
79dnl doesn't support all these fancy -W options.
paula49c0ff2004-09-30 06:08:58 +000080dnl ---------------------------------------------
paul27eebb32004-07-22 18:16:59 +000081dnl
paul7ea487b2003-03-17 02:05:07 +000082if test "x$cflags_specified" = "x" ; then
hasso1969e4b2005-03-27 13:07:23 +000083 if test "x${GCC}" = "xyes" && test "x${ICC}" = "xno"; then
gdt7fd63b32004-10-07 13:53:29 +000084 CFLAGS="-Os -g -Wall -Wsign-compare -Wpointer-arith"
hasso7347a2a2004-10-05 14:15:17 +000085 CFLAGS="${CFLAGS} -Wbad-function-cast -Wwrite-strings"
paula49c0ff2004-09-30 06:08:58 +000086 fi
gdt7fd63b32004-10-07 13:53:29 +000087 # TODO: conditionally addd -Wpacked if handled
paul7ea487b2003-03-17 02:05:07 +000088fi
89
hasso1969e4b2005-03-27 13:07:23 +000090dnl ---------------------------------------------------------------------
91dnl Intel compiler warnings we ignore:
92dnl 279: controlling expression is constant.
93dnl 869: parameter "xxx" was never referenced - to avoid massive warnings
94dnl about "self", "vty", "argc" and "argv" never referenced in DEFUN
95dnl macro.
96dnl 981: operands are evaluated in unspecified order.
97dnl ---------------------------------------------------------------------
98
99if test "$ICC" = "yes"; then
100 CFLAGS="-Os -g -Wall -wd 279,869,981"
101fi
102
paul7ea487b2003-03-17 02:05:07 +0000103dnl --------------
104dnl Check programs
105dnl --------------
paul7ea487b2003-03-17 02:05:07 +0000106AC_PROG_INSTALL
107AC_PROG_MAKE_SET
108AC_CHECK_TOOL(AR, ar)
109AC_CHECK_TOOL(RANLIB, ranlib, :)
110
111dnl ---------
112dnl AIX check
113dnl ---------
114AC_AIX
115
gdt87efd642004-06-30 17:36:11 +0000116dnl -------
117dnl libtool
118dnl -------
paul0fc42942004-08-19 04:41:21 +0000119AC_PROG_LIBTOOL
gdt87efd642004-06-30 17:36:11 +0000120
paul7ea487b2003-03-17 02:05:07 +0000121dnl ----------------------
122dnl Packages configuration
123dnl ----------------------
124AC_ARG_ENABLE(vtysh,
gdtfc9d0742004-06-30 14:25:12 +0000125[ --enable-vtysh include integrated vty shell for Quagga])
paul7ea487b2003-03-17 02:05:07 +0000126AC_ARG_ENABLE(ipv6,
127[ --disable-ipv6 turn off IPv6 related features and daemons])
128AC_ARG_ENABLE(zebra,
129[ --disable-zebra do not build zebra daemon])
130AC_ARG_ENABLE(bgpd,
131[ --disable-bgpd do not build bgpd])
132AC_ARG_ENABLE(ripd,
133[ --disable-ripd do not build ripd])
134AC_ARG_ENABLE(ripngd,
135[ --disable-ripngd do not build ripngd])
136AC_ARG_ENABLE(ospfd,
137[ --disable-ospfd do not build ospfd])
paul7ea487b2003-03-17 02:05:07 +0000138AC_ARG_ENABLE(ospf6d,
139[ --disable-ospf6d do not build ospf6d])
ajsd0199432004-12-22 14:03:52 +0000140AC_ARG_ENABLE(watchquagga,
141[ --disable-watchquagga do not build watchquagga])
jardin9e867fe2003-12-23 08:56:18 +0000142AC_ARG_ENABLE(isisd,
hassoae399ab2004-09-13 20:22:18 +0000143[ --enable-isisd build isisd])
paul7ea487b2003-03-17 02:05:07 +0000144AC_ARG_ENABLE(bgp-announce,
145[ --disable-bgp-announce, turn off BGP route announcement])
146AC_ARG_ENABLE(netlink,
147[ --enable-netlink force to use Linux netlink interface])
148AC_ARG_ENABLE(broken-aliases,
149[ --enable-broken-aliases enable aliases as distinct interfaces for Linux 2.2.X])
150AC_ARG_ENABLE(snmp,
151[ --enable-snmp enable SNMP support])
152AC_ARG_WITH(libpam,
153[ --with-libpam use libpam for PAM support in vtysh])
hasso71c0fb52003-05-25 20:18:13 +0000154AC_ARG_ENABLE(tcp-zebra,
paul7ea487b2003-03-17 02:05:07 +0000155[ --enable-tcp-zebra enable TCP/IP socket connection between zebra and protocol daemon])
paul7ea487b2003-03-17 02:05:07 +0000156AC_ARG_ENABLE(opaque-lsa,
paul1ef74ef2003-03-21 15:16:05 +0000157[ --enable-opaque-lsa enable OSPF Opaque-LSA with OSPFAPI support (RFC2370)])
158AC_ARG_ENABLE(ospfapi,
159[ --disable-ospfapi do not build OSPFAPI to access the OSPF LSA Database,
160 (this is the default if --enable-opaque-lsa is not set)])
161AC_ARG_ENABLE(ospfclient,
162[ --disable-ospfclient do not build OSPFAPI client for OSPFAPI,
163 (this is the default if --disable-ospfapi is set)])
paul7ea487b2003-03-17 02:05:07 +0000164AC_ARG_ENABLE(ospf-te,
165[ --enable-ospf-te enable Traffic Engineering Extension to OSPF])
166AC_ARG_ENABLE(multipath,
167[ --enable-multipath=ARG enable multipath function, ARG must be digit])
paule8f29842003-08-12 13:08:31 +0000168AC_ARG_ENABLE(quagga_user,
169[ --enable-user=ARG user to run Quagga suite as (default quagga)])
170AC_ARG_ENABLE(quagga_group,
171[ --enable-group=ARG group to run Quagga suite as (default quagga)])
pauledd7c242003-06-04 13:59:38 +0000172AC_ARG_ENABLE(vty_group,
paul6b6942f2004-10-22 04:55:05 +0000173[ --enable-vty-group=ARG set vty sockets to have specified group as owner])
gdtaa593d52003-12-22 20:15:53 +0000174AC_ARG_ENABLE(configfile_mask,
175[ --enable-configfile-mask=ARG set mask for config files])
176AC_ARG_ENABLE(logfile_mask,
177[ --enable-logfile-mask=ARG set mask for log files])
pauledd7c242003-06-04 13:59:38 +0000178
hasso71c0fb52003-05-25 20:18:13 +0000179AC_ARG_ENABLE(rtadv,
paul6b6942f2004-10-22 04:55:05 +0000180[ --disable-rtadv disable IPV6 router advertisement feature])
hassoca776982004-06-12 14:33:05 +0000181AC_ARG_ENABLE(irdp,
paul6b6942f2004-10-22 04:55:05 +0000182[ --enable-irdp enable IRDP server support in zebra])
hasso41d3fc92004-04-06 11:59:00 +0000183AC_ARG_ENABLE(capabilities,
184[ --disable-capabilities disable using POSIX capabilities])
paul6b6942f2004-10-22 04:55:05 +0000185AC_ARG_ENABLE(gcc_ultra_verbose,
186[ --enable-gcc-ultra-verbose enable ultra verbose GCC warnings])
ajs3cade262004-12-29 17:50:22 +0000187AC_ARG_ENABLE(gcc-rdynamic,
188[ --enable-gcc-rdynamic enable gcc linking with -rdynamic for better backtraces])
paul6b6942f2004-10-22 04:55:05 +0000189
190if test x"${enable_gcc_ultra_verbose}" = x"yes" ; then
191 CFLAGS="${CFLAGS} -W -Wcast-qual -Wstrict-prototypes"
192 CFLAGS="${CFLAGS} -Wmissing-declarations -Wmissing-noreturn"
193 CFLAGS="${CFLAGS} -Wmissing-format-attribute -Wunreachable-code"
194 CFLAGS="${CFLAGS} -Wpacked -Wpadded"
195fi
paul7ea487b2003-03-17 02:05:07 +0000196
ajs3cade262004-12-29 17:50:22 +0000197if test x"${enable_gcc_rdynamic}" = x"yes" ; then
198 LDFLAGS="${LDFLAGS} -rdynamic"
199fi
200
paul7ea487b2003-03-17 02:05:07 +0000201if test "${enable_broken_aliases}" = "yes"; then
202 if test "${enable_netlink}" = "yes"
203 then
204 echo "Sorry, you can't use netlink with broken aliases"
205 exit 1
206 fi
207 AC_DEFINE(HAVE_BROKEN_ALIASES,,Broken Alias)
208 enable_netlink=no
209fi
210
211if test "${enable_tcp_zebra}" = "yes"; then
212 AC_DEFINE(HAVE_TCP_ZEBRA,,Use TCP for zebra communication)
213fi
214
paul7ea487b2003-03-17 02:05:07 +0000215if test "${enable_opaque_lsa}" = "yes"; then
216 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
217fi
218
219if test "${enable_ospf_te}" = "yes"; then
220 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
221 AC_DEFINE(HAVE_OSPF_TE,,OSPF TE)
222fi
223
gdtd2a0ccc2003-12-03 18:13:48 +0000224AC_MSG_CHECKING(if zebra should be configurable to send Route Advertisements)
225if test "${enable_rtadv}" != "no"; then
hasso71c0fb52003-05-25 20:18:13 +0000226 AC_MSG_RESULT(yes)
gdtd2a0ccc2003-12-03 18:13:48 +0000227 AC_DEFINE(HAVE_RTADV,,Enable IPv6 Routing Advertisement support)
paul2487bea2003-05-25 23:51:31 +0000228else
229 AC_MSG_RESULT(no)
hasso71c0fb52003-05-25 20:18:13 +0000230fi
paul7ea487b2003-03-17 02:05:07 +0000231
hassoca776982004-06-12 14:33:05 +0000232if test "${enable_irdp}" = "yes"; then
233 AC_DEFINE(HAVE_IRDP,, IRDP )
234fi
235
paul79cb2162003-06-06 12:19:53 +0000236if test "${enable_user}" = "yes" || test x"${enable_user}" = x""; then
paule8f29842003-08-12 13:08:31 +0000237 enable_user="quagga"
pauledd7c242003-06-04 13:59:38 +0000238elif test "${enable_user}" = "no"; then
239 enable_user="root"
240fi
paule8f29842003-08-12 13:08:31 +0000241AC_DEFINE_UNQUOTED(QUAGGA_USER, "${enable_user}", Quagga User)
pauledd7c242003-06-04 13:59:38 +0000242
paul79cb2162003-06-06 12:19:53 +0000243if test "${enable_group}" = "yes" || test x"${enable_group}" = x""; then
paule8f29842003-08-12 13:08:31 +0000244 enable_group="quagga"
pauledd7c242003-06-04 13:59:38 +0000245elif test "${enable_group}" = "no"; then
246 enable_group="root"
247fi
paule8f29842003-08-12 13:08:31 +0000248AC_DEFINE_UNQUOTED(QUAGGA_GROUP, "${enable_group}", Quagga Group)
pauledd7c242003-06-04 13:59:38 +0000249
250if test x"${enable_vty_group}" = x"yes" ; then
paul8d4aee52003-06-06 00:30:35 +0000251 AC_MSG_ERROR([--enable-vty-group requires a group as argument, not yes])
paul79cb2162003-06-06 12:19:53 +0000252elif test x"${enable_vty_group}" != x""; then
paul8d4aee52003-06-06 00:30:35 +0000253 if test x"${enable_vty_group}" != x"no"; then
pauledd7c242003-06-04 13:59:38 +0000254 AC_DEFINE_UNQUOTED(VTY_GROUP, "${enable_vty_group}", VTY Sockets Group)
255 fi
256fi
257
gdtaa593d52003-12-22 20:15:53 +0000258enable_configfile_mask=${enable_configfile_mask:-0600}
259AC_DEFINE_UNQUOTED(CONFIGFILE_MASK, ${enable_configfile_mask}, Mask for config files)
260
261enable_logfile_mask=${enable_logfile_mask:-0600}
262AC_DEFINE_UNQUOTED(LOGFILE_MASK, ${enable_logfile_mask}, Mask for log files)
263
paul7ea487b2003-03-17 02:05:07 +0000264changequote(, )dnl
265
266MULTIPATH_NUM=1
267
268case "${enable_multipath}" in
269 [0-9]|[1-9][0-9])
270 MULTIPATH_NUM="${enable_multipath}"
271 ;;
272 "")
273 ;;
274 *)
275 echo "Please specify digit to --enable-multipath ARG."
276 exit 1
277 ;;
278esac
279
280changequote([, ])dnl
281
282AC_SUBST(MULTIPATH_NUM)
283
284dnl -------------------
285dnl Check header files.
286dnl -------------------
pauldc7a2bf2003-10-22 00:07:44 +0000287AC_HEADER_STDC
288AC_CHECK_HEADERS([string.h stropts.h sys/conf.h sys/ksym.h sys/time.h \
289 sys/times.h sys/select.h sys/sysctl.h sys/sockio.h \
290 sys/types.h linux/version.h kvm.h netdb.h asm/types.h \
291 libutil.h limits.h])
292
paul835b7f12003-10-30 21:59:57 +0000293AC_CHECK_HEADERS([sys/socket.h netinet/in_systm.h netinet/in.h \
paulf3bd1a72003-11-02 07:29:11 +0000294 net/if_dl.h net/netopt.h inet/nd.h net/route.h \
paul835b7f12003-10-30 21:59:57 +0000295 net/if.h net/if_var.h netinet/in_var.h])
pauldc7a2bf2003-10-22 00:07:44 +0000296
gdtfa3232e2003-12-03 17:52:30 +0000297dnl V6 headers are checked below, after we check for v6
paul7ea487b2003-03-17 02:05:07 +0000298
299dnl check some types
300AC_C_CONST
301dnl AC_TYPE_PID_T
302AC_TYPE_SIGNAL
303
304dnl Some systems (Solaris 2.x) require libnsl (Network Services Library)
305case "$host" in
paulafd8a122005-03-12 06:36:10 +0000306 [*-sunos5.[6-7]*] | [*-solaris2.[6-7]*])
paul7ea487b2003-03-17 02:05:07 +0000307 opsys=sol2-6
paulafd8a122005-03-12 06:36:10 +0000308 AC_DEFINE(SUNOS_56, 1, SunOS 5.6 to 5.7)
paul19877dd2004-05-11 10:49:35 +0000309 AC_DEFINE(SUNOS_5, 1, SunOS 5)
paul7ea487b2003-03-17 02:05:07 +0000310 AC_CHECK_LIB(xnet, main)
311 CURSES=-lcurses
312 ;;
paul19877dd2004-05-11 10:49:35 +0000313 [*-sunos5.[8-9]] | [*-sunos5.1[0-9]] \
314 | [*-solaris2.[8-9]] | [*-solaris2.1[0-9]])
paulafd8a122005-03-12 06:36:10 +0000315 opsys=sol8
316 AC_DEFINE(SUNOS_59,,SunOS 5.8 up)
paul19877dd2004-05-11 10:49:35 +0000317 AC_DEFINE(SUNOS_5, 1, SunOS 5)
318 AC_CHECK_LIB(socket, main)
319 AC_CHECK_LIB(nsl, main)
320 CURSES=-lcurses
321 ;;
paul7ea487b2003-03-17 02:05:07 +0000322 *-sunos5* | *-solaris2*)
paul19877dd2004-05-11 10:49:35 +0000323 AC_DEFINE(SUNOS_5,,SunOS 5, Unknown SunOS)
paul7ea487b2003-03-17 02:05:07 +0000324 AC_CHECK_LIB(socket, main)
325 AC_CHECK_LIB(nsl, main)
326 CURSES=-lcurses
327 ;;
hassoc45eb832005-02-19 13:58:06 +0000328 *-linux*)
paul7ea487b2003-03-17 02:05:07 +0000329 opsys=gnu-linux
330 AC_DEFINE(GNU_LINUX,,GNU Linux)
331 ;;
332 *-nec-sysv4*)
333 AC_CHECK_LIB(nsl, gethostbyname)
334 AC_CHECK_LIB(socket, socket)
335 ;;
336 *-freebsd3.2)
337 AC_DEFINE(FREEBSD_32,,FreeBSD 3.2)
338 ;;
339 *-openbsd*)
340 opsys=openbsd
341 AC_DEFINE(OPEN_BSD,,OpenBSD)
342 ;;
343 *-bsdi*)
344 opsys=bsdi
345 OTHER_METHOD="mtu_kvm.o"
346 AC_CHECK_LIB(kvm, main)
347 ;;
paul49e3b3c2003-10-23 20:39:50 +0000348 *-irix6.5)
pauldc7a2bf2003-10-22 00:07:44 +0000349 opsys=irix
350 AC_DEFINE(IRIX_65,,IRIX 6.5)
351 ;;
paul7ea487b2003-03-17 02:05:07 +0000352esac
353
354dnl ---------------------
355dnl Integrated VTY option
356dnl ---------------------
357case "${enable_vtysh}" in
358 "yes") VTYSH="vtysh";
359 AC_DEFINE(VTYSH,,VTY shell)
gdtfc9d0742004-06-30 14:25:12 +0000360 AC_PATH_PROG(PERL, perl)
361dnl Vtysh uses libreadline, which looks for termcap functions at
362dnl configure time. We follow readline's search order.
363dnl The required procedures are in libtermcap on NetBSD, in
364dnl [TODO] on Linux, and in [TODO] on Solaris.
365 AC_CHECK_LIB(termcap, tputs, ,
366 AC_CHECK_LIB(tinfo, tputs, ,
367 AC_CHECK_LIB(curses, tputs, ,
368 AC_CHECK_LIB(ncurses, tputs))))
paul7ea487b2003-03-17 02:05:07 +0000369 AC_CHECK_LIB(readline, main)
370 if test $ac_cv_lib_readline_main = no; then
gdtfc9d0742004-06-30 14:25:12 +0000371 AC_MSG_ERROR([vtysh needs libreadline but was not found and usable on your system.])
paul7ea487b2003-03-17 02:05:07 +0000372 fi
373 AC_CHECK_HEADER(readline/history.h)
374 if test $ac_cv_header_readline_history_h = no;then
375 AC_MSG_ERROR([readline is too old to have readline/history.h, please update to the latest readline library.])
376 fi
paul3d3de8c2003-05-23 10:33:49 +0000377 AC_CHECK_LIB(readline, rl_completion_matches)
378 if test $ac_cv_lib_readline_rl_completion_matches = no; then
379 AC_DEFINE(rl_completion_matches,completion_matches,Old readline)
380 fi
381 ;;
paul7ea487b2003-03-17 02:05:07 +0000382 "no" ) VTYSH="";;
383 * ) ;;
384esac
385
386dnl ----------
387dnl PAM module
388dnl ----------
389if test "$with_libpam" = "yes"; then
paul24cd4352003-05-06 12:16:27 +0000390 AC_CHECK_HEADER(security/pam_misc.h)
391 if test "$ac_cv_header_security_pam_misc_h" = yes; then
392 AC_DEFINE(HAVE_PAM_MISC_H,,Have pam_misc.h)
393 AC_DEFINE(PAM_CONV_FUNC,misc_conv,Have misc_conv)
394 pam_conv_func="misc_conv"
paul24cd4352003-05-06 12:16:27 +0000395 fi
paul24cd4352003-05-06 12:16:27 +0000396 AC_CHECK_HEADER(security/openpam.h)
397 if test "$ac_cv_header_security_openpam_h" = yes; then
398 AC_DEFINE(HAVE_OPENPAM_H,,Have openpam.h)
399 AC_DEFINE(PAM_CONV_FUNC,openpam_ttyconv,Have openpam_ttyconv)
400 pam_conv_func="openpam_ttyconv"
paul24cd4352003-05-06 12:16:27 +0000401 fi
402 if test -z "$ac_cv_header_security_pam_misc_h$ac_cv_header_security_openpam_h" ; then
403 AC_MSG_WARN([*** pam support will not be built ***])
404 with_libpam="no"
405 fi
406fi
407
408if test "$with_libpam" = "yes"; then
paul7ea487b2003-03-17 02:05:07 +0000409dnl took this test from proftpd's configure.in and suited to our needs
410dnl -------------------------------------------------------------------------
411dnl
412dnl This next check looks funky due to a linker problem with some versions
413dnl of the PAM library. Prior to 0.72 release, the Linux PAM shared library
414dnl omitted requiring libdl linking information. PAM-0.72 or better ships
415dnl with RedHat 6.2 and Debian 2.2 or better.
416AC_CHECK_LIB(pam, pam_start,
paul24cd4352003-05-06 12:16:27 +0000417 [AC_CHECK_LIB(pam, $pam_conv_func,
paul7ea487b2003-03-17 02:05:07 +0000418 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
419 LIBPAM="-lpam"],
420 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
421 LIBPAM="-lpam -lpam_misc"]
422 )
423 ],
424
425 [AC_CHECK_LIB(pam, pam_end,
paul24cd4352003-05-06 12:16:27 +0000426 [AC_CHECK_LIB(pam, $pam_conv_func,
paula159ed92003-06-04 11:01:45 +0000427 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000428 LIBPAM="-lpam -ldl"],
paula159ed92003-06-04 11:01:45 +0000429 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000430 LIBPAM="-lpam -ldl -lpam_misc"]
431 )
432 ],AC_MSG_WARN([*** pam support will not be built ***]),
433 [-ldl])
434 ]
435)
436fi
437AC_SUBST(LIBPAM)
438
439dnl -------------------------------
440dnl Endian-ness check
441dnl -------------------------------
442AC_WORDS_BIGENDIAN
443
444dnl -------------------------------
445dnl check the size in byte of the C
446dnl -------------------------------
447dnl AC_CHECK_SIZEOF(char)
448dnl AC_CHECK_SIZEOF(int)
449dnl AC_CHECK_SIZEOF(short)
450dnl AC_CHECK_SIZEOF(long)
451
452dnl ----------------------------
453dnl check existance of functions
454dnl ----------------------------
paul49e3b3c2003-10-23 20:39:50 +0000455AC_CHECK_FUNCS(memset memcpy strerror inet_aton daemon snprintf vsnprintf \
paul04bd4842003-10-24 04:24:39 +0000456 strlcat strlcpy if_nametoindex if_indextoname getifaddrs \
ajs3cb98de2005-04-02 16:01:05 +0000457 fcntl strnlen)
paula159ed92003-06-04 11:01:45 +0000458AC_CHECK_FUNCS(setproctitle, ,
459 [AC_CHECK_LIB(util, setproctitle,
460 [LIBS="$LIBS -lutil"
461 AC_DEFINE(HAVE_SETPROCTITLE,, Have setproctitle)
462 ]
463 )
464 ]
465)
paul7ea487b2003-03-17 02:05:07 +0000466
467dnl ------------------------------------
468dnl Determine routing get and set method
469dnl ------------------------------------
470AC_MSG_CHECKING(zebra between kernel interface method)
471if test x"$opsys" = x"gnu-linux"; then
472 if test "${enable_netlink}" = "yes";then
473 AC_MSG_RESULT(netlink)
474 RT_METHOD=rt_netlink.o
475 AC_DEFINE(HAVE_NETLINK,,netlink)
476 netlink=yes
477 elif test "${enable_netlink}" = "no"; then
478 AC_MSG_RESULT(ioctl)
479 RT_METHOD=rt_ioctl.o
480 netlink=no
481 else
482 AC_MSG_RESULT(netlink)
483 RT_METHOD=rt_netlink.o
484 AC_DEFINE(HAVE_NETLINK,,netlink)
485 netlink=yes
486 fi
paul19877dd2004-05-11 10:49:35 +0000487elif test x"$opsys" = x"sol2-6";then
488 AC_MSG_RESULT(Route socket)
489 KERNEL_METHOD="kernel_socket.o"
490 RT_METHOD="rt_socket.o"
paulafd8a122005-03-12 06:36:10 +0000491elif test x"$opsys" = x"sol8";then
paul19877dd2004-05-11 10:49:35 +0000492 AC_MSG_RESULT(Route socket)
493 KERNEL_METHOD="kernel_socket.o"
494 RT_METHOD="rt_socket.o"
495elif test "$opsys" = "irix" ; then
496 AC_MSG_RESULT(Route socket)
497 KERNEL_METHOD="kernel_socket.o"
498 RT_METHOD="rt_socket.o"
paul7ea487b2003-03-17 02:05:07 +0000499else
paul19877dd2004-05-11 10:49:35 +0000500 AC_TRY_RUN([#include <errno.h>
paul7ea487b2003-03-17 02:05:07 +0000501#include <sys/types.h>
502#include <sys/socket.h>
503
504main ()
505{
506 int ac_sock;
507
508 ac_sock = socket (AF_ROUTE, SOCK_RAW, 0);
509 if (ac_sock < 0 && errno == EINVAL)
510 exit (1);
511 exit (0);
512}],
513 [KERNEL_METHOD=kernel_socket.o
514 RT_METHOD=rt_socket.o
515 AC_MSG_RESULT(socket)],
516 [RT_METHOD=rt_ioctl.o
517 AC_MSG_RESULT(ioctl)],
518 [KERNEL_METHOD=kernel_socket.o
519 RT_METHOD=rt_socket.o
520 AC_MSG_RESULT(socket)])
paul7ea487b2003-03-17 02:05:07 +0000521fi
522AC_SUBST(RT_METHOD)
523AC_SUBST(KERNEL_METHOD)
524AC_SUBST(OTHER_METHOD)
525
ajsb99760a2005-01-04 16:24:43 +0000526dnl ------------------------------------
527dnl check for broken CMSG_FIRSTHDR macro
528dnl ------------------------------------
gdt6c200462005-01-04 17:02:48 +0000529AC_MSG_CHECKING(for broken CMSG_FIRSTHDR)
ajsb99760a2005-01-04 16:24:43 +0000530AC_TRY_RUN([
531#ifdef SUNOS_5
532#define _XPG4_2
533#define __EXTENSIONS__
534#endif
535#include <stdlib.h>
536#include <sys/types.h>
537#include <sys/socket.h>
538
539main()
540{
541 struct msghdr msg;
542 char buf[4];
543
544 msg.msg_control = buf;
545 msg.msg_controllen = 0;
546
547 if (CMSG_FIRSTHDR(&msg) != NULL)
548 exit(0);
549 exit (1);
gdt6c200462005-01-04 17:02:48 +0000550}],[AC_MSG_RESULT(yes - using workaround) AC_DEFINE(HAVE_BROKEN_CMSG_FIRSTHDR,,Broken CMSG_FIRSTHDR)],
551[AC_MSG_RESULT(no)])
ajsb99760a2005-01-04 16:24:43 +0000552
paul7ea487b2003-03-17 02:05:07 +0000553dnl ------------------------------
554dnl check kernel route read method
555dnl ------------------------------
556AC_CACHE_CHECK(route read method check, zebra_rtread,
557[if test "$netlink" = yes; then
558 RTREAD_METHOD="rtread_netlink.o"
559 zebra_rtread="netlink"
560else
561for zebra_rtread in /proc/net/route /dev/ip /dev/null;
562do
563 test x`ls $zebra_rtread 2>/dev/null` = x"$zebra_rtread" && break
564done
565case $zebra_rtread in
566 "/proc/net/route") RTREAD_METHOD="rtread_proc.o"
567 zebra_rtread="proc";;
paul9c30ab62003-07-08 08:36:17 +0000568 "/dev/ip")
569 case "$host" in
570 *-freebsd*) RTREAD_METHOD=rtread_sysctl.o
571 zebra_rtread="sysctl";;
572 *) RTREAD_METHOD="rtread_getmsg.o"
573 zebra_rtread="getmsg";;
574 esac;;
paul7ea487b2003-03-17 02:05:07 +0000575 *) RTREAD_METHOD="rtread_sysctl.o"
576 zebra_rtread="sysctl";;
577esac
578fi])
579AC_SUBST(RTREAD_METHOD)
580
581dnl -----------------------------
582dnl check interface lookup method
583dnl -----------------------------
paul19877dd2004-05-11 10:49:35 +0000584IOCTL_METHOD=ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000585AC_MSG_CHECKING(interface looking up method)
586if test "$netlink" = yes; then
587 AC_MSG_RESULT(netlink)
588 IF_METHOD=if_netlink.o
paul19877dd2004-05-11 10:49:35 +0000589elif test "$opsys" = "sol2-6";then
590 AC_MSG_RESULT(Solaris GIF)
591 IF_METHOD=if_ioctl.o
paulafd8a122005-03-12 06:36:10 +0000592elif test "$opsys" = "sol8";then
paul19877dd2004-05-11 10:49:35 +0000593 AC_MSG_RESULT(Solaris GLIF)
594 IF_METHOD=if_ioctl_solaris.o
595 IOCTL_METHOD=ioctl_solaris.o
596elif test "$opsys" = "irix" ; then
597 AC_MSG_RESULT(IRIX)
598 IF_METHOD=if_ioctl.o
599elif test "$opsys" = "openbsd";then
600 AC_MSG_RESULT(openbsd)
601 IF_METHOD=if_ioctl.o
602elif grep NET_RT_IFLIST /usr/include/sys/socket.h >/dev/null 2>&1; then
603 AC_MSG_RESULT(sysctl)
paul7ea487b2003-03-17 02:05:07 +0000604 IF_METHOD=if_sysctl.o
605 AC_DEFINE(HAVE_NET_RT_IFLIST,,NET_RT_IFLIST)
paul19877dd2004-05-11 10:49:35 +0000606else
paul7ea487b2003-03-17 02:05:07 +0000607 AC_MSG_RESULT(ioctl)
608 IF_METHOD=if_ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000609fi
610AC_SUBST(IF_METHOD)
paul19877dd2004-05-11 10:49:35 +0000611AC_SUBST(IOCTL_METHOD)
paul7ea487b2003-03-17 02:05:07 +0000612
613dnl -----------------------
614dnl check proc file system.
615dnl -----------------------
616if test -r /proc/net/dev; then
617 AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev)
618 IF_PROC=if_proc.o
619fi
620
621if test -r /proc/net/if_inet6; then
622 AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6)
623 IF_PROC=if_proc.o
624fi
625AC_SUBST(IF_PROC)
626
627dnl -----------------------------
628dnl check ipforward detect method
629dnl -----------------------------
630AC_CACHE_CHECK(ipforward method check, zebra_ipforward_path,
631[for zebra_ipforward_path in /proc/net/snmp /dev/ip /dev/null;
632do
633 test x`ls $zebra_ipforward_path 2>/dev/null` = x"$zebra_ipforward_path" && break
634done
635case $zebra_ipforward_path in
636 "/proc/net/snmp") IPFORWARD=ipforward_proc.o
637 zebra_ipforward_path="proc";;
638 "/dev/ip")
639 case "$host" in
640 *-nec-sysv4*) IPFORWARD=ipforward_ews.o
641 zebra_ipforward_path="ews";;
paul9c30ab62003-07-08 08:36:17 +0000642 *-freebsd*) IPFORWARD=ipforward_sysctl.o
643 zebra_ipforward_path="sysctl";;
paul7ea487b2003-03-17 02:05:07 +0000644 *) IPFORWARD=ipforward_solaris.o
645 zebra_ipforward_path="solaris";;
646 esac;;
647 *) IPFORWARD=ipforward_sysctl.o
648 zebra_ipforward_path="sysctl";;
649esac])
650AC_SUBST(IPFORWARD)
651
652AC_CHECK_FUNCS(getaddrinfo, [have_getaddrinfo=yes], [have_getaddrinfo=no])
653
654dnl ----------
655dnl IPv6 check
656dnl ----------
657AC_MSG_CHECKING(whether does this OS have IPv6 stack)
658if test "${enable_ipv6}" = "no"; then
659 AC_MSG_RESULT(disabled)
660else
661dnl ----------
662dnl INRIA IPv6
663dnl ----------
paula159ed92003-06-04 11:01:45 +0000664 if grep IPV6_INRIA_VERSION /usr/include/netinet/in.h >/dev/null 2>&1; then
665 zebra_cv_ipv6=yes
666 AC_DEFINE(HAVE_IPV6,1,INRIA IPv6)
667 AC_DEFINE(INRIA_IPV6,1,INRIA IPv6)
668 RIPNGD="ripngd"
669 OSPF6D="ospf6d"
670 LIB_IPV6=""
671 AC_MSG_RESULT(INRIA IPv6)
paul7ea487b2003-03-17 02:05:07 +0000672dnl ---------
673dnl KAME IPv6
674dnl ---------
paula159ed92003-06-04 11:01:45 +0000675 elif grep WIDE /usr/include/netinet6/in6.h >/dev/null 2>&1; then
676 zebra_cv_ipv6=yes
677 AC_DEFINE(HAVE_IPV6,1,KAME IPv6)
678 AC_DEFINE(KAME,1,KAME IPv6)
679 RIPNGD="ripngd"
680 OSPF6D="ospf6d"
681 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
paul7ea487b2003-03-17 02:05:07 +0000682 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +0000683 fi
684 AC_MSG_RESULT(KAME)
hasso71c0fb52003-05-25 20:18:13 +0000685dnl -------------------------
686dnl MUSICA IPv6
687dnl default host check
688dnl It is not used by Kheops
689dnl -------------------------
paula159ed92003-06-04 11:01:45 +0000690 elif grep MUSICA /usr/include6/netinet6/in6.h >/dev/null 2>&1; then
691 zebra_cv_ipv6=yes
692 AC_DEFINE(HAVE_IPV6,1,Musicia IPv6)
693 AC_DEFINE(MUSICA,1,Musica IPv6 stack)
694 AC_DEFINE(KAME,1,KAME IPv6 stack)
695 RIPNGD="ripngd"
696 OSPF6D="ospf6d"
697 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
hasso71c0fb52003-05-25 20:18:13 +0000698 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +0000699 fi
700 AC_MSG_RESULT(MUSICA)
paul7ea487b2003-03-17 02:05:07 +0000701dnl ---------
702dnl NRL check
703dnl ---------
paula159ed92003-06-04 11:01:45 +0000704 elif grep NRL /usr/include/netinet6/in6.h >/dev/null 2>&1; then
705 zebra_cv_ipv6=yes
706 AC_DEFINE(HAVE_IPV6,1,NRL IPv6)
707 AC_DEFINE(NRL,1,NRL)
708 RIPNGD="ripngd"
709 OSPF6D="ospf6d"
710 if test x"$opsys" = x"bsdi";then
paul7ea487b2003-03-17 02:05:07 +0000711 AC_DEFINE(BSDI_NRL,,BSDI)
712 AC_MSG_RESULT(BSDI_NRL)
paula159ed92003-06-04 11:01:45 +0000713 else
paul7ea487b2003-03-17 02:05:07 +0000714 AC_MSG_RESULT(NRL)
paula159ed92003-06-04 11:01:45 +0000715 fi
paul19877dd2004-05-11 10:49:35 +0000716dnl ------------------------------------
717dnl Solaris 9, 10 and potentially higher
718dnl ------------------------------------
paulafd8a122005-03-12 06:36:10 +0000719 elif test x"$opsys" = x"sol8"; then
paul19877dd2004-05-11 10:49:35 +0000720 zebra_cv_ipv6=yes;
721 AC_DEFINE(HAVE_IPV6, 1, IPv6)
722 AC_DEFINE(SOLARIS_IPV6, 1, Solaris IPv6)
723 RIPNGD="ripngd"
724 OSPF6D="ospf6d"
725 AC_MSG_RESULT(Solaris IPv6)
paul7ea487b2003-03-17 02:05:07 +0000726dnl ----------
727dnl Linux IPv6
728dnl ----------
paula159ed92003-06-04 11:01:45 +0000729 elif test "${enable_ipv6}" = "yes"; then
730 AC_EGREP_CPP(yes, [
731 #include <linux/version.h>
732 /* 2.1.128 or later */
733 #if LINUX_VERSION_CODE >= 0x020180
734 yes
735 #endif],
736 [zebra_cv_ipv6=yes
737 zebra_cv_linux_ipv6=yes
738 AC_MSG_RESULT(Linux IPv6)])
739 else
740 if test x`ls /proc/net/ipv6_route 2>/dev/null` = x"/proc/net/ipv6_route"
741 then
paul7ea487b2003-03-17 02:05:07 +0000742 zebra_cv_ipv6=yes
743 zebra_cv_linux_ipv6=yes
744 AC_MSG_RESULT(Linux IPv6)
paula159ed92003-06-04 11:01:45 +0000745 fi
746 fi
paul7ea487b2003-03-17 02:05:07 +0000747
paula159ed92003-06-04 11:01:45 +0000748 if test "$zebra_cv_linux_ipv6" = "yes";then
749 AC_MSG_CHECKING(for GNU libc >= 2.1)
750 AC_DEFINE(HAVE_IPV6,1,Linux IPv6)
751 AC_EGREP_CPP(yes, [
paul7ea487b2003-03-17 02:05:07 +0000752#include <features.h>
753#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
754 yes
paula159ed92003-06-04 11:01:45 +0000755#endif],
756 [glibc=yes
757 AC_DEFINE(LINUX_IPV6,1,Linux IPv6 stack)
758 AC_MSG_RESULT(yes)],
759 AC_MSG_RESULT(no)
760 )
761 RIPNGD="ripngd"
762 OSPF6D="ospf6d"
763 if test "$glibc" != "yes"; then
paul7ea487b2003-03-17 02:05:07 +0000764 INCLUDES="-I/usr/inet6/include"
765 if test x`ls /usr/inet6/lib/libinet6.a 2>/dev/null` != x;then
766 LIB_IPV6="-L/usr/inet6/lib -linet6"
767 fi
paula159ed92003-06-04 11:01:45 +0000768 fi
769 fi
paul7ea487b2003-03-17 02:05:07 +0000770
771dnl -----------------------
772dnl Set IPv6 related values
773dnl -----------------------
paula159ed92003-06-04 11:01:45 +0000774 LIBS="$LIB_IPV6 $LIBS"
775 AC_SUBST(LIB_IPV6)
paul7ea487b2003-03-17 02:05:07 +0000776
paula159ed92003-06-04 11:01:45 +0000777 if test x"$RIPNGD" = x""; then
778 AC_MSG_RESULT(IPv4 only)
779 fi
paul7ea487b2003-03-17 02:05:07 +0000780fi
781
gdtfa3232e2003-12-03 17:52:30 +0000782dnl ------------------
783dnl IPv6 header checks
784dnl ------------------
785if test "x${zebra_cv_ipv6}" = "xyes"; then
786AC_CHECK_HEADERS([netinet6/in6.h netinet/in6_var.h netinet/icmp6.h \
787 netinet6/in6_var.h netinet6/nd6.h])
788fi
789
paul7ea487b2003-03-17 02:05:07 +0000790dnl --------------------
791dnl Daemon disable check
792dnl --------------------
793if test "${enable_zebra}" = "no";then
794 ZEBRA=""
795else
796 ZEBRA="zebra"
797fi
798
799if test "${enable_bgpd}" = "no";then
800 BGPD=""
801else
802 BGPD="bgpd"
803fi
804
805if test "${enable_ripd}" = "no";then
806 RIPD=""
807else
808 RIPD="ripd"
809fi
810
811if test "${enable_ospfd}" = "no";then
812 OSPFD=""
813else
814 OSPFD="ospfd"
815fi
816
ajsd0199432004-12-22 14:03:52 +0000817if test "${enable_watchquagga}" = "no";then
818 WATCHQUAGGA=""
819else
820 WATCHQUAGGA="watchquagga"
821fi
822
paul1ef74ef2003-03-21 15:16:05 +0000823OSPFCLIENT=""
824if test "${enable_opaque_lsa}" = "yes"; then
825 if test "${enable_ospfapi}" != "no";then
paul9a569842003-03-28 01:45:13 +0000826 AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI)
paul1ef74ef2003-03-21 15:16:05 +0000827
828 if test "${enable_ospfclient}" != "no";then
829 OSPFCLIENT="ospfclient"
830 fi
831 fi
832
paul7ea487b2003-03-17 02:05:07 +0000833fi
834
835case "${enable_ripngd}" in
836 "yes") RIPNGD="ripngd";;
837 "no" ) RIPNGD="";;
838 * ) ;;
839esac
840
841case "${enable_ospf6d}" in
842 "yes") OSPF6D="ospf6d";;
843 "no" ) OSPF6D="";;
844 * ) ;;
845esac
846
jardin9e867fe2003-12-23 08:56:18 +0000847case "${enable_isisd}" in
848 "yes") ISISD="isisd";;
849 "no" ) ISISD="";;
hassoae399ab2004-09-13 20:22:18 +0000850 * ) ;;
jardin9e867fe2003-12-23 08:56:18 +0000851esac
852
paul7ea487b2003-03-17 02:05:07 +0000853if test "${enable_bgp_announce}" = "no";then
854 AC_DEFINE(DISABLE_BGP_ANNOUNCE,,Disable BGP installation to zebra)
855fi
856
857AC_SUBST(ZEBRA)
858AC_SUBST(BGPD)
859AC_SUBST(RIPD)
860AC_SUBST(RIPNGD)
861AC_SUBST(OSPFD)
862AC_SUBST(OSPF6D)
ajsd0199432004-12-22 14:03:52 +0000863AC_SUBST(WATCHQUAGGA)
jardin9e867fe2003-12-23 08:56:18 +0000864AC_SUBST(ISISD)
paul7ea487b2003-03-17 02:05:07 +0000865AC_SUBST(VTYSH)
866AC_SUBST(INCLUDES)
867AC_SUBST(CURSES)
868AC_SUBST(OSPFCLIENT)
paul1ef74ef2003-03-21 15:16:05 +0000869AC_SUBST(OSPFAPI)
paul7ea487b2003-03-17 02:05:07 +0000870AC_CHECK_LIB(c, inet_ntop, [AC_DEFINE(HAVE_INET_NTOP,,inet_ntop)])
871AC_CHECK_LIB(c, inet_pton, [AC_DEFINE(HAVE_INET_PTON,,inet_pton)])
872AC_CHECK_LIB(crypt, crypt)
873AC_CHECK_LIB(resolv, res_init)
874AC_CHECK_LIB(m, main)
875
876dnl ---------------------------------------------------
877dnl BSD/OS 4.1 define inet_XtoY function as __inet_XtoY
878dnl ---------------------------------------------------
paula159ed92003-06-04 11:01:45 +0000879AC_CHECK_FUNC(__inet_ntop, AC_DEFINE(HAVE_INET_NTOP,,__inet_ntop))
880AC_CHECK_FUNC(__inet_pton, AC_DEFINE(HAVE_INET_PTON,,__inet_pton))
881AC_CHECK_FUNC(__inet_aton, AC_DEFINE(HAVE_INET_ATON,,__inet_aton))
paul7ea487b2003-03-17 02:05:07 +0000882
883dnl ---------------------------
884dnl check system has GNU regexp
885dnl ---------------------------
886dnl AC_MSG_CHECKING(whether system has GNU regex)
887AC_CHECK_LIB(c, regexec,
888[AC_DEFINE(HAVE_GNU_REGEX,,GNU regexp library)
889 LIB_REGEX=""],
890[LIB_REGEX="regex.o"])
891AC_SUBST(LIB_REGEX)
892
893dnl ------------------
894dnl check SNMP library
895dnl ------------------
896if test "${enable_snmp}" = "yes";then
897dnl AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
paul7ea487b2003-03-17 02:05:07 +0000898 if test "${HAVE_SNMP}" = ""; then
paul1ef74ef2003-03-21 15:16:05 +0000899 old_libs="${LIBS}"
900 LIBS="-L/usr/lib"
paul7ea487b2003-03-17 02:05:07 +0000901 unset ac_cv_lib_snmp_asn_parse_int
paul1ef74ef2003-03-21 15:16:05 +0000902 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
903 if test "${NEED_CRYPTO}" = ""; then
904 AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes ])
905 else
906 AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes; NEED_CRYPTO=yes;LIBS="$LIBS -lcrypto" ],,"-lcrypto")
907 fi
908 LIBS="${old_libs}"
paul7ea487b2003-03-17 02:05:07 +0000909 fi
paul1ef74ef2003-03-21 15:16:05 +0000910 if test "${HAVE_SNMP}" = ""; then
911 old_libs="${LIBS}"
912 LIBS="-L/usr/lib"
913 unset ac_cv_lib_snmp_asn_parse_int
914 AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes, )
915 if test "${HAVE_SNMP}" = ""; then
916 unset ac_cv_lib_snmp_asn_parse_int
917 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
918 if test "${NEED_CRYPTO}" = "yes"; then
919 AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
920 fi
921 fi
922 LIBS="${old_libs}"
923 fi
paul7ea487b2003-03-17 02:05:07 +0000924
925 if test "${HAVE_SNMP}" = ""; then
paul1ef74ef2003-03-21 15:16:05 +0000926 old_libs="${LIBS}"
927 LIBS="-L/usr/local/lib"
928 unset ac_cv_lib_snmp_asn_parse_int
929 AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
930 if test "${HAVE_SNMP}" = ""; then
931 unset ac_cv_lib_snmp_asn_parse_int
932 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
933 if test "${NEED_CRYPTO}" = "yes"; then
934 AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
935 fi
936 fi
937 LIBS="${old_libs}"
paul7ea487b2003-03-17 02:05:07 +0000938 fi
paul1ef74ef2003-03-21 15:16:05 +0000939
paul7ea487b2003-03-17 02:05:07 +0000940 if test "${HAVE_SNMP}" = "yes"; then
941 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
942 do
943 test -f "${ac_snmp}" && break
944 done
paul1ef74ef2003-03-21 15:16:05 +0000945
paul7ea487b2003-03-17 02:05:07 +0000946 case ${ac_snmp} in
947 /usr/include/net-snmp/*)
948 AC_DEFINE(HAVE_SNMP,,SNMP)
paul1ef74ef2003-03-21 15:16:05 +0000949 AC_DEFINE(HAVE_NETSNMP,,SNMP)
paul7ea487b2003-03-17 02:05:07 +0000950 AC_DEFINE(UCD_COMPATIBLE,,SNMP)
hasso2d582282005-03-28 15:29:07 +0000951 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/net-snmp -I/usr/include/net-snmp/library"
paulac7c4bb2003-03-19 04:25:08 +0000952 if test "${HAVE_NETSNMP}" = "yes"; then
paul1ef74ef2003-03-21 15:16:05 +0000953 LIBS="${LIBS} -lnetsnmp"
paulac7c4bb2003-03-19 04:25:08 +0000954 else
paul1ef74ef2003-03-21 15:16:05 +0000955 LIBS="${LIBS} -lsnmp"
paulac7c4bb2003-03-19 04:25:08 +0000956 fi
paul7ea487b2003-03-17 02:05:07 +0000957 ;;
958 /usr/include/ucd-snmp/*)
959 AC_DEFINE(HAVE_SNMP,,SNMP)
hasso2d582282005-03-28 15:29:07 +0000960 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/ucd-snmp"
paul7ea487b2003-03-17 02:05:07 +0000961 LIBS="${LIBS} -lsnmp"
962 ;;
963 /usr/local/include/ucd-snmp/*)
964 AC_DEFINE(HAVE_SNMP,,SNMP)
hasso2d582282005-03-28 15:29:07 +0000965 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/ucd-snmp"
paul7ea487b2003-03-17 02:05:07 +0000966 LIBS="${LIBS} -L/usr/local/lib -lsnmp"
967 ;;
paulf3bd1a72003-11-02 07:29:11 +0000968 /usr/local/include/net-snmp/*)
969 AC_DEFINE(HAVE_SNMP,,SNMP)
970 AC_DEFINE(HAVE_NET_SNMP,,SNMP)
971 AC_DEFINE(UCD_COMPATIBLE,,SNMP)
hasso2d582282005-03-28 15:29:07 +0000972 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/net-snmp"
paulf3bd1a72003-11-02 07:29:11 +0000973 LIBS="${LIBS} -L/usr/local/lib -lnetsnmp"
974 ;;
paul7ea487b2003-03-17 02:05:07 +0000975 esac
976 if test "${NEED_CRYPTO}" = "yes"; then
977 LIBS="${LIBS} -lcrypto"
978 fi
979 fi
980fi
981
ajs6cf9df02005-01-12 16:52:55 +0000982if test "${enable_snmp}" = "yes" -a "${HAVE_SNMP}" != "yes"; then
983 AC_MSG_ERROR([--enable-snmp given, but cannot find support for SNMP])
984fi
985
hasso2d582282005-03-28 15:29:07 +0000986AC_SUBST(SNMP_INCLUDES)
987
paul7ea487b2003-03-17 02:05:07 +0000988dnl ----------------------------
989dnl check sa_len of sockaddr
990dnl ----------------------------
991AC_MSG_CHECKING(whether struct sockaddr has a sa_len field)
992AC_TRY_COMPILE([#include <sys/types.h>
993#include <sys/socket.h>
994],[static struct sockaddr ac_i;int ac_j = sizeof (ac_i.sa_len);],
995[AC_MSG_RESULT(yes)
996 AC_DEFINE(HAVE_SA_LEN,,sa_len)],
997 AC_MSG_RESULT(no))
998
999dnl ----------------------------
1000dnl check sin_len of sockaddr_in
1001dnl ----------------------------
1002AC_MSG_CHECKING(whether struct sockaddr_in has a sin_len field)
1003AC_TRY_COMPILE([#include <sys/types.h>
1004#include <netinet/in.h>
1005],[static struct sockaddr_in ac_i;int ac_j = sizeof (ac_i.sin_len);],
1006[AC_MSG_RESULT(yes)
1007 AC_DEFINE(HAVE_SIN_LEN,,sin_len)],
1008 AC_MSG_RESULT(no))
1009
1010dnl ----------------------------
1011dnl check sun_len of sockaddr_un
1012dnl ----------------------------
1013AC_MSG_CHECKING(whether struct sockaddr_un has a sun_len field)
1014AC_TRY_COMPILE([#include <sys/types.h>
1015#include <sys/un.h>
1016],[static struct sockaddr_un ac_i;int ac_j = sizeof (ac_i.sun_len);],
1017[AC_MSG_RESULT(yes)
1018 AC_DEFINE(HAVE_SUN_LEN,,sun_len)],
1019 AC_MSG_RESULT(no))
1020
1021dnl -----------------------------------
1022dnl check sin6_scope_id of sockaddr_in6
1023dnl -----------------------------------
1024if test "$zebra_cv_ipv6" = yes; then
1025 AC_MSG_CHECKING(whether struct sockaddr_in6 has a sin6_scope_id field)
1026 AC_TRY_COMPILE([#include <sys/types.h>
1027#include <netinet/in.h>
1028],[static struct sockaddr_in6 ac_i;int ac_j = sizeof (ac_i.sin6_scope_id);],
1029[AC_MSG_RESULT(yes)
1030 AC_DEFINE(HAVE_SIN6_SCOPE_ID,,scope id)],
1031 AC_MSG_RESULT(no))
1032fi
1033
1034dnl ----------------------------
1035dnl check socklen_t exist or not
1036dnl ----------------------------
1037AC_MSG_CHECKING(whther socklen_t is defined)
1038AC_TRY_COMPILE([#include <sys/types.h>
1039#include <sys/socket.h>
1040#include <netinet/in.h>
1041],[socklen_t ac_x;],
1042[AC_MSG_RESULT(yes)
1043 AC_DEFINE(HAVE_SOCKLEN_T,,socklen_t)],
1044 AC_MSG_RESULT(no))
1045
1046dnl ------------------------
1047dnl check struct sockaddr_dl
1048dnl ------------------------
1049AC_MSG_CHECKING(whether struct sockaddr_dl exist)
1050AC_EGREP_HEADER(sockaddr_dl,
1051net/if_dl.h,
1052[AC_MSG_RESULT(yes)
1053 AC_DEFINE(HAVE_SOCKADDR_DL,,sockaddr_dl)],
1054 AC_MSG_RESULT(no))
1055
1056dnl --------------------------
1057dnl check structure ifaliasreq
1058dnl --------------------------
1059AC_MSG_CHECKING(whether struct ifaliasreq exist)
1060AC_EGREP_HEADER(ifaliasreq,
1061net/if.h,
1062[AC_MSG_RESULT(yes)
1063 AC_DEFINE(HAVE_IFALIASREQ,,ifaliasreq)],
1064 AC_MSG_RESULT(no))
1065
1066dnl ----------------------------
1067dnl check structure in6_aliasreq
1068dnl ----------------------------
hasso71c0fb52003-05-25 20:18:13 +00001069AC_MSG_CHECKING(whether struct in6_aliasreq exist)
paul7ea487b2003-03-17 02:05:07 +00001070AC_EGREP_HEADER(in6_aliasreq,
1071netinet6/in6_var.h,
1072[AC_MSG_RESULT(yes)
1073 AC_DEFINE(HAVE_IN6_ALIASREQ,,in6_aliasreq)],
1074 AC_MSG_RESULT(no))
1075
hasso71c0fb52003-05-25 20:18:13 +00001076dnl -----------------------------------
1077dnl check ifra_lifetime of in6_aliasreq
1078dnl -----------------------------------
1079AC_MSG_CHECKING(whether in6_aliasreq.ifra_lifetime exist)
1080AC_TRY_COMPILE([#include <sys/types.h>
1081#include <netinet6/in6_var.h>
1082],[static struct if6_aliasreq ac_i;int ac_j = sizeof (ac_i.ifra_lifetime);],
1083[AC_MSG_RESULT(yes)
paula159ed92003-06-04 11:01:45 +00001084 AC_DEFINE(HAVE_IFRA_LIFETIME,,Have in6_aliasreq.ifra_lifetime)],
hasso71c0fb52003-05-25 20:18:13 +00001085 AC_MSG_RESULT(no))
1086
paul7ea487b2003-03-17 02:05:07 +00001087dnl ---------------------------
1088dnl check structure rt_addrinfo
1089dnl ---------------------------
1090AC_MSG_CHECKING(whether struct rt_addrinfo exist)
1091AC_EGREP_HEADER(rt_addrinfo,
1092net/route.h,
1093[AC_MSG_RESULT(yes)
1094 AC_DEFINE(HAVE_RT_ADDRINFO,,rt_addrinfo)],
1095 AC_MSG_RESULT(no))
1096
1097dnl --------------------------
1098dnl check structure in_pktinfo
1099dnl --------------------------
1100AC_MSG_CHECKING(whether struct in_pktinfo exist)
1101AC_TRY_COMPILE([#include <netinet/in.h>
1102],[struct in_pktinfo ac_x;],
1103[AC_MSG_RESULT(yes)
1104 AC_DEFINE(HAVE_INPKTINFO,,in_pktinfo)],
1105 AC_MSG_RESULT(no))
1106
vincent29c4c9b2005-03-25 13:05:47 +00001107dnl ----------------------------------
1108dnl check struct nd_opt_homeagent_info
1109dnl ----------------------------------
1110AC_MSG_CHECKING(whether struct nd_opt_homeagent_info exist)
1111AC_EGREP_HEADER(nd_opt_homeagent_info,
1112netinet/icmp6.h,
1113[AC_MSG_RESULT(yes)
1114 AC_DEFINE(HAVE_ND_OPT_HOMEAGENT_INFO,,nd_opt_homeagent_info)],
1115 AC_MSG_RESULT(no))
1116
1117dnl --------------------------------
1118dnl check struct nd_opt_adv_interval
1119dnl --------------------------------
1120AC_MSG_CHECKING(whether struct nd_opt_adv_interval exist)
1121AC_EGREP_HEADER(nd_opt_adv_interval,
1122netinet/icmp6.h,
1123[AC_MSG_RESULT(yes)
1124 AC_DEFINE(HAVE_ND_OPT_ADV_INTERVAL,,nd_opt_adv_interval)],
1125 AC_MSG_RESULT(no))
1126
1127dnl ------------------------------------
1128dnl check fields in nd_opt_adv_interval
1129dnl ------------------------------------
1130AC_MSG_CHECKING(whether nd_opt_ai_type field exist)
1131AC_EGREP_HEADER(nd_opt_ai_type,
1132netinet/icmp6.h,
1133[AC_MSG_RESULT(yes)
1134 AC_DEFINE(HAVE_ND_OPT_ADV_INTERVAL_AI_FIELDS,,nd_opt_ai_type)],
1135 AC_MSG_RESULT(no))
1136
paul7ea487b2003-03-17 02:05:07 +00001137dnl --------------------------------------
1138dnl checking for getrusage struct and call
1139dnl --------------------------------------
1140AC_MSG_CHECKING(whether getrusage is available)
1141AC_TRY_COMPILE([#include <sys/resource.h>
1142],[struct rusage ac_x; getrusage (RUSAGE_SELF, &ac_x);],
1143[AC_MSG_RESULT(yes)
1144 AC_DEFINE(HAVE_RUSAGE,,rusage)],
1145 AC_MSG_RESULT(no))
1146
pauledd7c242003-06-04 13:59:38 +00001147dnl -------------------
1148dnl capabilities checks
1149dnl -------------------
hasso41d3fc92004-04-06 11:59:00 +00001150if test "${enable_capabilities}" != "no"; then
1151 AC_MSG_CHECKING(whether prctl PR_SET_KEEPCAPS is available)
1152 AC_TRY_COMPILE([#include <sys/prctl.h>],[prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);],
1153 [AC_MSG_RESULT(yes)
1154 AC_DEFINE(HAVE_PR_SET_KEEPCAPS,,prctl)
1155 quagga_ac_keepcaps="yes"],
1156 AC_MSG_RESULT(no)
pauledd7c242003-06-04 13:59:38 +00001157 )
hasso41d3fc92004-04-06 11:59:00 +00001158 if test x"${quagga_ac_keepcaps}" = x"yes"; then
1159 AC_CHECK_HEADERS(sys/capability.h)
1160 fi
1161 if test x"${ac_cv_header_sys_capability_h}" = x"yes"; then
1162 AC_CHECK_LIB(cap, cap_init,
1163 [AC_DEFINE(HAVE_LCAPS,1,Capabilities)
1164 LIBCAP="-lcap"
1165 ]
1166 )
1167 fi
pauledd7c242003-06-04 13:59:38 +00001168fi
1169AC_SUBST(LIBCAP)
1170
ajs40abf232005-01-12 17:27:27 +00001171dnl -------------------
1172dnl test for ucontext.h
1173dnl -------------------
1174AC_CHECK_HEADERS(ucontext.h)
1175
paulfb2d1502003-06-04 09:40:54 +00001176dnl ---------------------------
1177dnl check for glibc 'backtrace'
1178dnl ---------------------------
1179if test "${glibc}" = "yes"; then
1180 AC_CHECK_HEADER(execinfo.h)
1181fi
1182if test x"${ac_cv_header_execinfo_h}" = x"yes"; then
1183 AC_CHECK_FUNC(backtrace,
1184 [AC_DEFINE(HAVE_GLIBC_BACKTRACE,,Glibc backtrace)]
1185 )
1186fi
1187
paul408ad942003-05-20 00:03:33 +00001188dnl ----------
1189dnl configure date
1190dnl ----------
1191CONFDATE=`date '+%Y%m%d'`
1192AC_SUBST(CONFDATE)
1193
paul7ea487b2003-03-17 02:05:07 +00001194dnl ------------------------------
paula159ed92003-06-04 11:01:45 +00001195dnl set paths for state directory
paul23bd12c2003-04-07 06:11:09 +00001196dnl ------------------------------
1197if test "${prefix}" = "NONE"; then
paule8f29842003-08-12 13:08:31 +00001198 quagga_statedir_prefix="";
paul23bd12c2003-04-07 06:11:09 +00001199else
paule8f29842003-08-12 13:08:31 +00001200 quagga_statedir_prefix=${prefix}
paul23bd12c2003-04-07 06:11:09 +00001201fi
1202if test "${localstatedir}" = '${prefix}/var'; then
paula159ed92003-06-04 11:01:45 +00001203 AC_CACHE_CHECK(state directory,ac_statedir,
paule8f29842003-08-12 13:08:31 +00001204 [for QUAGGA_STATE_DIR in ${quagga_statedir_prefix}/var/run dnl
1205 ${quagga_statedir_prefix}/var/adm dnl
1206 ${quagga_statedir_prefix}/etc dnl
paula159ed92003-06-04 11:01:45 +00001207 /var/run dnl
1208 /var/adm dnl
1209 /etc dnl
1210 /dev/null;
paul23bd12c2003-04-07 06:11:09 +00001211 do
paule8f29842003-08-12 13:08:31 +00001212 test -d $QUAGGA_STATE_DIR && break
paul23bd12c2003-04-07 06:11:09 +00001213 done
paule8f29842003-08-12 13:08:31 +00001214 quagga_statedir=$QUAGGA_STATE_DIR])
paul23bd12c2003-04-07 06:11:09 +00001215else
paule8f29842003-08-12 13:08:31 +00001216 quagga_statedir=${localstatedir}
paula159ed92003-06-04 11:01:45 +00001217 AC_MSG_CHECKING(directory to use for state file)
paule8f29842003-08-12 13:08:31 +00001218 AC_MSG_RESULT(${quagga_statedir})
paul23bd12c2003-04-07 06:11:09 +00001219fi
paule8f29842003-08-12 13:08:31 +00001220if test $quagga_statedir = "/dev/null"; then
paula159ed92003-06-04 11:01:45 +00001221 AC_MSG_ERROR('STATE DIRECTORY NOT FOUND! FIX OR SPECIFY --localstatedir!')
1222fi
1223
paule8f29842003-08-12 13:08:31 +00001224AC_DEFINE_UNQUOTED(PATH_ZEBRA_PID, "$quagga_statedir/zebra.pid",zebra PID)
1225AC_DEFINE_UNQUOTED(PATH_RIPD_PID, "$quagga_statedir/ripd.pid",ripd PID)
1226AC_DEFINE_UNQUOTED(PATH_RIPNGD_PID, "$quagga_statedir/ripngd.pid",ripngd PID)
1227AC_DEFINE_UNQUOTED(PATH_BGPD_PID, "$quagga_statedir/bgpd.pid",bgpd PID)
1228AC_DEFINE_UNQUOTED(PATH_OSPFD_PID, "$quagga_statedir/ospfd.pid",ospfd PID)
1229AC_DEFINE_UNQUOTED(PATH_OSPF6D_PID, "$quagga_statedir/ospf6d.pid",ospf6d PID)
jardin9e867fe2003-12-23 08:56:18 +00001230AC_DEFINE_UNQUOTED(PATH_ISISD_PID, "$quagga_statedir/isisd.pid",isisd PID)
ajsd0199432004-12-22 14:03:52 +00001231AC_DEFINE_UNQUOTED(PATH_WATCHQUAGGA_PID, "$quagga_statedir/watchquagga.pid",watchquagga PID)
paule8f29842003-08-12 13:08:31 +00001232AC_DEFINE_UNQUOTED(ZEBRA_SERV_PATH, "$quagga_statedir/zserv.api",zebra api socket)
1233AC_DEFINE_UNQUOTED(ZEBRA_VTYSH_PATH, "$quagga_statedir/zebra.vty",zebra vty socket)
1234AC_DEFINE_UNQUOTED(RIP_VTYSH_PATH, "$quagga_statedir/ripd.vty",rip vty socket)
1235AC_DEFINE_UNQUOTED(RIPNG_VTYSH_PATH, "$quagga_statedir/ripngd.vty",ripng vty socket)
1236AC_DEFINE_UNQUOTED(BGP_VTYSH_PATH, "$quagga_statedir/bgpd.vty",bgpd vty socket)
1237AC_DEFINE_UNQUOTED(OSPF_VTYSH_PATH, "$quagga_statedir/ospfd.vty",ospfd vty socket)
1238AC_DEFINE_UNQUOTED(OSPF6_VTYSH_PATH, "$quagga_statedir/ospf6d.vty",ospf6d vty socket)
jardin9e867fe2003-12-23 08:56:18 +00001239AC_DEFINE_UNQUOTED(ISIS_VTYSH_PATH, "$quagga_statedir/isisd.vty",isisd vty socket)
ajs515210b2004-12-22 15:35:12 +00001240AC_DEFINE_UNQUOTED(DAEMON_VTY_DIR, "$quagga_statedir",daemon vty directory)
paul7ea487b2003-03-17 02:05:07 +00001241
1242dnl ---------------------------
1243dnl Check htonl works correctly
1244dnl ---------------------------
1245AC_MSG_CHECKING(for working htonl)
1246AC_CACHE_VAL(ac_cv_htonl_works, [
1247AC_TRY_LINK([#ifdef HAVE_SYS_TYPES_H
1248#include <sys/types.h>
1249#endif
1250#ifdef HAVE_NETDB_H
1251#include <netdb.h>
1252#endif
1253#ifdef HAVE_NETINET_IN_H
1254#include <netinet/in.h>
1255#endif],
1256[htonl (0);],
1257ac_cv_htonl_works=yes,
1258ac_cv_htonl_works=no)])
1259AC_MSG_RESULT($ac_cv_htonl_works)
1260
paul14c17fd2004-11-07 22:34:23 +00001261AC_CONFIG_FILES([Makefile lib/Makefile zebra/Makefile ripd/Makefile
ajsd0199432004-12-22 14:03:52 +00001262 ripngd/Makefile bgpd/Makefile ospfd/Makefile watchquagga/Makefile
jardin9e867fe2003-12-23 08:56:18 +00001263 ospf6d/Makefile isisd/Makefile vtysh/Makefile doc/Makefile
paul14c17fd2004-11-07 22:34:23 +00001264 ospfclient/Makefile tests/Makefile m4/Makefile redhat/Makefile
gdt69f1fc22004-08-27 15:57:35 +00001265 pkgsrc/Makefile
paul670bbf12004-11-12 09:05:00 +00001266 redhat/quagga.spec
gdtb7a97f82004-07-23 16:23:56 +00001267 lib/version.h
paul14c17fd2004-11-07 22:34:23 +00001268 doc/defines.texi
gdtcbd04082004-08-31 18:16:36 +00001269 pkgsrc/bgpd.sh pkgsrc/ospf6d.sh pkgsrc/ospfd.sh
paulf31293a2004-11-12 09:27:04 +00001270 pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh])
paul670bbf12004-11-12 09:05:00 +00001271AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl])
hasso48577192004-11-19 06:41:49 +00001272## Hack, but working solution to avoid rebuilding of quagga.info.
1273## It's already in CVS until texinfo 4.7 is more common.
1274AC_CONFIG_COMMANDS([info-time],[touch doc/quagga.info])
paul14c17fd2004-11-07 22:34:23 +00001275AC_OUTPUT
paul7ea487b2003-03-17 02:05:07 +00001276
1277echo "
hassoc89f6492004-08-26 12:21:28 +00001278Quagga configuration
1279--------------------
1280quagga version : ${PACKAGE_VERSION}
paul7ea487b2003-03-17 02:05:07 +00001281host operationg system : ${host_os}
1282source code location : ${srcdir}
1283compiler : ${CC}
1284compiler flags : ${CFLAGS}
hasso2d582282005-03-28 15:29:07 +00001285includes : ${INCLUDES} ${SNMP_INCLUDES}
hasso71c0fb52003-05-25 20:18:13 +00001286linker flags : ${LDFLAGS} ${LIBS}
paule8f29842003-08-12 13:08:31 +00001287state file directory : ${quagga_statedir}
pauldc7a2bf2003-10-22 00:07:44 +00001288config file directory : `eval echo \`echo ${sysconfdir}\``
gdtd6b72f72003-12-03 17:24:27 +00001289example directory : `eval echo \`echo ${exampledir}\``
paul8d4aee52003-06-06 00:30:35 +00001290user to run as : ${enable_user}
1291group to run as : ${enable_group}
1292group for vty sockets : ${enable_vty_group}
gdtaa593d52003-12-22 20:15:53 +00001293config file mask : ${enable_configfile_mask}
1294log file mask : ${enable_logfile_mask}
pauldc7a2bf2003-10-22 00:07:44 +00001295
1296The above user and group must have read/write access to the state file
1297directory and to the config files in the config file directory.
paul7ea487b2003-03-17 02:05:07 +00001298"