blob: cb1343aad0197ebd497bac30a332051e35f37c28 [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##
paul1b73de82005-04-10 16:31:51 +00008## $Id: configure.ac,v 1.100 2005/04/10 16:31:51 paul 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])
hassof695b012005-04-02 19:03:39 +0000183AC_ARG_ENABLE(isis_topology,
184[ --enable-isis-topology enable IS-IS topology generator])
hasso41d3fc92004-04-06 11:59:00 +0000185AC_ARG_ENABLE(capabilities,
186[ --disable-capabilities disable using POSIX capabilities])
paul6b6942f2004-10-22 04:55:05 +0000187AC_ARG_ENABLE(gcc_ultra_verbose,
188[ --enable-gcc-ultra-verbose enable ultra verbose GCC warnings])
ajs3cade262004-12-29 17:50:22 +0000189AC_ARG_ENABLE(gcc-rdynamic,
190[ --enable-gcc-rdynamic enable gcc linking with -rdynamic for better backtraces])
paul6b6942f2004-10-22 04:55:05 +0000191
192if test x"${enable_gcc_ultra_verbose}" = x"yes" ; then
193 CFLAGS="${CFLAGS} -W -Wcast-qual -Wstrict-prototypes"
194 CFLAGS="${CFLAGS} -Wmissing-declarations -Wmissing-noreturn"
195 CFLAGS="${CFLAGS} -Wmissing-format-attribute -Wunreachable-code"
196 CFLAGS="${CFLAGS} -Wpacked -Wpadded"
197fi
paul7ea487b2003-03-17 02:05:07 +0000198
ajs3cade262004-12-29 17:50:22 +0000199if test x"${enable_gcc_rdynamic}" = x"yes" ; then
200 LDFLAGS="${LDFLAGS} -rdynamic"
201fi
202
paul7ea487b2003-03-17 02:05:07 +0000203if test "${enable_broken_aliases}" = "yes"; then
204 if test "${enable_netlink}" = "yes"
205 then
206 echo "Sorry, you can't use netlink with broken aliases"
207 exit 1
208 fi
209 AC_DEFINE(HAVE_BROKEN_ALIASES,,Broken Alias)
210 enable_netlink=no
211fi
212
213if test "${enable_tcp_zebra}" = "yes"; then
214 AC_DEFINE(HAVE_TCP_ZEBRA,,Use TCP for zebra communication)
215fi
216
paul7ea487b2003-03-17 02:05:07 +0000217if test "${enable_opaque_lsa}" = "yes"; then
218 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
219fi
220
221if test "${enable_ospf_te}" = "yes"; then
222 AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA)
223 AC_DEFINE(HAVE_OSPF_TE,,OSPF TE)
224fi
225
gdtd2a0ccc2003-12-03 18:13:48 +0000226AC_MSG_CHECKING(if zebra should be configurable to send Route Advertisements)
227if test "${enable_rtadv}" != "no"; then
hasso71c0fb52003-05-25 20:18:13 +0000228 AC_MSG_RESULT(yes)
gdtd2a0ccc2003-12-03 18:13:48 +0000229 AC_DEFINE(HAVE_RTADV,,Enable IPv6 Routing Advertisement support)
paul2487bea2003-05-25 23:51:31 +0000230else
231 AC_MSG_RESULT(no)
hasso71c0fb52003-05-25 20:18:13 +0000232fi
paul7ea487b2003-03-17 02:05:07 +0000233
hassoca776982004-06-12 14:33:05 +0000234if test "${enable_irdp}" = "yes"; then
235 AC_DEFINE(HAVE_IRDP,, IRDP )
236fi
237
hassof695b012005-04-02 19:03:39 +0000238if test "${enable_isisd}" = "yes" && test "${enable_isis_topology}" = yes; then
239 AC_DEFINE(TOPOLOGY_GENERATE,,Enable IS-IS topology generator code)
240 ISIS_TOPOLOGY_INCLUDES="-I./topology"
241 ISIS_TOPOLOGY_DIR="topology"
242 ISIS_TOPOLOGY_LIB="./topology/libtopology.a"
243fi
244
245AC_SUBST(ISIS_TOPOLOGY_INCLUDES)
246AC_SUBST(ISIS_TOPOLOGY_DIR)
247AC_SUBST(ISIS_TOPOLOGY_LIB)
248
paul79cb2162003-06-06 12:19:53 +0000249if test "${enable_user}" = "yes" || test x"${enable_user}" = x""; then
paule8f29842003-08-12 13:08:31 +0000250 enable_user="quagga"
pauledd7c242003-06-04 13:59:38 +0000251elif test "${enable_user}" = "no"; then
252 enable_user="root"
253fi
paule8f29842003-08-12 13:08:31 +0000254AC_DEFINE_UNQUOTED(QUAGGA_USER, "${enable_user}", Quagga User)
pauledd7c242003-06-04 13:59:38 +0000255
paul79cb2162003-06-06 12:19:53 +0000256if test "${enable_group}" = "yes" || test x"${enable_group}" = x""; then
paule8f29842003-08-12 13:08:31 +0000257 enable_group="quagga"
pauledd7c242003-06-04 13:59:38 +0000258elif test "${enable_group}" = "no"; then
259 enable_group="root"
260fi
paule8f29842003-08-12 13:08:31 +0000261AC_DEFINE_UNQUOTED(QUAGGA_GROUP, "${enable_group}", Quagga Group)
pauledd7c242003-06-04 13:59:38 +0000262
263if test x"${enable_vty_group}" = x"yes" ; then
paul8d4aee52003-06-06 00:30:35 +0000264 AC_MSG_ERROR([--enable-vty-group requires a group as argument, not yes])
paul79cb2162003-06-06 12:19:53 +0000265elif test x"${enable_vty_group}" != x""; then
paul8d4aee52003-06-06 00:30:35 +0000266 if test x"${enable_vty_group}" != x"no"; then
pauledd7c242003-06-04 13:59:38 +0000267 AC_DEFINE_UNQUOTED(VTY_GROUP, "${enable_vty_group}", VTY Sockets Group)
268 fi
269fi
270
gdtaa593d52003-12-22 20:15:53 +0000271enable_configfile_mask=${enable_configfile_mask:-0600}
272AC_DEFINE_UNQUOTED(CONFIGFILE_MASK, ${enable_configfile_mask}, Mask for config files)
273
274enable_logfile_mask=${enable_logfile_mask:-0600}
275AC_DEFINE_UNQUOTED(LOGFILE_MASK, ${enable_logfile_mask}, Mask for log files)
276
paul7ea487b2003-03-17 02:05:07 +0000277changequote(, )dnl
278
279MULTIPATH_NUM=1
280
281case "${enable_multipath}" in
282 [0-9]|[1-9][0-9])
283 MULTIPATH_NUM="${enable_multipath}"
284 ;;
285 "")
286 ;;
287 *)
288 echo "Please specify digit to --enable-multipath ARG."
289 exit 1
290 ;;
291esac
292
293changequote([, ])dnl
294
295AC_SUBST(MULTIPATH_NUM)
296
297dnl -------------------
298dnl Check header files.
299dnl -------------------
pauldc7a2bf2003-10-22 00:07:44 +0000300AC_HEADER_STDC
301AC_CHECK_HEADERS([string.h stropts.h sys/conf.h sys/ksym.h sys/time.h \
302 sys/times.h sys/select.h sys/sysctl.h sys/sockio.h \
303 sys/types.h linux/version.h kvm.h netdb.h asm/types.h \
304 libutil.h limits.h])
305
paul835b7f12003-10-30 21:59:57 +0000306AC_CHECK_HEADERS([sys/socket.h netinet/in_systm.h netinet/in.h \
paulf3bd1a72003-11-02 07:29:11 +0000307 net/if_dl.h net/netopt.h inet/nd.h net/route.h \
paul835b7f12003-10-30 21:59:57 +0000308 net/if.h net/if_var.h netinet/in_var.h])
pauldc7a2bf2003-10-22 00:07:44 +0000309
gdtfa3232e2003-12-03 17:52:30 +0000310dnl V6 headers are checked below, after we check for v6
paul7ea487b2003-03-17 02:05:07 +0000311
312dnl check some types
313AC_C_CONST
314dnl AC_TYPE_PID_T
315AC_TYPE_SIGNAL
316
317dnl Some systems (Solaris 2.x) require libnsl (Network Services Library)
318case "$host" in
paulafd8a122005-03-12 06:36:10 +0000319 [*-sunos5.[6-7]*] | [*-solaris2.[6-7]*])
paul7ea487b2003-03-17 02:05:07 +0000320 opsys=sol2-6
paulafd8a122005-03-12 06:36:10 +0000321 AC_DEFINE(SUNOS_56, 1, SunOS 5.6 to 5.7)
paul19877dd2004-05-11 10:49:35 +0000322 AC_DEFINE(SUNOS_5, 1, SunOS 5)
paul7ea487b2003-03-17 02:05:07 +0000323 AC_CHECK_LIB(xnet, main)
324 CURSES=-lcurses
325 ;;
paul1b73de82005-04-10 16:31:51 +0000326 [*-sunos5.[8-9]] \
327 | [*-sunos5.1[0-9]] \
328 | [*-sunos5.1[0-9].[0-9]] \
329 | [*-solaris2.[8-9]] \
330 | [*-solaris2.1[0-9]] \
331 | [*-solaris2.1[0-9].[0-9]])
paulafd8a122005-03-12 06:36:10 +0000332 opsys=sol8
333 AC_DEFINE(SUNOS_59,,SunOS 5.8 up)
paul19877dd2004-05-11 10:49:35 +0000334 AC_DEFINE(SUNOS_5, 1, SunOS 5)
335 AC_CHECK_LIB(socket, main)
336 AC_CHECK_LIB(nsl, main)
paul1b73de82005-04-10 16:31:51 +0000337 AC_CHECK_LIB(umem, main)
paul19877dd2004-05-11 10:49:35 +0000338 CURSES=-lcurses
339 ;;
paul7ea487b2003-03-17 02:05:07 +0000340 *-sunos5* | *-solaris2*)
paul19877dd2004-05-11 10:49:35 +0000341 AC_DEFINE(SUNOS_5,,SunOS 5, Unknown SunOS)
paul7ea487b2003-03-17 02:05:07 +0000342 AC_CHECK_LIB(socket, main)
343 AC_CHECK_LIB(nsl, main)
344 CURSES=-lcurses
345 ;;
hassoc45eb832005-02-19 13:58:06 +0000346 *-linux*)
paul7ea487b2003-03-17 02:05:07 +0000347 opsys=gnu-linux
348 AC_DEFINE(GNU_LINUX,,GNU Linux)
349 ;;
350 *-nec-sysv4*)
351 AC_CHECK_LIB(nsl, gethostbyname)
352 AC_CHECK_LIB(socket, socket)
353 ;;
354 *-freebsd3.2)
355 AC_DEFINE(FREEBSD_32,,FreeBSD 3.2)
356 ;;
357 *-openbsd*)
358 opsys=openbsd
359 AC_DEFINE(OPEN_BSD,,OpenBSD)
360 ;;
361 *-bsdi*)
362 opsys=bsdi
363 OTHER_METHOD="mtu_kvm.o"
364 AC_CHECK_LIB(kvm, main)
365 ;;
paul49e3b3c2003-10-23 20:39:50 +0000366 *-irix6.5)
pauldc7a2bf2003-10-22 00:07:44 +0000367 opsys=irix
368 AC_DEFINE(IRIX_65,,IRIX 6.5)
369 ;;
paul7ea487b2003-03-17 02:05:07 +0000370esac
371
372dnl ---------------------
373dnl Integrated VTY option
374dnl ---------------------
375case "${enable_vtysh}" in
376 "yes") VTYSH="vtysh";
377 AC_DEFINE(VTYSH,,VTY shell)
gdtfc9d0742004-06-30 14:25:12 +0000378 AC_PATH_PROG(PERL, perl)
379dnl Vtysh uses libreadline, which looks for termcap functions at
380dnl configure time. We follow readline's search order.
381dnl The required procedures are in libtermcap on NetBSD, in
382dnl [TODO] on Linux, and in [TODO] on Solaris.
383 AC_CHECK_LIB(termcap, tputs, ,
384 AC_CHECK_LIB(tinfo, tputs, ,
385 AC_CHECK_LIB(curses, tputs, ,
386 AC_CHECK_LIB(ncurses, tputs))))
paul7ea487b2003-03-17 02:05:07 +0000387 AC_CHECK_LIB(readline, main)
388 if test $ac_cv_lib_readline_main = no; then
gdtfc9d0742004-06-30 14:25:12 +0000389 AC_MSG_ERROR([vtysh needs libreadline but was not found and usable on your system.])
paul7ea487b2003-03-17 02:05:07 +0000390 fi
391 AC_CHECK_HEADER(readline/history.h)
392 if test $ac_cv_header_readline_history_h = no;then
393 AC_MSG_ERROR([readline is too old to have readline/history.h, please update to the latest readline library.])
394 fi
paul3d3de8c2003-05-23 10:33:49 +0000395 AC_CHECK_LIB(readline, rl_completion_matches)
396 if test $ac_cv_lib_readline_rl_completion_matches = no; then
397 AC_DEFINE(rl_completion_matches,completion_matches,Old readline)
398 fi
399 ;;
paul7ea487b2003-03-17 02:05:07 +0000400 "no" ) VTYSH="";;
401 * ) ;;
402esac
403
404dnl ----------
405dnl PAM module
406dnl ----------
407if test "$with_libpam" = "yes"; then
paul24cd4352003-05-06 12:16:27 +0000408 AC_CHECK_HEADER(security/pam_misc.h)
409 if test "$ac_cv_header_security_pam_misc_h" = yes; then
410 AC_DEFINE(HAVE_PAM_MISC_H,,Have pam_misc.h)
411 AC_DEFINE(PAM_CONV_FUNC,misc_conv,Have misc_conv)
412 pam_conv_func="misc_conv"
paul24cd4352003-05-06 12:16:27 +0000413 fi
paul24cd4352003-05-06 12:16:27 +0000414 AC_CHECK_HEADER(security/openpam.h)
415 if test "$ac_cv_header_security_openpam_h" = yes; then
416 AC_DEFINE(HAVE_OPENPAM_H,,Have openpam.h)
417 AC_DEFINE(PAM_CONV_FUNC,openpam_ttyconv,Have openpam_ttyconv)
418 pam_conv_func="openpam_ttyconv"
paul24cd4352003-05-06 12:16:27 +0000419 fi
420 if test -z "$ac_cv_header_security_pam_misc_h$ac_cv_header_security_openpam_h" ; then
421 AC_MSG_WARN([*** pam support will not be built ***])
422 with_libpam="no"
423 fi
424fi
425
426if test "$with_libpam" = "yes"; then
paul7ea487b2003-03-17 02:05:07 +0000427dnl took this test from proftpd's configure.in and suited to our needs
428dnl -------------------------------------------------------------------------
429dnl
430dnl This next check looks funky due to a linker problem with some versions
431dnl of the PAM library. Prior to 0.72 release, the Linux PAM shared library
432dnl omitted requiring libdl linking information. PAM-0.72 or better ships
433dnl with RedHat 6.2 and Debian 2.2 or better.
434AC_CHECK_LIB(pam, pam_start,
paul24cd4352003-05-06 12:16:27 +0000435 [AC_CHECK_LIB(pam, $pam_conv_func,
paul7ea487b2003-03-17 02:05:07 +0000436 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
437 LIBPAM="-lpam"],
438 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
439 LIBPAM="-lpam -lpam_misc"]
440 )
441 ],
442
443 [AC_CHECK_LIB(pam, pam_end,
paul24cd4352003-05-06 12:16:27 +0000444 [AC_CHECK_LIB(pam, $pam_conv_func,
paula159ed92003-06-04 11:01:45 +0000445 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000446 LIBPAM="-lpam -ldl"],
paula159ed92003-06-04 11:01:45 +0000447 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000448 LIBPAM="-lpam -ldl -lpam_misc"]
449 )
450 ],AC_MSG_WARN([*** pam support will not be built ***]),
451 [-ldl])
452 ]
453)
454fi
455AC_SUBST(LIBPAM)
456
457dnl -------------------------------
458dnl Endian-ness check
459dnl -------------------------------
460AC_WORDS_BIGENDIAN
461
462dnl -------------------------------
463dnl check the size in byte of the C
464dnl -------------------------------
465dnl AC_CHECK_SIZEOF(char)
466dnl AC_CHECK_SIZEOF(int)
467dnl AC_CHECK_SIZEOF(short)
468dnl AC_CHECK_SIZEOF(long)
469
470dnl ----------------------------
471dnl check existance of functions
472dnl ----------------------------
paul49e3b3c2003-10-23 20:39:50 +0000473AC_CHECK_FUNCS(memset memcpy strerror inet_aton daemon snprintf vsnprintf \
paul04bd4842003-10-24 04:24:39 +0000474 strlcat strlcpy if_nametoindex if_indextoname getifaddrs \
ajs3cb98de2005-04-02 16:01:05 +0000475 fcntl strnlen)
paula159ed92003-06-04 11:01:45 +0000476AC_CHECK_FUNCS(setproctitle, ,
477 [AC_CHECK_LIB(util, setproctitle,
478 [LIBS="$LIBS -lutil"
479 AC_DEFINE(HAVE_SETPROCTITLE,, Have setproctitle)
480 ]
481 )
482 ]
483)
paul7ea487b2003-03-17 02:05:07 +0000484
485dnl ------------------------------------
486dnl Determine routing get and set method
487dnl ------------------------------------
488AC_MSG_CHECKING(zebra between kernel interface method)
489if test x"$opsys" = x"gnu-linux"; then
490 if test "${enable_netlink}" = "yes";then
491 AC_MSG_RESULT(netlink)
492 RT_METHOD=rt_netlink.o
493 AC_DEFINE(HAVE_NETLINK,,netlink)
494 netlink=yes
495 elif test "${enable_netlink}" = "no"; then
496 AC_MSG_RESULT(ioctl)
497 RT_METHOD=rt_ioctl.o
498 netlink=no
499 else
500 AC_MSG_RESULT(netlink)
501 RT_METHOD=rt_netlink.o
502 AC_DEFINE(HAVE_NETLINK,,netlink)
503 netlink=yes
504 fi
paul19877dd2004-05-11 10:49:35 +0000505elif test x"$opsys" = x"sol2-6";then
506 AC_MSG_RESULT(Route socket)
507 KERNEL_METHOD="kernel_socket.o"
508 RT_METHOD="rt_socket.o"
paulafd8a122005-03-12 06:36:10 +0000509elif test x"$opsys" = x"sol8";then
paul19877dd2004-05-11 10:49:35 +0000510 AC_MSG_RESULT(Route socket)
511 KERNEL_METHOD="kernel_socket.o"
512 RT_METHOD="rt_socket.o"
513elif test "$opsys" = "irix" ; then
514 AC_MSG_RESULT(Route socket)
515 KERNEL_METHOD="kernel_socket.o"
516 RT_METHOD="rt_socket.o"
paul7ea487b2003-03-17 02:05:07 +0000517else
paul19877dd2004-05-11 10:49:35 +0000518 AC_TRY_RUN([#include <errno.h>
paul7ea487b2003-03-17 02:05:07 +0000519#include <sys/types.h>
520#include <sys/socket.h>
521
522main ()
523{
524 int ac_sock;
525
526 ac_sock = socket (AF_ROUTE, SOCK_RAW, 0);
527 if (ac_sock < 0 && errno == EINVAL)
528 exit (1);
529 exit (0);
530}],
531 [KERNEL_METHOD=kernel_socket.o
532 RT_METHOD=rt_socket.o
533 AC_MSG_RESULT(socket)],
534 [RT_METHOD=rt_ioctl.o
535 AC_MSG_RESULT(ioctl)],
536 [KERNEL_METHOD=kernel_socket.o
537 RT_METHOD=rt_socket.o
538 AC_MSG_RESULT(socket)])
paul7ea487b2003-03-17 02:05:07 +0000539fi
540AC_SUBST(RT_METHOD)
541AC_SUBST(KERNEL_METHOD)
542AC_SUBST(OTHER_METHOD)
543
ajsb99760a2005-01-04 16:24:43 +0000544dnl ------------------------------------
545dnl check for broken CMSG_FIRSTHDR macro
546dnl ------------------------------------
gdt6c200462005-01-04 17:02:48 +0000547AC_MSG_CHECKING(for broken CMSG_FIRSTHDR)
hasso5b087522005-04-03 23:46:37 +0000548AC_RUN_IFELSE([AC_LANG_SOURCE([[
ajsb99760a2005-01-04 16:24:43 +0000549#ifdef SUNOS_5
550#define _XPG4_2
551#define __EXTENSIONS__
552#endif
553#include <stdlib.h>
554#include <sys/types.h>
555#include <sys/socket.h>
556
557main()
558{
559 struct msghdr msg;
560 char buf[4];
561
562 msg.msg_control = buf;
563 msg.msg_controllen = 0;
564
565 if (CMSG_FIRSTHDR(&msg) != NULL)
566 exit(0);
567 exit (1);
hasso5b087522005-04-03 23:46:37 +0000568}]])],[AC_MSG_RESULT(yes - using workaround) AC_DEFINE(HAVE_BROKEN_CMSG_FIRSTHDR,,Broken CMSG_FIRSTHDR)],
hassod33e8d72005-04-03 13:07:21 +0000569[AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)])
ajsb99760a2005-01-04 16:24:43 +0000570
paul7ea487b2003-03-17 02:05:07 +0000571dnl ------------------------------
572dnl check kernel route read method
573dnl ------------------------------
574AC_CACHE_CHECK(route read method check, zebra_rtread,
575[if test "$netlink" = yes; then
576 RTREAD_METHOD="rtread_netlink.o"
577 zebra_rtread="netlink"
578else
579for zebra_rtread in /proc/net/route /dev/ip /dev/null;
580do
581 test x`ls $zebra_rtread 2>/dev/null` = x"$zebra_rtread" && break
582done
583case $zebra_rtread in
584 "/proc/net/route") RTREAD_METHOD="rtread_proc.o"
585 zebra_rtread="proc";;
paul9c30ab62003-07-08 08:36:17 +0000586 "/dev/ip")
587 case "$host" in
588 *-freebsd*) RTREAD_METHOD=rtread_sysctl.o
589 zebra_rtread="sysctl";;
590 *) RTREAD_METHOD="rtread_getmsg.o"
591 zebra_rtread="getmsg";;
592 esac;;
paul7ea487b2003-03-17 02:05:07 +0000593 *) RTREAD_METHOD="rtread_sysctl.o"
594 zebra_rtread="sysctl";;
595esac
596fi])
597AC_SUBST(RTREAD_METHOD)
598
599dnl -----------------------------
600dnl check interface lookup method
601dnl -----------------------------
paul19877dd2004-05-11 10:49:35 +0000602IOCTL_METHOD=ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000603AC_MSG_CHECKING(interface looking up method)
604if test "$netlink" = yes; then
605 AC_MSG_RESULT(netlink)
606 IF_METHOD=if_netlink.o
paul19877dd2004-05-11 10:49:35 +0000607elif test "$opsys" = "sol2-6";then
608 AC_MSG_RESULT(Solaris GIF)
609 IF_METHOD=if_ioctl.o
paulafd8a122005-03-12 06:36:10 +0000610elif test "$opsys" = "sol8";then
paul19877dd2004-05-11 10:49:35 +0000611 AC_MSG_RESULT(Solaris GLIF)
612 IF_METHOD=if_ioctl_solaris.o
613 IOCTL_METHOD=ioctl_solaris.o
614elif test "$opsys" = "irix" ; then
615 AC_MSG_RESULT(IRIX)
616 IF_METHOD=if_ioctl.o
617elif test "$opsys" = "openbsd";then
618 AC_MSG_RESULT(openbsd)
619 IF_METHOD=if_ioctl.o
620elif grep NET_RT_IFLIST /usr/include/sys/socket.h >/dev/null 2>&1; then
621 AC_MSG_RESULT(sysctl)
paul7ea487b2003-03-17 02:05:07 +0000622 IF_METHOD=if_sysctl.o
623 AC_DEFINE(HAVE_NET_RT_IFLIST,,NET_RT_IFLIST)
paul19877dd2004-05-11 10:49:35 +0000624else
paul7ea487b2003-03-17 02:05:07 +0000625 AC_MSG_RESULT(ioctl)
626 IF_METHOD=if_ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000627fi
628AC_SUBST(IF_METHOD)
paul19877dd2004-05-11 10:49:35 +0000629AC_SUBST(IOCTL_METHOD)
paul7ea487b2003-03-17 02:05:07 +0000630
631dnl -----------------------
632dnl check proc file system.
633dnl -----------------------
634if test -r /proc/net/dev; then
635 AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev)
636 IF_PROC=if_proc.o
637fi
638
639if test -r /proc/net/if_inet6; then
640 AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6)
641 IF_PROC=if_proc.o
642fi
643AC_SUBST(IF_PROC)
644
645dnl -----------------------------
646dnl check ipforward detect method
647dnl -----------------------------
648AC_CACHE_CHECK(ipforward method check, zebra_ipforward_path,
649[for zebra_ipforward_path in /proc/net/snmp /dev/ip /dev/null;
650do
651 test x`ls $zebra_ipforward_path 2>/dev/null` = x"$zebra_ipforward_path" && break
652done
653case $zebra_ipforward_path in
654 "/proc/net/snmp") IPFORWARD=ipforward_proc.o
655 zebra_ipforward_path="proc";;
656 "/dev/ip")
657 case "$host" in
658 *-nec-sysv4*) IPFORWARD=ipforward_ews.o
659 zebra_ipforward_path="ews";;
paul9c30ab62003-07-08 08:36:17 +0000660 *-freebsd*) IPFORWARD=ipforward_sysctl.o
661 zebra_ipforward_path="sysctl";;
paul7ea487b2003-03-17 02:05:07 +0000662 *) IPFORWARD=ipforward_solaris.o
663 zebra_ipforward_path="solaris";;
664 esac;;
665 *) IPFORWARD=ipforward_sysctl.o
666 zebra_ipforward_path="sysctl";;
667esac])
668AC_SUBST(IPFORWARD)
669
670AC_CHECK_FUNCS(getaddrinfo, [have_getaddrinfo=yes], [have_getaddrinfo=no])
671
672dnl ----------
673dnl IPv6 check
674dnl ----------
675AC_MSG_CHECKING(whether does this OS have IPv6 stack)
676if test "${enable_ipv6}" = "no"; then
677 AC_MSG_RESULT(disabled)
678else
679dnl ----------
680dnl INRIA IPv6
681dnl ----------
paula159ed92003-06-04 11:01:45 +0000682 if grep IPV6_INRIA_VERSION /usr/include/netinet/in.h >/dev/null 2>&1; then
683 zebra_cv_ipv6=yes
684 AC_DEFINE(HAVE_IPV6,1,INRIA IPv6)
685 AC_DEFINE(INRIA_IPV6,1,INRIA IPv6)
686 RIPNGD="ripngd"
687 OSPF6D="ospf6d"
688 LIB_IPV6=""
689 AC_MSG_RESULT(INRIA IPv6)
paul7ea487b2003-03-17 02:05:07 +0000690dnl ---------
691dnl KAME IPv6
692dnl ---------
paula159ed92003-06-04 11:01:45 +0000693 elif grep WIDE /usr/include/netinet6/in6.h >/dev/null 2>&1; then
694 zebra_cv_ipv6=yes
695 AC_DEFINE(HAVE_IPV6,1,KAME IPv6)
696 AC_DEFINE(KAME,1,KAME IPv6)
697 RIPNGD="ripngd"
698 OSPF6D="ospf6d"
699 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
paul7ea487b2003-03-17 02:05:07 +0000700 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +0000701 fi
702 AC_MSG_RESULT(KAME)
hasso71c0fb52003-05-25 20:18:13 +0000703dnl -------------------------
704dnl MUSICA IPv6
705dnl default host check
706dnl It is not used by Kheops
707dnl -------------------------
paula159ed92003-06-04 11:01:45 +0000708 elif grep MUSICA /usr/include6/netinet6/in6.h >/dev/null 2>&1; then
709 zebra_cv_ipv6=yes
710 AC_DEFINE(HAVE_IPV6,1,Musicia IPv6)
711 AC_DEFINE(MUSICA,1,Musica IPv6 stack)
712 AC_DEFINE(KAME,1,KAME IPv6 stack)
713 RIPNGD="ripngd"
714 OSPF6D="ospf6d"
715 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
hasso71c0fb52003-05-25 20:18:13 +0000716 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +0000717 fi
718 AC_MSG_RESULT(MUSICA)
paul7ea487b2003-03-17 02:05:07 +0000719dnl ---------
720dnl NRL check
721dnl ---------
paula159ed92003-06-04 11:01:45 +0000722 elif grep NRL /usr/include/netinet6/in6.h >/dev/null 2>&1; then
723 zebra_cv_ipv6=yes
724 AC_DEFINE(HAVE_IPV6,1,NRL IPv6)
725 AC_DEFINE(NRL,1,NRL)
726 RIPNGD="ripngd"
727 OSPF6D="ospf6d"
728 if test x"$opsys" = x"bsdi";then
paul7ea487b2003-03-17 02:05:07 +0000729 AC_DEFINE(BSDI_NRL,,BSDI)
730 AC_MSG_RESULT(BSDI_NRL)
paula159ed92003-06-04 11:01:45 +0000731 else
paul7ea487b2003-03-17 02:05:07 +0000732 AC_MSG_RESULT(NRL)
paula159ed92003-06-04 11:01:45 +0000733 fi
paul19877dd2004-05-11 10:49:35 +0000734dnl ------------------------------------
735dnl Solaris 9, 10 and potentially higher
736dnl ------------------------------------
paulafd8a122005-03-12 06:36:10 +0000737 elif test x"$opsys" = x"sol8"; then
paul19877dd2004-05-11 10:49:35 +0000738 zebra_cv_ipv6=yes;
739 AC_DEFINE(HAVE_IPV6, 1, IPv6)
740 AC_DEFINE(SOLARIS_IPV6, 1, Solaris IPv6)
741 RIPNGD="ripngd"
742 OSPF6D="ospf6d"
743 AC_MSG_RESULT(Solaris IPv6)
paul7ea487b2003-03-17 02:05:07 +0000744dnl ----------
745dnl Linux IPv6
746dnl ----------
paula159ed92003-06-04 11:01:45 +0000747 elif test "${enable_ipv6}" = "yes"; then
748 AC_EGREP_CPP(yes, [
749 #include <linux/version.h>
750 /* 2.1.128 or later */
751 #if LINUX_VERSION_CODE >= 0x020180
752 yes
753 #endif],
754 [zebra_cv_ipv6=yes
755 zebra_cv_linux_ipv6=yes
756 AC_MSG_RESULT(Linux IPv6)])
757 else
758 if test x`ls /proc/net/ipv6_route 2>/dev/null` = x"/proc/net/ipv6_route"
759 then
paul7ea487b2003-03-17 02:05:07 +0000760 zebra_cv_ipv6=yes
761 zebra_cv_linux_ipv6=yes
762 AC_MSG_RESULT(Linux IPv6)
paula159ed92003-06-04 11:01:45 +0000763 fi
764 fi
paul7ea487b2003-03-17 02:05:07 +0000765
paula159ed92003-06-04 11:01:45 +0000766 if test "$zebra_cv_linux_ipv6" = "yes";then
767 AC_MSG_CHECKING(for GNU libc >= 2.1)
768 AC_DEFINE(HAVE_IPV6,1,Linux IPv6)
769 AC_EGREP_CPP(yes, [
paul7ea487b2003-03-17 02:05:07 +0000770#include <features.h>
771#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
772 yes
paula159ed92003-06-04 11:01:45 +0000773#endif],
774 [glibc=yes
775 AC_DEFINE(LINUX_IPV6,1,Linux IPv6 stack)
776 AC_MSG_RESULT(yes)],
777 AC_MSG_RESULT(no)
778 )
779 RIPNGD="ripngd"
780 OSPF6D="ospf6d"
781 if test "$glibc" != "yes"; then
paul7ea487b2003-03-17 02:05:07 +0000782 INCLUDES="-I/usr/inet6/include"
783 if test x`ls /usr/inet6/lib/libinet6.a 2>/dev/null` != x;then
784 LIB_IPV6="-L/usr/inet6/lib -linet6"
785 fi
paula159ed92003-06-04 11:01:45 +0000786 fi
787 fi
paul7ea487b2003-03-17 02:05:07 +0000788
789dnl -----------------------
790dnl Set IPv6 related values
791dnl -----------------------
paula159ed92003-06-04 11:01:45 +0000792 LIBS="$LIB_IPV6 $LIBS"
793 AC_SUBST(LIB_IPV6)
paul7ea487b2003-03-17 02:05:07 +0000794
paula159ed92003-06-04 11:01:45 +0000795 if test x"$RIPNGD" = x""; then
796 AC_MSG_RESULT(IPv4 only)
797 fi
paul7ea487b2003-03-17 02:05:07 +0000798fi
799
gdtfa3232e2003-12-03 17:52:30 +0000800dnl ------------------
801dnl IPv6 header checks
802dnl ------------------
803if test "x${zebra_cv_ipv6}" = "xyes"; then
804AC_CHECK_HEADERS([netinet6/in6.h netinet/in6_var.h netinet/icmp6.h \
805 netinet6/in6_var.h netinet6/nd6.h])
806fi
807
paul7ea487b2003-03-17 02:05:07 +0000808dnl --------------------
809dnl Daemon disable check
810dnl --------------------
811if test "${enable_zebra}" = "no";then
812 ZEBRA=""
813else
814 ZEBRA="zebra"
815fi
816
817if test "${enable_bgpd}" = "no";then
818 BGPD=""
819else
820 BGPD="bgpd"
821fi
822
823if test "${enable_ripd}" = "no";then
824 RIPD=""
825else
826 RIPD="ripd"
827fi
828
829if test "${enable_ospfd}" = "no";then
830 OSPFD=""
831else
832 OSPFD="ospfd"
833fi
834
ajsd0199432004-12-22 14:03:52 +0000835if test "${enable_watchquagga}" = "no";then
836 WATCHQUAGGA=""
837else
838 WATCHQUAGGA="watchquagga"
839fi
840
paul1ef74ef2003-03-21 15:16:05 +0000841OSPFCLIENT=""
842if test "${enable_opaque_lsa}" = "yes"; then
843 if test "${enable_ospfapi}" != "no";then
paul9a569842003-03-28 01:45:13 +0000844 AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI)
paul1ef74ef2003-03-21 15:16:05 +0000845
846 if test "${enable_ospfclient}" != "no";then
847 OSPFCLIENT="ospfclient"
848 fi
849 fi
850
paul7ea487b2003-03-17 02:05:07 +0000851fi
852
853case "${enable_ripngd}" in
854 "yes") RIPNGD="ripngd";;
855 "no" ) RIPNGD="";;
856 * ) ;;
857esac
858
859case "${enable_ospf6d}" in
860 "yes") OSPF6D="ospf6d";;
861 "no" ) OSPF6D="";;
862 * ) ;;
863esac
864
jardin9e867fe2003-12-23 08:56:18 +0000865case "${enable_isisd}" in
866 "yes") ISISD="isisd";;
867 "no" ) ISISD="";;
hassoae399ab2004-09-13 20:22:18 +0000868 * ) ;;
jardin9e867fe2003-12-23 08:56:18 +0000869esac
870
paul7ea487b2003-03-17 02:05:07 +0000871if test "${enable_bgp_announce}" = "no";then
872 AC_DEFINE(DISABLE_BGP_ANNOUNCE,,Disable BGP installation to zebra)
873fi
874
875AC_SUBST(ZEBRA)
876AC_SUBST(BGPD)
877AC_SUBST(RIPD)
878AC_SUBST(RIPNGD)
879AC_SUBST(OSPFD)
880AC_SUBST(OSPF6D)
ajsd0199432004-12-22 14:03:52 +0000881AC_SUBST(WATCHQUAGGA)
jardin9e867fe2003-12-23 08:56:18 +0000882AC_SUBST(ISISD)
paul7ea487b2003-03-17 02:05:07 +0000883AC_SUBST(VTYSH)
884AC_SUBST(INCLUDES)
885AC_SUBST(CURSES)
886AC_SUBST(OSPFCLIENT)
paul1ef74ef2003-03-21 15:16:05 +0000887AC_SUBST(OSPFAPI)
paul7ea487b2003-03-17 02:05:07 +0000888AC_CHECK_LIB(c, inet_ntop, [AC_DEFINE(HAVE_INET_NTOP,,inet_ntop)])
889AC_CHECK_LIB(c, inet_pton, [AC_DEFINE(HAVE_INET_PTON,,inet_pton)])
890AC_CHECK_LIB(crypt, crypt)
891AC_CHECK_LIB(resolv, res_init)
892AC_CHECK_LIB(m, main)
893
894dnl ---------------------------------------------------
895dnl BSD/OS 4.1 define inet_XtoY function as __inet_XtoY
896dnl ---------------------------------------------------
paula159ed92003-06-04 11:01:45 +0000897AC_CHECK_FUNC(__inet_ntop, AC_DEFINE(HAVE_INET_NTOP,,__inet_ntop))
898AC_CHECK_FUNC(__inet_pton, AC_DEFINE(HAVE_INET_PTON,,__inet_pton))
899AC_CHECK_FUNC(__inet_aton, AC_DEFINE(HAVE_INET_ATON,,__inet_aton))
paul7ea487b2003-03-17 02:05:07 +0000900
901dnl ---------------------------
902dnl check system has GNU regexp
903dnl ---------------------------
904dnl AC_MSG_CHECKING(whether system has GNU regex)
905AC_CHECK_LIB(c, regexec,
906[AC_DEFINE(HAVE_GNU_REGEX,,GNU regexp library)
907 LIB_REGEX=""],
908[LIB_REGEX="regex.o"])
909AC_SUBST(LIB_REGEX)
910
911dnl ------------------
912dnl check SNMP library
913dnl ------------------
914if test "${enable_snmp}" = "yes";then
915dnl AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
paul7ea487b2003-03-17 02:05:07 +0000916 if test "${HAVE_SNMP}" = ""; then
paul1ef74ef2003-03-21 15:16:05 +0000917 old_libs="${LIBS}"
918 LIBS="-L/usr/lib"
paul7ea487b2003-03-17 02:05:07 +0000919 unset ac_cv_lib_snmp_asn_parse_int
paul1ef74ef2003-03-21 15:16:05 +0000920 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
921 if test "${NEED_CRYPTO}" = ""; then
922 AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes ])
923 else
924 AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes; NEED_CRYPTO=yes;LIBS="$LIBS -lcrypto" ],,"-lcrypto")
925 fi
926 LIBS="${old_libs}"
paul7ea487b2003-03-17 02:05:07 +0000927 fi
paul1ef74ef2003-03-21 15:16:05 +0000928 if test "${HAVE_SNMP}" = ""; then
929 old_libs="${LIBS}"
930 LIBS="-L/usr/lib"
931 unset ac_cv_lib_snmp_asn_parse_int
932 AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes, )
933 if test "${HAVE_SNMP}" = ""; then
934 unset ac_cv_lib_snmp_asn_parse_int
935 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
936 if test "${NEED_CRYPTO}" = "yes"; then
937 AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
938 fi
939 fi
940 LIBS="${old_libs}"
941 fi
paul7ea487b2003-03-17 02:05:07 +0000942
943 if test "${HAVE_SNMP}" = ""; then
paul1ef74ef2003-03-21 15:16:05 +0000944 old_libs="${LIBS}"
945 LIBS="-L/usr/local/lib"
946 unset ac_cv_lib_snmp_asn_parse_int
947 AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
948 if test "${HAVE_SNMP}" = ""; then
949 unset ac_cv_lib_snmp_asn_parse_int
950 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
951 if test "${NEED_CRYPTO}" = "yes"; then
952 AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
953 fi
954 fi
955 LIBS="${old_libs}"
paul7ea487b2003-03-17 02:05:07 +0000956 fi
paul1ef74ef2003-03-21 15:16:05 +0000957
paul7ea487b2003-03-17 02:05:07 +0000958 if test "${HAVE_SNMP}" = "yes"; then
959 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
960 do
961 test -f "${ac_snmp}" && break
962 done
paul1ef74ef2003-03-21 15:16:05 +0000963
paul7ea487b2003-03-17 02:05:07 +0000964 case ${ac_snmp} in
965 /usr/include/net-snmp/*)
966 AC_DEFINE(HAVE_SNMP,,SNMP)
paul1ef74ef2003-03-21 15:16:05 +0000967 AC_DEFINE(HAVE_NETSNMP,,SNMP)
paul7ea487b2003-03-17 02:05:07 +0000968 AC_DEFINE(UCD_COMPATIBLE,,SNMP)
hasso2d582282005-03-28 15:29:07 +0000969 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/net-snmp -I/usr/include/net-snmp/library"
paulac7c4bb2003-03-19 04:25:08 +0000970 if test "${HAVE_NETSNMP}" = "yes"; then
paul1ef74ef2003-03-21 15:16:05 +0000971 LIBS="${LIBS} -lnetsnmp"
paulac7c4bb2003-03-19 04:25:08 +0000972 else
paul1ef74ef2003-03-21 15:16:05 +0000973 LIBS="${LIBS} -lsnmp"
paulac7c4bb2003-03-19 04:25:08 +0000974 fi
paul7ea487b2003-03-17 02:05:07 +0000975 ;;
976 /usr/include/ucd-snmp/*)
977 AC_DEFINE(HAVE_SNMP,,SNMP)
hasso2d582282005-03-28 15:29:07 +0000978 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/ucd-snmp"
paul7ea487b2003-03-17 02:05:07 +0000979 LIBS="${LIBS} -lsnmp"
980 ;;
981 /usr/local/include/ucd-snmp/*)
982 AC_DEFINE(HAVE_SNMP,,SNMP)
hasso2d582282005-03-28 15:29:07 +0000983 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/ucd-snmp"
paul7ea487b2003-03-17 02:05:07 +0000984 LIBS="${LIBS} -L/usr/local/lib -lsnmp"
985 ;;
paulf3bd1a72003-11-02 07:29:11 +0000986 /usr/local/include/net-snmp/*)
987 AC_DEFINE(HAVE_SNMP,,SNMP)
988 AC_DEFINE(HAVE_NET_SNMP,,SNMP)
989 AC_DEFINE(UCD_COMPATIBLE,,SNMP)
hasso2d582282005-03-28 15:29:07 +0000990 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/net-snmp"
paulf3bd1a72003-11-02 07:29:11 +0000991 LIBS="${LIBS} -L/usr/local/lib -lnetsnmp"
992 ;;
paul7ea487b2003-03-17 02:05:07 +0000993 esac
994 if test "${NEED_CRYPTO}" = "yes"; then
995 LIBS="${LIBS} -lcrypto"
996 fi
997 fi
998fi
999
ajs6cf9df02005-01-12 16:52:55 +00001000if test "${enable_snmp}" = "yes" -a "${HAVE_SNMP}" != "yes"; then
1001 AC_MSG_ERROR([--enable-snmp given, but cannot find support for SNMP])
1002fi
1003
hasso2d582282005-03-28 15:29:07 +00001004AC_SUBST(SNMP_INCLUDES)
1005
paul7ea487b2003-03-17 02:05:07 +00001006dnl ----------------------------
1007dnl check sa_len of sockaddr
1008dnl ----------------------------
1009AC_MSG_CHECKING(whether struct sockaddr has a sa_len field)
1010AC_TRY_COMPILE([#include <sys/types.h>
1011#include <sys/socket.h>
1012],[static struct sockaddr ac_i;int ac_j = sizeof (ac_i.sa_len);],
1013[AC_MSG_RESULT(yes)
1014 AC_DEFINE(HAVE_SA_LEN,,sa_len)],
1015 AC_MSG_RESULT(no))
1016
1017dnl ----------------------------
1018dnl check sin_len of sockaddr_in
1019dnl ----------------------------
1020AC_MSG_CHECKING(whether struct sockaddr_in has a sin_len field)
1021AC_TRY_COMPILE([#include <sys/types.h>
1022#include <netinet/in.h>
1023],[static struct sockaddr_in ac_i;int ac_j = sizeof (ac_i.sin_len);],
1024[AC_MSG_RESULT(yes)
1025 AC_DEFINE(HAVE_SIN_LEN,,sin_len)],
1026 AC_MSG_RESULT(no))
1027
1028dnl ----------------------------
1029dnl check sun_len of sockaddr_un
1030dnl ----------------------------
1031AC_MSG_CHECKING(whether struct sockaddr_un has a sun_len field)
1032AC_TRY_COMPILE([#include <sys/types.h>
1033#include <sys/un.h>
1034],[static struct sockaddr_un ac_i;int ac_j = sizeof (ac_i.sun_len);],
1035[AC_MSG_RESULT(yes)
1036 AC_DEFINE(HAVE_SUN_LEN,,sun_len)],
1037 AC_MSG_RESULT(no))
1038
1039dnl -----------------------------------
1040dnl check sin6_scope_id of sockaddr_in6
1041dnl -----------------------------------
1042if test "$zebra_cv_ipv6" = yes; then
1043 AC_MSG_CHECKING(whether struct sockaddr_in6 has a sin6_scope_id field)
1044 AC_TRY_COMPILE([#include <sys/types.h>
1045#include <netinet/in.h>
1046],[static struct sockaddr_in6 ac_i;int ac_j = sizeof (ac_i.sin6_scope_id);],
1047[AC_MSG_RESULT(yes)
1048 AC_DEFINE(HAVE_SIN6_SCOPE_ID,,scope id)],
1049 AC_MSG_RESULT(no))
1050fi
1051
1052dnl ----------------------------
1053dnl check socklen_t exist or not
1054dnl ----------------------------
1055AC_MSG_CHECKING(whther socklen_t is defined)
1056AC_TRY_COMPILE([#include <sys/types.h>
1057#include <sys/socket.h>
1058#include <netinet/in.h>
1059],[socklen_t ac_x;],
1060[AC_MSG_RESULT(yes)
1061 AC_DEFINE(HAVE_SOCKLEN_T,,socklen_t)],
1062 AC_MSG_RESULT(no))
1063
1064dnl ------------------------
1065dnl check struct sockaddr_dl
1066dnl ------------------------
1067AC_MSG_CHECKING(whether struct sockaddr_dl exist)
1068AC_EGREP_HEADER(sockaddr_dl,
1069net/if_dl.h,
1070[AC_MSG_RESULT(yes)
1071 AC_DEFINE(HAVE_SOCKADDR_DL,,sockaddr_dl)],
1072 AC_MSG_RESULT(no))
1073
1074dnl --------------------------
1075dnl check structure ifaliasreq
1076dnl --------------------------
1077AC_MSG_CHECKING(whether struct ifaliasreq exist)
1078AC_EGREP_HEADER(ifaliasreq,
1079net/if.h,
1080[AC_MSG_RESULT(yes)
1081 AC_DEFINE(HAVE_IFALIASREQ,,ifaliasreq)],
1082 AC_MSG_RESULT(no))
1083
1084dnl ----------------------------
1085dnl check structure in6_aliasreq
1086dnl ----------------------------
hasso71c0fb52003-05-25 20:18:13 +00001087AC_MSG_CHECKING(whether struct in6_aliasreq exist)
paul7ea487b2003-03-17 02:05:07 +00001088AC_EGREP_HEADER(in6_aliasreq,
1089netinet6/in6_var.h,
1090[AC_MSG_RESULT(yes)
1091 AC_DEFINE(HAVE_IN6_ALIASREQ,,in6_aliasreq)],
1092 AC_MSG_RESULT(no))
1093
hasso71c0fb52003-05-25 20:18:13 +00001094dnl -----------------------------------
1095dnl check ifra_lifetime of in6_aliasreq
1096dnl -----------------------------------
1097AC_MSG_CHECKING(whether in6_aliasreq.ifra_lifetime exist)
1098AC_TRY_COMPILE([#include <sys/types.h>
1099#include <netinet6/in6_var.h>
1100],[static struct if6_aliasreq ac_i;int ac_j = sizeof (ac_i.ifra_lifetime);],
1101[AC_MSG_RESULT(yes)
paula159ed92003-06-04 11:01:45 +00001102 AC_DEFINE(HAVE_IFRA_LIFETIME,,Have in6_aliasreq.ifra_lifetime)],
hasso71c0fb52003-05-25 20:18:13 +00001103 AC_MSG_RESULT(no))
1104
paul7ea487b2003-03-17 02:05:07 +00001105dnl ---------------------------
1106dnl check structure rt_addrinfo
1107dnl ---------------------------
1108AC_MSG_CHECKING(whether struct rt_addrinfo exist)
1109AC_EGREP_HEADER(rt_addrinfo,
1110net/route.h,
1111[AC_MSG_RESULT(yes)
1112 AC_DEFINE(HAVE_RT_ADDRINFO,,rt_addrinfo)],
1113 AC_MSG_RESULT(no))
1114
1115dnl --------------------------
1116dnl check structure in_pktinfo
1117dnl --------------------------
1118AC_MSG_CHECKING(whether struct in_pktinfo exist)
1119AC_TRY_COMPILE([#include <netinet/in.h>
1120],[struct in_pktinfo ac_x;],
1121[AC_MSG_RESULT(yes)
1122 AC_DEFINE(HAVE_INPKTINFO,,in_pktinfo)],
1123 AC_MSG_RESULT(no))
1124
vincent29c4c9b2005-03-25 13:05:47 +00001125dnl ----------------------------------
1126dnl check struct nd_opt_homeagent_info
1127dnl ----------------------------------
1128AC_MSG_CHECKING(whether struct nd_opt_homeagent_info exist)
1129AC_EGREP_HEADER(nd_opt_homeagent_info,
1130netinet/icmp6.h,
1131[AC_MSG_RESULT(yes)
1132 AC_DEFINE(HAVE_ND_OPT_HOMEAGENT_INFO,,nd_opt_homeagent_info)],
1133 AC_MSG_RESULT(no))
1134
1135dnl --------------------------------
1136dnl check struct nd_opt_adv_interval
1137dnl --------------------------------
1138AC_MSG_CHECKING(whether struct nd_opt_adv_interval exist)
1139AC_EGREP_HEADER(nd_opt_adv_interval,
1140netinet/icmp6.h,
1141[AC_MSG_RESULT(yes)
1142 AC_DEFINE(HAVE_ND_OPT_ADV_INTERVAL,,nd_opt_adv_interval)],
1143 AC_MSG_RESULT(no))
1144
1145dnl ------------------------------------
1146dnl check fields in nd_opt_adv_interval
1147dnl ------------------------------------
1148AC_MSG_CHECKING(whether nd_opt_ai_type field exist)
1149AC_EGREP_HEADER(nd_opt_ai_type,
1150netinet/icmp6.h,
1151[AC_MSG_RESULT(yes)
1152 AC_DEFINE(HAVE_ND_OPT_ADV_INTERVAL_AI_FIELDS,,nd_opt_ai_type)],
1153 AC_MSG_RESULT(no))
1154
paul7ea487b2003-03-17 02:05:07 +00001155dnl --------------------------------------
1156dnl checking for getrusage struct and call
1157dnl --------------------------------------
1158AC_MSG_CHECKING(whether getrusage is available)
1159AC_TRY_COMPILE([#include <sys/resource.h>
1160],[struct rusage ac_x; getrusage (RUSAGE_SELF, &ac_x);],
1161[AC_MSG_RESULT(yes)
1162 AC_DEFINE(HAVE_RUSAGE,,rusage)],
1163 AC_MSG_RESULT(no))
1164
pauledd7c242003-06-04 13:59:38 +00001165dnl -------------------
1166dnl capabilities checks
1167dnl -------------------
hasso41d3fc92004-04-06 11:59:00 +00001168if test "${enable_capabilities}" != "no"; then
1169 AC_MSG_CHECKING(whether prctl PR_SET_KEEPCAPS is available)
1170 AC_TRY_COMPILE([#include <sys/prctl.h>],[prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);],
1171 [AC_MSG_RESULT(yes)
1172 AC_DEFINE(HAVE_PR_SET_KEEPCAPS,,prctl)
1173 quagga_ac_keepcaps="yes"],
1174 AC_MSG_RESULT(no)
pauledd7c242003-06-04 13:59:38 +00001175 )
hasso41d3fc92004-04-06 11:59:00 +00001176 if test x"${quagga_ac_keepcaps}" = x"yes"; then
1177 AC_CHECK_HEADERS(sys/capability.h)
1178 fi
1179 if test x"${ac_cv_header_sys_capability_h}" = x"yes"; then
1180 AC_CHECK_LIB(cap, cap_init,
1181 [AC_DEFINE(HAVE_LCAPS,1,Capabilities)
1182 LIBCAP="-lcap"
1183 ]
1184 )
1185 fi
pauledd7c242003-06-04 13:59:38 +00001186fi
1187AC_SUBST(LIBCAP)
1188
ajs40abf232005-01-12 17:27:27 +00001189dnl -------------------
1190dnl test for ucontext.h
1191dnl -------------------
1192AC_CHECK_HEADERS(ucontext.h)
1193
paulfb2d1502003-06-04 09:40:54 +00001194dnl ---------------------------
1195dnl check for glibc 'backtrace'
1196dnl ---------------------------
1197if test "${glibc}" = "yes"; then
1198 AC_CHECK_HEADER(execinfo.h)
1199fi
1200if test x"${ac_cv_header_execinfo_h}" = x"yes"; then
1201 AC_CHECK_FUNC(backtrace,
1202 [AC_DEFINE(HAVE_GLIBC_BACKTRACE,,Glibc backtrace)]
1203 )
1204fi
1205
paul408ad942003-05-20 00:03:33 +00001206dnl ----------
1207dnl configure date
1208dnl ----------
1209CONFDATE=`date '+%Y%m%d'`
1210AC_SUBST(CONFDATE)
1211
paul7ea487b2003-03-17 02:05:07 +00001212dnl ------------------------------
paula159ed92003-06-04 11:01:45 +00001213dnl set paths for state directory
paul23bd12c2003-04-07 06:11:09 +00001214dnl ------------------------------
1215if test "${prefix}" = "NONE"; then
paule8f29842003-08-12 13:08:31 +00001216 quagga_statedir_prefix="";
paul23bd12c2003-04-07 06:11:09 +00001217else
paule8f29842003-08-12 13:08:31 +00001218 quagga_statedir_prefix=${prefix}
paul23bd12c2003-04-07 06:11:09 +00001219fi
1220if test "${localstatedir}" = '${prefix}/var'; then
paula159ed92003-06-04 11:01:45 +00001221 AC_CACHE_CHECK(state directory,ac_statedir,
paule8f29842003-08-12 13:08:31 +00001222 [for QUAGGA_STATE_DIR in ${quagga_statedir_prefix}/var/run dnl
1223 ${quagga_statedir_prefix}/var/adm dnl
1224 ${quagga_statedir_prefix}/etc dnl
paula159ed92003-06-04 11:01:45 +00001225 /var/run dnl
1226 /var/adm dnl
1227 /etc dnl
1228 /dev/null;
paul23bd12c2003-04-07 06:11:09 +00001229 do
paule8f29842003-08-12 13:08:31 +00001230 test -d $QUAGGA_STATE_DIR && break
paul23bd12c2003-04-07 06:11:09 +00001231 done
paule8f29842003-08-12 13:08:31 +00001232 quagga_statedir=$QUAGGA_STATE_DIR])
paul23bd12c2003-04-07 06:11:09 +00001233else
paule8f29842003-08-12 13:08:31 +00001234 quagga_statedir=${localstatedir}
paula159ed92003-06-04 11:01:45 +00001235 AC_MSG_CHECKING(directory to use for state file)
paule8f29842003-08-12 13:08:31 +00001236 AC_MSG_RESULT(${quagga_statedir})
paul23bd12c2003-04-07 06:11:09 +00001237fi
paule8f29842003-08-12 13:08:31 +00001238if test $quagga_statedir = "/dev/null"; then
paula159ed92003-06-04 11:01:45 +00001239 AC_MSG_ERROR('STATE DIRECTORY NOT FOUND! FIX OR SPECIFY --localstatedir!')
1240fi
1241
paule8f29842003-08-12 13:08:31 +00001242AC_DEFINE_UNQUOTED(PATH_ZEBRA_PID, "$quagga_statedir/zebra.pid",zebra PID)
1243AC_DEFINE_UNQUOTED(PATH_RIPD_PID, "$quagga_statedir/ripd.pid",ripd PID)
1244AC_DEFINE_UNQUOTED(PATH_RIPNGD_PID, "$quagga_statedir/ripngd.pid",ripngd PID)
1245AC_DEFINE_UNQUOTED(PATH_BGPD_PID, "$quagga_statedir/bgpd.pid",bgpd PID)
1246AC_DEFINE_UNQUOTED(PATH_OSPFD_PID, "$quagga_statedir/ospfd.pid",ospfd PID)
1247AC_DEFINE_UNQUOTED(PATH_OSPF6D_PID, "$quagga_statedir/ospf6d.pid",ospf6d PID)
jardin9e867fe2003-12-23 08:56:18 +00001248AC_DEFINE_UNQUOTED(PATH_ISISD_PID, "$quagga_statedir/isisd.pid",isisd PID)
ajsd0199432004-12-22 14:03:52 +00001249AC_DEFINE_UNQUOTED(PATH_WATCHQUAGGA_PID, "$quagga_statedir/watchquagga.pid",watchquagga PID)
paule8f29842003-08-12 13:08:31 +00001250AC_DEFINE_UNQUOTED(ZEBRA_SERV_PATH, "$quagga_statedir/zserv.api",zebra api socket)
1251AC_DEFINE_UNQUOTED(ZEBRA_VTYSH_PATH, "$quagga_statedir/zebra.vty",zebra vty socket)
1252AC_DEFINE_UNQUOTED(RIP_VTYSH_PATH, "$quagga_statedir/ripd.vty",rip vty socket)
1253AC_DEFINE_UNQUOTED(RIPNG_VTYSH_PATH, "$quagga_statedir/ripngd.vty",ripng vty socket)
1254AC_DEFINE_UNQUOTED(BGP_VTYSH_PATH, "$quagga_statedir/bgpd.vty",bgpd vty socket)
1255AC_DEFINE_UNQUOTED(OSPF_VTYSH_PATH, "$quagga_statedir/ospfd.vty",ospfd vty socket)
1256AC_DEFINE_UNQUOTED(OSPF6_VTYSH_PATH, "$quagga_statedir/ospf6d.vty",ospf6d vty socket)
jardin9e867fe2003-12-23 08:56:18 +00001257AC_DEFINE_UNQUOTED(ISIS_VTYSH_PATH, "$quagga_statedir/isisd.vty",isisd vty socket)
ajs515210b2004-12-22 15:35:12 +00001258AC_DEFINE_UNQUOTED(DAEMON_VTY_DIR, "$quagga_statedir",daemon vty directory)
paul7ea487b2003-03-17 02:05:07 +00001259
paul1eb8ef22005-04-07 07:30:20 +00001260dnl -------------------------------
1261dnl Quagga sources should always be
1262dnl current wrt interfaces. Dont
1263dnl allow deprecated interfaces to
1264dnl be exposed.
1265dnl -------------------------------
1266AC_DEFINE(QUAGGA_NO_DEPRECATED_INTERFACES, 1, Hide deprecated interfaces)
1267
paul7ea487b2003-03-17 02:05:07 +00001268dnl ---------------------------
1269dnl Check htonl works correctly
1270dnl ---------------------------
1271AC_MSG_CHECKING(for working htonl)
1272AC_CACHE_VAL(ac_cv_htonl_works, [
1273AC_TRY_LINK([#ifdef HAVE_SYS_TYPES_H
1274#include <sys/types.h>
1275#endif
1276#ifdef HAVE_NETDB_H
1277#include <netdb.h>
1278#endif
1279#ifdef HAVE_NETINET_IN_H
1280#include <netinet/in.h>
1281#endif],
1282[htonl (0);],
1283ac_cv_htonl_works=yes,
1284ac_cv_htonl_works=no)])
1285AC_MSG_RESULT($ac_cv_htonl_works)
1286
paul14c17fd2004-11-07 22:34:23 +00001287AC_CONFIG_FILES([Makefile lib/Makefile zebra/Makefile ripd/Makefile
ajsd0199432004-12-22 14:03:52 +00001288 ripngd/Makefile bgpd/Makefile ospfd/Makefile watchquagga/Makefile
jardin9e867fe2003-12-23 08:56:18 +00001289 ospf6d/Makefile isisd/Makefile vtysh/Makefile doc/Makefile
paul14c17fd2004-11-07 22:34:23 +00001290 ospfclient/Makefile tests/Makefile m4/Makefile redhat/Makefile
gdt69f1fc22004-08-27 15:57:35 +00001291 pkgsrc/Makefile
paul670bbf12004-11-12 09:05:00 +00001292 redhat/quagga.spec
gdtb7a97f82004-07-23 16:23:56 +00001293 lib/version.h
paul14c17fd2004-11-07 22:34:23 +00001294 doc/defines.texi
hassof695b012005-04-02 19:03:39 +00001295 isisd/topology/Makefile
gdtcbd04082004-08-31 18:16:36 +00001296 pkgsrc/bgpd.sh pkgsrc/ospf6d.sh pkgsrc/ospfd.sh
paulf31293a2004-11-12 09:27:04 +00001297 pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh])
paul670bbf12004-11-12 09:05:00 +00001298AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl])
hasso48577192004-11-19 06:41:49 +00001299## Hack, but working solution to avoid rebuilding of quagga.info.
1300## It's already in CVS until texinfo 4.7 is more common.
1301AC_CONFIG_COMMANDS([info-time],[touch doc/quagga.info])
paul14c17fd2004-11-07 22:34:23 +00001302AC_OUTPUT
paul7ea487b2003-03-17 02:05:07 +00001303
1304echo "
hassoc89f6492004-08-26 12:21:28 +00001305Quagga configuration
1306--------------------
1307quagga version : ${PACKAGE_VERSION}
paul7ea487b2003-03-17 02:05:07 +00001308host operationg system : ${host_os}
1309source code location : ${srcdir}
1310compiler : ${CC}
1311compiler flags : ${CFLAGS}
hasso2d582282005-03-28 15:29:07 +00001312includes : ${INCLUDES} ${SNMP_INCLUDES}
hasso71c0fb52003-05-25 20:18:13 +00001313linker flags : ${LDFLAGS} ${LIBS}
paule8f29842003-08-12 13:08:31 +00001314state file directory : ${quagga_statedir}
pauldc7a2bf2003-10-22 00:07:44 +00001315config file directory : `eval echo \`echo ${sysconfdir}\``
gdtd6b72f72003-12-03 17:24:27 +00001316example directory : `eval echo \`echo ${exampledir}\``
paul8d4aee52003-06-06 00:30:35 +00001317user to run as : ${enable_user}
1318group to run as : ${enable_group}
1319group for vty sockets : ${enable_vty_group}
gdtaa593d52003-12-22 20:15:53 +00001320config file mask : ${enable_configfile_mask}
1321log file mask : ${enable_logfile_mask}
pauldc7a2bf2003-10-22 00:07:44 +00001322
1323The above user and group must have read/write access to the state file
1324directory and to the config files in the config file directory.
paul7ea487b2003-03-17 02:05:07 +00001325"