blob: 7c6258a1b9e04513d9d4f72a845320c557b195f4 [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##
hassof695b012005-04-02 19:03:39 +00008## $Id: configure.ac,v 1.96 2005/04/02 19:03:39 hasso 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 ;;
paul19877dd2004-05-11 10:49:35 +0000326 [*-sunos5.[8-9]] | [*-sunos5.1[0-9]] \
327 | [*-solaris2.[8-9]] | [*-solaris2.1[0-9]])
paulafd8a122005-03-12 06:36:10 +0000328 opsys=sol8
329 AC_DEFINE(SUNOS_59,,SunOS 5.8 up)
paul19877dd2004-05-11 10:49:35 +0000330 AC_DEFINE(SUNOS_5, 1, SunOS 5)
331 AC_CHECK_LIB(socket, main)
332 AC_CHECK_LIB(nsl, main)
333 CURSES=-lcurses
334 ;;
paul7ea487b2003-03-17 02:05:07 +0000335 *-sunos5* | *-solaris2*)
paul19877dd2004-05-11 10:49:35 +0000336 AC_DEFINE(SUNOS_5,,SunOS 5, Unknown SunOS)
paul7ea487b2003-03-17 02:05:07 +0000337 AC_CHECK_LIB(socket, main)
338 AC_CHECK_LIB(nsl, main)
339 CURSES=-lcurses
340 ;;
hassoc45eb832005-02-19 13:58:06 +0000341 *-linux*)
paul7ea487b2003-03-17 02:05:07 +0000342 opsys=gnu-linux
343 AC_DEFINE(GNU_LINUX,,GNU Linux)
344 ;;
345 *-nec-sysv4*)
346 AC_CHECK_LIB(nsl, gethostbyname)
347 AC_CHECK_LIB(socket, socket)
348 ;;
349 *-freebsd3.2)
350 AC_DEFINE(FREEBSD_32,,FreeBSD 3.2)
351 ;;
352 *-openbsd*)
353 opsys=openbsd
354 AC_DEFINE(OPEN_BSD,,OpenBSD)
355 ;;
356 *-bsdi*)
357 opsys=bsdi
358 OTHER_METHOD="mtu_kvm.o"
359 AC_CHECK_LIB(kvm, main)
360 ;;
paul49e3b3c2003-10-23 20:39:50 +0000361 *-irix6.5)
pauldc7a2bf2003-10-22 00:07:44 +0000362 opsys=irix
363 AC_DEFINE(IRIX_65,,IRIX 6.5)
364 ;;
paul7ea487b2003-03-17 02:05:07 +0000365esac
366
367dnl ---------------------
368dnl Integrated VTY option
369dnl ---------------------
370case "${enable_vtysh}" in
371 "yes") VTYSH="vtysh";
372 AC_DEFINE(VTYSH,,VTY shell)
gdtfc9d0742004-06-30 14:25:12 +0000373 AC_PATH_PROG(PERL, perl)
374dnl Vtysh uses libreadline, which looks for termcap functions at
375dnl configure time. We follow readline's search order.
376dnl The required procedures are in libtermcap on NetBSD, in
377dnl [TODO] on Linux, and in [TODO] on Solaris.
378 AC_CHECK_LIB(termcap, tputs, ,
379 AC_CHECK_LIB(tinfo, tputs, ,
380 AC_CHECK_LIB(curses, tputs, ,
381 AC_CHECK_LIB(ncurses, tputs))))
paul7ea487b2003-03-17 02:05:07 +0000382 AC_CHECK_LIB(readline, main)
383 if test $ac_cv_lib_readline_main = no; then
gdtfc9d0742004-06-30 14:25:12 +0000384 AC_MSG_ERROR([vtysh needs libreadline but was not found and usable on your system.])
paul7ea487b2003-03-17 02:05:07 +0000385 fi
386 AC_CHECK_HEADER(readline/history.h)
387 if test $ac_cv_header_readline_history_h = no;then
388 AC_MSG_ERROR([readline is too old to have readline/history.h, please update to the latest readline library.])
389 fi
paul3d3de8c2003-05-23 10:33:49 +0000390 AC_CHECK_LIB(readline, rl_completion_matches)
391 if test $ac_cv_lib_readline_rl_completion_matches = no; then
392 AC_DEFINE(rl_completion_matches,completion_matches,Old readline)
393 fi
394 ;;
paul7ea487b2003-03-17 02:05:07 +0000395 "no" ) VTYSH="";;
396 * ) ;;
397esac
398
399dnl ----------
400dnl PAM module
401dnl ----------
402if test "$with_libpam" = "yes"; then
paul24cd4352003-05-06 12:16:27 +0000403 AC_CHECK_HEADER(security/pam_misc.h)
404 if test "$ac_cv_header_security_pam_misc_h" = yes; then
405 AC_DEFINE(HAVE_PAM_MISC_H,,Have pam_misc.h)
406 AC_DEFINE(PAM_CONV_FUNC,misc_conv,Have misc_conv)
407 pam_conv_func="misc_conv"
paul24cd4352003-05-06 12:16:27 +0000408 fi
paul24cd4352003-05-06 12:16:27 +0000409 AC_CHECK_HEADER(security/openpam.h)
410 if test "$ac_cv_header_security_openpam_h" = yes; then
411 AC_DEFINE(HAVE_OPENPAM_H,,Have openpam.h)
412 AC_DEFINE(PAM_CONV_FUNC,openpam_ttyconv,Have openpam_ttyconv)
413 pam_conv_func="openpam_ttyconv"
paul24cd4352003-05-06 12:16:27 +0000414 fi
415 if test -z "$ac_cv_header_security_pam_misc_h$ac_cv_header_security_openpam_h" ; then
416 AC_MSG_WARN([*** pam support will not be built ***])
417 with_libpam="no"
418 fi
419fi
420
421if test "$with_libpam" = "yes"; then
paul7ea487b2003-03-17 02:05:07 +0000422dnl took this test from proftpd's configure.in and suited to our needs
423dnl -------------------------------------------------------------------------
424dnl
425dnl This next check looks funky due to a linker problem with some versions
426dnl of the PAM library. Prior to 0.72 release, the Linux PAM shared library
427dnl omitted requiring libdl linking information. PAM-0.72 or better ships
428dnl with RedHat 6.2 and Debian 2.2 or better.
429AC_CHECK_LIB(pam, pam_start,
paul24cd4352003-05-06 12:16:27 +0000430 [AC_CHECK_LIB(pam, $pam_conv_func,
paul7ea487b2003-03-17 02:05:07 +0000431 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
432 LIBPAM="-lpam"],
433 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
434 LIBPAM="-lpam -lpam_misc"]
435 )
436 ],
437
438 [AC_CHECK_LIB(pam, pam_end,
paul24cd4352003-05-06 12:16:27 +0000439 [AC_CHECK_LIB(pam, $pam_conv_func,
paula159ed92003-06-04 11:01:45 +0000440 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000441 LIBPAM="-lpam -ldl"],
paula159ed92003-06-04 11:01:45 +0000442 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
paul7ea487b2003-03-17 02:05:07 +0000443 LIBPAM="-lpam -ldl -lpam_misc"]
444 )
445 ],AC_MSG_WARN([*** pam support will not be built ***]),
446 [-ldl])
447 ]
448)
449fi
450AC_SUBST(LIBPAM)
451
452dnl -------------------------------
453dnl Endian-ness check
454dnl -------------------------------
455AC_WORDS_BIGENDIAN
456
457dnl -------------------------------
458dnl check the size in byte of the C
459dnl -------------------------------
460dnl AC_CHECK_SIZEOF(char)
461dnl AC_CHECK_SIZEOF(int)
462dnl AC_CHECK_SIZEOF(short)
463dnl AC_CHECK_SIZEOF(long)
464
465dnl ----------------------------
466dnl check existance of functions
467dnl ----------------------------
paul49e3b3c2003-10-23 20:39:50 +0000468AC_CHECK_FUNCS(memset memcpy strerror inet_aton daemon snprintf vsnprintf \
paul04bd4842003-10-24 04:24:39 +0000469 strlcat strlcpy if_nametoindex if_indextoname getifaddrs \
ajs3cb98de2005-04-02 16:01:05 +0000470 fcntl strnlen)
paula159ed92003-06-04 11:01:45 +0000471AC_CHECK_FUNCS(setproctitle, ,
472 [AC_CHECK_LIB(util, setproctitle,
473 [LIBS="$LIBS -lutil"
474 AC_DEFINE(HAVE_SETPROCTITLE,, Have setproctitle)
475 ]
476 )
477 ]
478)
paul7ea487b2003-03-17 02:05:07 +0000479
480dnl ------------------------------------
481dnl Determine routing get and set method
482dnl ------------------------------------
483AC_MSG_CHECKING(zebra between kernel interface method)
484if test x"$opsys" = x"gnu-linux"; then
485 if test "${enable_netlink}" = "yes";then
486 AC_MSG_RESULT(netlink)
487 RT_METHOD=rt_netlink.o
488 AC_DEFINE(HAVE_NETLINK,,netlink)
489 netlink=yes
490 elif test "${enable_netlink}" = "no"; then
491 AC_MSG_RESULT(ioctl)
492 RT_METHOD=rt_ioctl.o
493 netlink=no
494 else
495 AC_MSG_RESULT(netlink)
496 RT_METHOD=rt_netlink.o
497 AC_DEFINE(HAVE_NETLINK,,netlink)
498 netlink=yes
499 fi
paul19877dd2004-05-11 10:49:35 +0000500elif test x"$opsys" = x"sol2-6";then
501 AC_MSG_RESULT(Route socket)
502 KERNEL_METHOD="kernel_socket.o"
503 RT_METHOD="rt_socket.o"
paulafd8a122005-03-12 06:36:10 +0000504elif test x"$opsys" = x"sol8";then
paul19877dd2004-05-11 10:49:35 +0000505 AC_MSG_RESULT(Route socket)
506 KERNEL_METHOD="kernel_socket.o"
507 RT_METHOD="rt_socket.o"
508elif test "$opsys" = "irix" ; then
509 AC_MSG_RESULT(Route socket)
510 KERNEL_METHOD="kernel_socket.o"
511 RT_METHOD="rt_socket.o"
paul7ea487b2003-03-17 02:05:07 +0000512else
paul19877dd2004-05-11 10:49:35 +0000513 AC_TRY_RUN([#include <errno.h>
paul7ea487b2003-03-17 02:05:07 +0000514#include <sys/types.h>
515#include <sys/socket.h>
516
517main ()
518{
519 int ac_sock;
520
521 ac_sock = socket (AF_ROUTE, SOCK_RAW, 0);
522 if (ac_sock < 0 && errno == EINVAL)
523 exit (1);
524 exit (0);
525}],
526 [KERNEL_METHOD=kernel_socket.o
527 RT_METHOD=rt_socket.o
528 AC_MSG_RESULT(socket)],
529 [RT_METHOD=rt_ioctl.o
530 AC_MSG_RESULT(ioctl)],
531 [KERNEL_METHOD=kernel_socket.o
532 RT_METHOD=rt_socket.o
533 AC_MSG_RESULT(socket)])
paul7ea487b2003-03-17 02:05:07 +0000534fi
535AC_SUBST(RT_METHOD)
536AC_SUBST(KERNEL_METHOD)
537AC_SUBST(OTHER_METHOD)
538
ajsb99760a2005-01-04 16:24:43 +0000539dnl ------------------------------------
540dnl check for broken CMSG_FIRSTHDR macro
541dnl ------------------------------------
gdt6c200462005-01-04 17:02:48 +0000542AC_MSG_CHECKING(for broken CMSG_FIRSTHDR)
ajsb99760a2005-01-04 16:24:43 +0000543AC_TRY_RUN([
544#ifdef SUNOS_5
545#define _XPG4_2
546#define __EXTENSIONS__
547#endif
548#include <stdlib.h>
549#include <sys/types.h>
550#include <sys/socket.h>
551
552main()
553{
554 struct msghdr msg;
555 char buf[4];
556
557 msg.msg_control = buf;
558 msg.msg_controllen = 0;
559
560 if (CMSG_FIRSTHDR(&msg) != NULL)
561 exit(0);
562 exit (1);
gdt6c200462005-01-04 17:02:48 +0000563}],[AC_MSG_RESULT(yes - using workaround) AC_DEFINE(HAVE_BROKEN_CMSG_FIRSTHDR,,Broken CMSG_FIRSTHDR)],
564[AC_MSG_RESULT(no)])
ajsb99760a2005-01-04 16:24:43 +0000565
paul7ea487b2003-03-17 02:05:07 +0000566dnl ------------------------------
567dnl check kernel route read method
568dnl ------------------------------
569AC_CACHE_CHECK(route read method check, zebra_rtread,
570[if test "$netlink" = yes; then
571 RTREAD_METHOD="rtread_netlink.o"
572 zebra_rtread="netlink"
573else
574for zebra_rtread in /proc/net/route /dev/ip /dev/null;
575do
576 test x`ls $zebra_rtread 2>/dev/null` = x"$zebra_rtread" && break
577done
578case $zebra_rtread in
579 "/proc/net/route") RTREAD_METHOD="rtread_proc.o"
580 zebra_rtread="proc";;
paul9c30ab62003-07-08 08:36:17 +0000581 "/dev/ip")
582 case "$host" in
583 *-freebsd*) RTREAD_METHOD=rtread_sysctl.o
584 zebra_rtread="sysctl";;
585 *) RTREAD_METHOD="rtread_getmsg.o"
586 zebra_rtread="getmsg";;
587 esac;;
paul7ea487b2003-03-17 02:05:07 +0000588 *) RTREAD_METHOD="rtread_sysctl.o"
589 zebra_rtread="sysctl";;
590esac
591fi])
592AC_SUBST(RTREAD_METHOD)
593
594dnl -----------------------------
595dnl check interface lookup method
596dnl -----------------------------
paul19877dd2004-05-11 10:49:35 +0000597IOCTL_METHOD=ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000598AC_MSG_CHECKING(interface looking up method)
599if test "$netlink" = yes; then
600 AC_MSG_RESULT(netlink)
601 IF_METHOD=if_netlink.o
paul19877dd2004-05-11 10:49:35 +0000602elif test "$opsys" = "sol2-6";then
603 AC_MSG_RESULT(Solaris GIF)
604 IF_METHOD=if_ioctl.o
paulafd8a122005-03-12 06:36:10 +0000605elif test "$opsys" = "sol8";then
paul19877dd2004-05-11 10:49:35 +0000606 AC_MSG_RESULT(Solaris GLIF)
607 IF_METHOD=if_ioctl_solaris.o
608 IOCTL_METHOD=ioctl_solaris.o
609elif test "$opsys" = "irix" ; then
610 AC_MSG_RESULT(IRIX)
611 IF_METHOD=if_ioctl.o
612elif test "$opsys" = "openbsd";then
613 AC_MSG_RESULT(openbsd)
614 IF_METHOD=if_ioctl.o
615elif grep NET_RT_IFLIST /usr/include/sys/socket.h >/dev/null 2>&1; then
616 AC_MSG_RESULT(sysctl)
paul7ea487b2003-03-17 02:05:07 +0000617 IF_METHOD=if_sysctl.o
618 AC_DEFINE(HAVE_NET_RT_IFLIST,,NET_RT_IFLIST)
paul19877dd2004-05-11 10:49:35 +0000619else
paul7ea487b2003-03-17 02:05:07 +0000620 AC_MSG_RESULT(ioctl)
621 IF_METHOD=if_ioctl.o
paul7ea487b2003-03-17 02:05:07 +0000622fi
623AC_SUBST(IF_METHOD)
paul19877dd2004-05-11 10:49:35 +0000624AC_SUBST(IOCTL_METHOD)
paul7ea487b2003-03-17 02:05:07 +0000625
626dnl -----------------------
627dnl check proc file system.
628dnl -----------------------
629if test -r /proc/net/dev; then
630 AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev)
631 IF_PROC=if_proc.o
632fi
633
634if test -r /proc/net/if_inet6; then
635 AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6)
636 IF_PROC=if_proc.o
637fi
638AC_SUBST(IF_PROC)
639
640dnl -----------------------------
641dnl check ipforward detect method
642dnl -----------------------------
643AC_CACHE_CHECK(ipforward method check, zebra_ipforward_path,
644[for zebra_ipforward_path in /proc/net/snmp /dev/ip /dev/null;
645do
646 test x`ls $zebra_ipforward_path 2>/dev/null` = x"$zebra_ipforward_path" && break
647done
648case $zebra_ipforward_path in
649 "/proc/net/snmp") IPFORWARD=ipforward_proc.o
650 zebra_ipforward_path="proc";;
651 "/dev/ip")
652 case "$host" in
653 *-nec-sysv4*) IPFORWARD=ipforward_ews.o
654 zebra_ipforward_path="ews";;
paul9c30ab62003-07-08 08:36:17 +0000655 *-freebsd*) IPFORWARD=ipforward_sysctl.o
656 zebra_ipforward_path="sysctl";;
paul7ea487b2003-03-17 02:05:07 +0000657 *) IPFORWARD=ipforward_solaris.o
658 zebra_ipforward_path="solaris";;
659 esac;;
660 *) IPFORWARD=ipforward_sysctl.o
661 zebra_ipforward_path="sysctl";;
662esac])
663AC_SUBST(IPFORWARD)
664
665AC_CHECK_FUNCS(getaddrinfo, [have_getaddrinfo=yes], [have_getaddrinfo=no])
666
667dnl ----------
668dnl IPv6 check
669dnl ----------
670AC_MSG_CHECKING(whether does this OS have IPv6 stack)
671if test "${enable_ipv6}" = "no"; then
672 AC_MSG_RESULT(disabled)
673else
674dnl ----------
675dnl INRIA IPv6
676dnl ----------
paula159ed92003-06-04 11:01:45 +0000677 if grep IPV6_INRIA_VERSION /usr/include/netinet/in.h >/dev/null 2>&1; then
678 zebra_cv_ipv6=yes
679 AC_DEFINE(HAVE_IPV6,1,INRIA IPv6)
680 AC_DEFINE(INRIA_IPV6,1,INRIA IPv6)
681 RIPNGD="ripngd"
682 OSPF6D="ospf6d"
683 LIB_IPV6=""
684 AC_MSG_RESULT(INRIA IPv6)
paul7ea487b2003-03-17 02:05:07 +0000685dnl ---------
686dnl KAME IPv6
687dnl ---------
paula159ed92003-06-04 11:01:45 +0000688 elif grep WIDE /usr/include/netinet6/in6.h >/dev/null 2>&1; then
689 zebra_cv_ipv6=yes
690 AC_DEFINE(HAVE_IPV6,1,KAME IPv6)
691 AC_DEFINE(KAME,1,KAME IPv6)
692 RIPNGD="ripngd"
693 OSPF6D="ospf6d"
694 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
paul7ea487b2003-03-17 02:05:07 +0000695 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +0000696 fi
697 AC_MSG_RESULT(KAME)
hasso71c0fb52003-05-25 20:18:13 +0000698dnl -------------------------
699dnl MUSICA IPv6
700dnl default host check
701dnl It is not used by Kheops
702dnl -------------------------
paula159ed92003-06-04 11:01:45 +0000703 elif grep MUSICA /usr/include6/netinet6/in6.h >/dev/null 2>&1; then
704 zebra_cv_ipv6=yes
705 AC_DEFINE(HAVE_IPV6,1,Musicia IPv6)
706 AC_DEFINE(MUSICA,1,Musica IPv6 stack)
707 AC_DEFINE(KAME,1,KAME IPv6 stack)
708 RIPNGD="ripngd"
709 OSPF6D="ospf6d"
710 if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then
hasso71c0fb52003-05-25 20:18:13 +0000711 LIB_IPV6="-L/usr/local/v6/lib -linet6"
paula159ed92003-06-04 11:01:45 +0000712 fi
713 AC_MSG_RESULT(MUSICA)
paul7ea487b2003-03-17 02:05:07 +0000714dnl ---------
715dnl NRL check
716dnl ---------
paula159ed92003-06-04 11:01:45 +0000717 elif grep NRL /usr/include/netinet6/in6.h >/dev/null 2>&1; then
718 zebra_cv_ipv6=yes
719 AC_DEFINE(HAVE_IPV6,1,NRL IPv6)
720 AC_DEFINE(NRL,1,NRL)
721 RIPNGD="ripngd"
722 OSPF6D="ospf6d"
723 if test x"$opsys" = x"bsdi";then
paul7ea487b2003-03-17 02:05:07 +0000724 AC_DEFINE(BSDI_NRL,,BSDI)
725 AC_MSG_RESULT(BSDI_NRL)
paula159ed92003-06-04 11:01:45 +0000726 else
paul7ea487b2003-03-17 02:05:07 +0000727 AC_MSG_RESULT(NRL)
paula159ed92003-06-04 11:01:45 +0000728 fi
paul19877dd2004-05-11 10:49:35 +0000729dnl ------------------------------------
730dnl Solaris 9, 10 and potentially higher
731dnl ------------------------------------
paulafd8a122005-03-12 06:36:10 +0000732 elif test x"$opsys" = x"sol8"; then
paul19877dd2004-05-11 10:49:35 +0000733 zebra_cv_ipv6=yes;
734 AC_DEFINE(HAVE_IPV6, 1, IPv6)
735 AC_DEFINE(SOLARIS_IPV6, 1, Solaris IPv6)
736 RIPNGD="ripngd"
737 OSPF6D="ospf6d"
738 AC_MSG_RESULT(Solaris IPv6)
paul7ea487b2003-03-17 02:05:07 +0000739dnl ----------
740dnl Linux IPv6
741dnl ----------
paula159ed92003-06-04 11:01:45 +0000742 elif test "${enable_ipv6}" = "yes"; then
743 AC_EGREP_CPP(yes, [
744 #include <linux/version.h>
745 /* 2.1.128 or later */
746 #if LINUX_VERSION_CODE >= 0x020180
747 yes
748 #endif],
749 [zebra_cv_ipv6=yes
750 zebra_cv_linux_ipv6=yes
751 AC_MSG_RESULT(Linux IPv6)])
752 else
753 if test x`ls /proc/net/ipv6_route 2>/dev/null` = x"/proc/net/ipv6_route"
754 then
paul7ea487b2003-03-17 02:05:07 +0000755 zebra_cv_ipv6=yes
756 zebra_cv_linux_ipv6=yes
757 AC_MSG_RESULT(Linux IPv6)
paula159ed92003-06-04 11:01:45 +0000758 fi
759 fi
paul7ea487b2003-03-17 02:05:07 +0000760
paula159ed92003-06-04 11:01:45 +0000761 if test "$zebra_cv_linux_ipv6" = "yes";then
762 AC_MSG_CHECKING(for GNU libc >= 2.1)
763 AC_DEFINE(HAVE_IPV6,1,Linux IPv6)
764 AC_EGREP_CPP(yes, [
paul7ea487b2003-03-17 02:05:07 +0000765#include <features.h>
766#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
767 yes
paula159ed92003-06-04 11:01:45 +0000768#endif],
769 [glibc=yes
770 AC_DEFINE(LINUX_IPV6,1,Linux IPv6 stack)
771 AC_MSG_RESULT(yes)],
772 AC_MSG_RESULT(no)
773 )
774 RIPNGD="ripngd"
775 OSPF6D="ospf6d"
776 if test "$glibc" != "yes"; then
paul7ea487b2003-03-17 02:05:07 +0000777 INCLUDES="-I/usr/inet6/include"
778 if test x`ls /usr/inet6/lib/libinet6.a 2>/dev/null` != x;then
779 LIB_IPV6="-L/usr/inet6/lib -linet6"
780 fi
paula159ed92003-06-04 11:01:45 +0000781 fi
782 fi
paul7ea487b2003-03-17 02:05:07 +0000783
784dnl -----------------------
785dnl Set IPv6 related values
786dnl -----------------------
paula159ed92003-06-04 11:01:45 +0000787 LIBS="$LIB_IPV6 $LIBS"
788 AC_SUBST(LIB_IPV6)
paul7ea487b2003-03-17 02:05:07 +0000789
paula159ed92003-06-04 11:01:45 +0000790 if test x"$RIPNGD" = x""; then
791 AC_MSG_RESULT(IPv4 only)
792 fi
paul7ea487b2003-03-17 02:05:07 +0000793fi
794
gdtfa3232e2003-12-03 17:52:30 +0000795dnl ------------------
796dnl IPv6 header checks
797dnl ------------------
798if test "x${zebra_cv_ipv6}" = "xyes"; then
799AC_CHECK_HEADERS([netinet6/in6.h netinet/in6_var.h netinet/icmp6.h \
800 netinet6/in6_var.h netinet6/nd6.h])
801fi
802
paul7ea487b2003-03-17 02:05:07 +0000803dnl --------------------
804dnl Daemon disable check
805dnl --------------------
806if test "${enable_zebra}" = "no";then
807 ZEBRA=""
808else
809 ZEBRA="zebra"
810fi
811
812if test "${enable_bgpd}" = "no";then
813 BGPD=""
814else
815 BGPD="bgpd"
816fi
817
818if test "${enable_ripd}" = "no";then
819 RIPD=""
820else
821 RIPD="ripd"
822fi
823
824if test "${enable_ospfd}" = "no";then
825 OSPFD=""
826else
827 OSPFD="ospfd"
828fi
829
ajsd0199432004-12-22 14:03:52 +0000830if test "${enable_watchquagga}" = "no";then
831 WATCHQUAGGA=""
832else
833 WATCHQUAGGA="watchquagga"
834fi
835
paul1ef74ef2003-03-21 15:16:05 +0000836OSPFCLIENT=""
837if test "${enable_opaque_lsa}" = "yes"; then
838 if test "${enable_ospfapi}" != "no";then
paul9a569842003-03-28 01:45:13 +0000839 AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI)
paul1ef74ef2003-03-21 15:16:05 +0000840
841 if test "${enable_ospfclient}" != "no";then
842 OSPFCLIENT="ospfclient"
843 fi
844 fi
845
paul7ea487b2003-03-17 02:05:07 +0000846fi
847
848case "${enable_ripngd}" in
849 "yes") RIPNGD="ripngd";;
850 "no" ) RIPNGD="";;
851 * ) ;;
852esac
853
854case "${enable_ospf6d}" in
855 "yes") OSPF6D="ospf6d";;
856 "no" ) OSPF6D="";;
857 * ) ;;
858esac
859
jardin9e867fe2003-12-23 08:56:18 +0000860case "${enable_isisd}" in
861 "yes") ISISD="isisd";;
862 "no" ) ISISD="";;
hassoae399ab2004-09-13 20:22:18 +0000863 * ) ;;
jardin9e867fe2003-12-23 08:56:18 +0000864esac
865
paul7ea487b2003-03-17 02:05:07 +0000866if test "${enable_bgp_announce}" = "no";then
867 AC_DEFINE(DISABLE_BGP_ANNOUNCE,,Disable BGP installation to zebra)
868fi
869
870AC_SUBST(ZEBRA)
871AC_SUBST(BGPD)
872AC_SUBST(RIPD)
873AC_SUBST(RIPNGD)
874AC_SUBST(OSPFD)
875AC_SUBST(OSPF6D)
ajsd0199432004-12-22 14:03:52 +0000876AC_SUBST(WATCHQUAGGA)
jardin9e867fe2003-12-23 08:56:18 +0000877AC_SUBST(ISISD)
paul7ea487b2003-03-17 02:05:07 +0000878AC_SUBST(VTYSH)
879AC_SUBST(INCLUDES)
880AC_SUBST(CURSES)
881AC_SUBST(OSPFCLIENT)
paul1ef74ef2003-03-21 15:16:05 +0000882AC_SUBST(OSPFAPI)
paul7ea487b2003-03-17 02:05:07 +0000883AC_CHECK_LIB(c, inet_ntop, [AC_DEFINE(HAVE_INET_NTOP,,inet_ntop)])
884AC_CHECK_LIB(c, inet_pton, [AC_DEFINE(HAVE_INET_PTON,,inet_pton)])
885AC_CHECK_LIB(crypt, crypt)
886AC_CHECK_LIB(resolv, res_init)
887AC_CHECK_LIB(m, main)
888
889dnl ---------------------------------------------------
890dnl BSD/OS 4.1 define inet_XtoY function as __inet_XtoY
891dnl ---------------------------------------------------
paula159ed92003-06-04 11:01:45 +0000892AC_CHECK_FUNC(__inet_ntop, AC_DEFINE(HAVE_INET_NTOP,,__inet_ntop))
893AC_CHECK_FUNC(__inet_pton, AC_DEFINE(HAVE_INET_PTON,,__inet_pton))
894AC_CHECK_FUNC(__inet_aton, AC_DEFINE(HAVE_INET_ATON,,__inet_aton))
paul7ea487b2003-03-17 02:05:07 +0000895
896dnl ---------------------------
897dnl check system has GNU regexp
898dnl ---------------------------
899dnl AC_MSG_CHECKING(whether system has GNU regex)
900AC_CHECK_LIB(c, regexec,
901[AC_DEFINE(HAVE_GNU_REGEX,,GNU regexp library)
902 LIB_REGEX=""],
903[LIB_REGEX="regex.o"])
904AC_SUBST(LIB_REGEX)
905
906dnl ------------------
907dnl check SNMP library
908dnl ------------------
909if test "${enable_snmp}" = "yes";then
910dnl AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
paul7ea487b2003-03-17 02:05:07 +0000911 if test "${HAVE_SNMP}" = ""; then
paul1ef74ef2003-03-21 15:16:05 +0000912 old_libs="${LIBS}"
913 LIBS="-L/usr/lib"
paul7ea487b2003-03-17 02:05:07 +0000914 unset ac_cv_lib_snmp_asn_parse_int
paul1ef74ef2003-03-21 15:16:05 +0000915 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
916 if test "${NEED_CRYPTO}" = ""; then
917 AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes ])
918 else
919 AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes; NEED_CRYPTO=yes;LIBS="$LIBS -lcrypto" ],,"-lcrypto")
920 fi
921 LIBS="${old_libs}"
paul7ea487b2003-03-17 02:05:07 +0000922 fi
paul1ef74ef2003-03-21 15:16:05 +0000923 if test "${HAVE_SNMP}" = ""; then
924 old_libs="${LIBS}"
925 LIBS="-L/usr/lib"
926 unset ac_cv_lib_snmp_asn_parse_int
927 AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes, )
928 if test "${HAVE_SNMP}" = ""; then
929 unset ac_cv_lib_snmp_asn_parse_int
930 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
931 if test "${NEED_CRYPTO}" = "yes"; then
932 AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
933 fi
934 fi
935 LIBS="${old_libs}"
936 fi
paul7ea487b2003-03-17 02:05:07 +0000937
938 if test "${HAVE_SNMP}" = ""; then
paul1ef74ef2003-03-21 15:16:05 +0000939 old_libs="${LIBS}"
940 LIBS="-L/usr/local/lib"
941 unset ac_cv_lib_snmp_asn_parse_int
942 AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
943 if test "${HAVE_SNMP}" = ""; then
944 unset ac_cv_lib_snmp_asn_parse_int
945 AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
946 if test "${NEED_CRYPTO}" = "yes"; then
947 AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
948 fi
949 fi
950 LIBS="${old_libs}"
paul7ea487b2003-03-17 02:05:07 +0000951 fi
paul1ef74ef2003-03-21 15:16:05 +0000952
paul7ea487b2003-03-17 02:05:07 +0000953 if test "${HAVE_SNMP}" = "yes"; then
954 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
955 do
956 test -f "${ac_snmp}" && break
957 done
paul1ef74ef2003-03-21 15:16:05 +0000958
paul7ea487b2003-03-17 02:05:07 +0000959 case ${ac_snmp} in
960 /usr/include/net-snmp/*)
961 AC_DEFINE(HAVE_SNMP,,SNMP)
paul1ef74ef2003-03-21 15:16:05 +0000962 AC_DEFINE(HAVE_NETSNMP,,SNMP)
paul7ea487b2003-03-17 02:05:07 +0000963 AC_DEFINE(UCD_COMPATIBLE,,SNMP)
hasso2d582282005-03-28 15:29:07 +0000964 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/net-snmp -I/usr/include/net-snmp/library"
paulac7c4bb2003-03-19 04:25:08 +0000965 if test "${HAVE_NETSNMP}" = "yes"; then
paul1ef74ef2003-03-21 15:16:05 +0000966 LIBS="${LIBS} -lnetsnmp"
paulac7c4bb2003-03-19 04:25:08 +0000967 else
paul1ef74ef2003-03-21 15:16:05 +0000968 LIBS="${LIBS} -lsnmp"
paulac7c4bb2003-03-19 04:25:08 +0000969 fi
paul7ea487b2003-03-17 02:05:07 +0000970 ;;
971 /usr/include/ucd-snmp/*)
972 AC_DEFINE(HAVE_SNMP,,SNMP)
hasso2d582282005-03-28 15:29:07 +0000973 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/ucd-snmp"
paul7ea487b2003-03-17 02:05:07 +0000974 LIBS="${LIBS} -lsnmp"
975 ;;
976 /usr/local/include/ucd-snmp/*)
977 AC_DEFINE(HAVE_SNMP,,SNMP)
hasso2d582282005-03-28 15:29:07 +0000978 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/ucd-snmp"
paul7ea487b2003-03-17 02:05:07 +0000979 LIBS="${LIBS} -L/usr/local/lib -lsnmp"
980 ;;
paulf3bd1a72003-11-02 07:29:11 +0000981 /usr/local/include/net-snmp/*)
982 AC_DEFINE(HAVE_SNMP,,SNMP)
983 AC_DEFINE(HAVE_NET_SNMP,,SNMP)
984 AC_DEFINE(UCD_COMPATIBLE,,SNMP)
hasso2d582282005-03-28 15:29:07 +0000985 SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/net-snmp"
paulf3bd1a72003-11-02 07:29:11 +0000986 LIBS="${LIBS} -L/usr/local/lib -lnetsnmp"
987 ;;
paul7ea487b2003-03-17 02:05:07 +0000988 esac
989 if test "${NEED_CRYPTO}" = "yes"; then
990 LIBS="${LIBS} -lcrypto"
991 fi
992 fi
993fi
994
ajs6cf9df02005-01-12 16:52:55 +0000995if test "${enable_snmp}" = "yes" -a "${HAVE_SNMP}" != "yes"; then
996 AC_MSG_ERROR([--enable-snmp given, but cannot find support for SNMP])
997fi
998
hasso2d582282005-03-28 15:29:07 +0000999AC_SUBST(SNMP_INCLUDES)
1000
paul7ea487b2003-03-17 02:05:07 +00001001dnl ----------------------------
1002dnl check sa_len of sockaddr
1003dnl ----------------------------
1004AC_MSG_CHECKING(whether struct sockaddr has a sa_len field)
1005AC_TRY_COMPILE([#include <sys/types.h>
1006#include <sys/socket.h>
1007],[static struct sockaddr ac_i;int ac_j = sizeof (ac_i.sa_len);],
1008[AC_MSG_RESULT(yes)
1009 AC_DEFINE(HAVE_SA_LEN,,sa_len)],
1010 AC_MSG_RESULT(no))
1011
1012dnl ----------------------------
1013dnl check sin_len of sockaddr_in
1014dnl ----------------------------
1015AC_MSG_CHECKING(whether struct sockaddr_in has a sin_len field)
1016AC_TRY_COMPILE([#include <sys/types.h>
1017#include <netinet/in.h>
1018],[static struct sockaddr_in ac_i;int ac_j = sizeof (ac_i.sin_len);],
1019[AC_MSG_RESULT(yes)
1020 AC_DEFINE(HAVE_SIN_LEN,,sin_len)],
1021 AC_MSG_RESULT(no))
1022
1023dnl ----------------------------
1024dnl check sun_len of sockaddr_un
1025dnl ----------------------------
1026AC_MSG_CHECKING(whether struct sockaddr_un has a sun_len field)
1027AC_TRY_COMPILE([#include <sys/types.h>
1028#include <sys/un.h>
1029],[static struct sockaddr_un ac_i;int ac_j = sizeof (ac_i.sun_len);],
1030[AC_MSG_RESULT(yes)
1031 AC_DEFINE(HAVE_SUN_LEN,,sun_len)],
1032 AC_MSG_RESULT(no))
1033
1034dnl -----------------------------------
1035dnl check sin6_scope_id of sockaddr_in6
1036dnl -----------------------------------
1037if test "$zebra_cv_ipv6" = yes; then
1038 AC_MSG_CHECKING(whether struct sockaddr_in6 has a sin6_scope_id field)
1039 AC_TRY_COMPILE([#include <sys/types.h>
1040#include <netinet/in.h>
1041],[static struct sockaddr_in6 ac_i;int ac_j = sizeof (ac_i.sin6_scope_id);],
1042[AC_MSG_RESULT(yes)
1043 AC_DEFINE(HAVE_SIN6_SCOPE_ID,,scope id)],
1044 AC_MSG_RESULT(no))
1045fi
1046
1047dnl ----------------------------
1048dnl check socklen_t exist or not
1049dnl ----------------------------
1050AC_MSG_CHECKING(whther socklen_t is defined)
1051AC_TRY_COMPILE([#include <sys/types.h>
1052#include <sys/socket.h>
1053#include <netinet/in.h>
1054],[socklen_t ac_x;],
1055[AC_MSG_RESULT(yes)
1056 AC_DEFINE(HAVE_SOCKLEN_T,,socklen_t)],
1057 AC_MSG_RESULT(no))
1058
1059dnl ------------------------
1060dnl check struct sockaddr_dl
1061dnl ------------------------
1062AC_MSG_CHECKING(whether struct sockaddr_dl exist)
1063AC_EGREP_HEADER(sockaddr_dl,
1064net/if_dl.h,
1065[AC_MSG_RESULT(yes)
1066 AC_DEFINE(HAVE_SOCKADDR_DL,,sockaddr_dl)],
1067 AC_MSG_RESULT(no))
1068
1069dnl --------------------------
1070dnl check structure ifaliasreq
1071dnl --------------------------
1072AC_MSG_CHECKING(whether struct ifaliasreq exist)
1073AC_EGREP_HEADER(ifaliasreq,
1074net/if.h,
1075[AC_MSG_RESULT(yes)
1076 AC_DEFINE(HAVE_IFALIASREQ,,ifaliasreq)],
1077 AC_MSG_RESULT(no))
1078
1079dnl ----------------------------
1080dnl check structure in6_aliasreq
1081dnl ----------------------------
hasso71c0fb52003-05-25 20:18:13 +00001082AC_MSG_CHECKING(whether struct in6_aliasreq exist)
paul7ea487b2003-03-17 02:05:07 +00001083AC_EGREP_HEADER(in6_aliasreq,
1084netinet6/in6_var.h,
1085[AC_MSG_RESULT(yes)
1086 AC_DEFINE(HAVE_IN6_ALIASREQ,,in6_aliasreq)],
1087 AC_MSG_RESULT(no))
1088
hasso71c0fb52003-05-25 20:18:13 +00001089dnl -----------------------------------
1090dnl check ifra_lifetime of in6_aliasreq
1091dnl -----------------------------------
1092AC_MSG_CHECKING(whether in6_aliasreq.ifra_lifetime exist)
1093AC_TRY_COMPILE([#include <sys/types.h>
1094#include <netinet6/in6_var.h>
1095],[static struct if6_aliasreq ac_i;int ac_j = sizeof (ac_i.ifra_lifetime);],
1096[AC_MSG_RESULT(yes)
paula159ed92003-06-04 11:01:45 +00001097 AC_DEFINE(HAVE_IFRA_LIFETIME,,Have in6_aliasreq.ifra_lifetime)],
hasso71c0fb52003-05-25 20:18:13 +00001098 AC_MSG_RESULT(no))
1099
paul7ea487b2003-03-17 02:05:07 +00001100dnl ---------------------------
1101dnl check structure rt_addrinfo
1102dnl ---------------------------
1103AC_MSG_CHECKING(whether struct rt_addrinfo exist)
1104AC_EGREP_HEADER(rt_addrinfo,
1105net/route.h,
1106[AC_MSG_RESULT(yes)
1107 AC_DEFINE(HAVE_RT_ADDRINFO,,rt_addrinfo)],
1108 AC_MSG_RESULT(no))
1109
1110dnl --------------------------
1111dnl check structure in_pktinfo
1112dnl --------------------------
1113AC_MSG_CHECKING(whether struct in_pktinfo exist)
1114AC_TRY_COMPILE([#include <netinet/in.h>
1115],[struct in_pktinfo ac_x;],
1116[AC_MSG_RESULT(yes)
1117 AC_DEFINE(HAVE_INPKTINFO,,in_pktinfo)],
1118 AC_MSG_RESULT(no))
1119
vincent29c4c9b2005-03-25 13:05:47 +00001120dnl ----------------------------------
1121dnl check struct nd_opt_homeagent_info
1122dnl ----------------------------------
1123AC_MSG_CHECKING(whether struct nd_opt_homeagent_info exist)
1124AC_EGREP_HEADER(nd_opt_homeagent_info,
1125netinet/icmp6.h,
1126[AC_MSG_RESULT(yes)
1127 AC_DEFINE(HAVE_ND_OPT_HOMEAGENT_INFO,,nd_opt_homeagent_info)],
1128 AC_MSG_RESULT(no))
1129
1130dnl --------------------------------
1131dnl check struct nd_opt_adv_interval
1132dnl --------------------------------
1133AC_MSG_CHECKING(whether struct nd_opt_adv_interval exist)
1134AC_EGREP_HEADER(nd_opt_adv_interval,
1135netinet/icmp6.h,
1136[AC_MSG_RESULT(yes)
1137 AC_DEFINE(HAVE_ND_OPT_ADV_INTERVAL,,nd_opt_adv_interval)],
1138 AC_MSG_RESULT(no))
1139
1140dnl ------------------------------------
1141dnl check fields in nd_opt_adv_interval
1142dnl ------------------------------------
1143AC_MSG_CHECKING(whether nd_opt_ai_type field exist)
1144AC_EGREP_HEADER(nd_opt_ai_type,
1145netinet/icmp6.h,
1146[AC_MSG_RESULT(yes)
1147 AC_DEFINE(HAVE_ND_OPT_ADV_INTERVAL_AI_FIELDS,,nd_opt_ai_type)],
1148 AC_MSG_RESULT(no))
1149
paul7ea487b2003-03-17 02:05:07 +00001150dnl --------------------------------------
1151dnl checking for getrusage struct and call
1152dnl --------------------------------------
1153AC_MSG_CHECKING(whether getrusage is available)
1154AC_TRY_COMPILE([#include <sys/resource.h>
1155],[struct rusage ac_x; getrusage (RUSAGE_SELF, &ac_x);],
1156[AC_MSG_RESULT(yes)
1157 AC_DEFINE(HAVE_RUSAGE,,rusage)],
1158 AC_MSG_RESULT(no))
1159
pauledd7c242003-06-04 13:59:38 +00001160dnl -------------------
1161dnl capabilities checks
1162dnl -------------------
hasso41d3fc92004-04-06 11:59:00 +00001163if test "${enable_capabilities}" != "no"; then
1164 AC_MSG_CHECKING(whether prctl PR_SET_KEEPCAPS is available)
1165 AC_TRY_COMPILE([#include <sys/prctl.h>],[prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);],
1166 [AC_MSG_RESULT(yes)
1167 AC_DEFINE(HAVE_PR_SET_KEEPCAPS,,prctl)
1168 quagga_ac_keepcaps="yes"],
1169 AC_MSG_RESULT(no)
pauledd7c242003-06-04 13:59:38 +00001170 )
hasso41d3fc92004-04-06 11:59:00 +00001171 if test x"${quagga_ac_keepcaps}" = x"yes"; then
1172 AC_CHECK_HEADERS(sys/capability.h)
1173 fi
1174 if test x"${ac_cv_header_sys_capability_h}" = x"yes"; then
1175 AC_CHECK_LIB(cap, cap_init,
1176 [AC_DEFINE(HAVE_LCAPS,1,Capabilities)
1177 LIBCAP="-lcap"
1178 ]
1179 )
1180 fi
pauledd7c242003-06-04 13:59:38 +00001181fi
1182AC_SUBST(LIBCAP)
1183
ajs40abf232005-01-12 17:27:27 +00001184dnl -------------------
1185dnl test for ucontext.h
1186dnl -------------------
1187AC_CHECK_HEADERS(ucontext.h)
1188
paulfb2d1502003-06-04 09:40:54 +00001189dnl ---------------------------
1190dnl check for glibc 'backtrace'
1191dnl ---------------------------
1192if test "${glibc}" = "yes"; then
1193 AC_CHECK_HEADER(execinfo.h)
1194fi
1195if test x"${ac_cv_header_execinfo_h}" = x"yes"; then
1196 AC_CHECK_FUNC(backtrace,
1197 [AC_DEFINE(HAVE_GLIBC_BACKTRACE,,Glibc backtrace)]
1198 )
1199fi
1200
paul408ad942003-05-20 00:03:33 +00001201dnl ----------
1202dnl configure date
1203dnl ----------
1204CONFDATE=`date '+%Y%m%d'`
1205AC_SUBST(CONFDATE)
1206
paul7ea487b2003-03-17 02:05:07 +00001207dnl ------------------------------
paula159ed92003-06-04 11:01:45 +00001208dnl set paths for state directory
paul23bd12c2003-04-07 06:11:09 +00001209dnl ------------------------------
1210if test "${prefix}" = "NONE"; then
paule8f29842003-08-12 13:08:31 +00001211 quagga_statedir_prefix="";
paul23bd12c2003-04-07 06:11:09 +00001212else
paule8f29842003-08-12 13:08:31 +00001213 quagga_statedir_prefix=${prefix}
paul23bd12c2003-04-07 06:11:09 +00001214fi
1215if test "${localstatedir}" = '${prefix}/var'; then
paula159ed92003-06-04 11:01:45 +00001216 AC_CACHE_CHECK(state directory,ac_statedir,
paule8f29842003-08-12 13:08:31 +00001217 [for QUAGGA_STATE_DIR in ${quagga_statedir_prefix}/var/run dnl
1218 ${quagga_statedir_prefix}/var/adm dnl
1219 ${quagga_statedir_prefix}/etc dnl
paula159ed92003-06-04 11:01:45 +00001220 /var/run dnl
1221 /var/adm dnl
1222 /etc dnl
1223 /dev/null;
paul23bd12c2003-04-07 06:11:09 +00001224 do
paule8f29842003-08-12 13:08:31 +00001225 test -d $QUAGGA_STATE_DIR && break
paul23bd12c2003-04-07 06:11:09 +00001226 done
paule8f29842003-08-12 13:08:31 +00001227 quagga_statedir=$QUAGGA_STATE_DIR])
paul23bd12c2003-04-07 06:11:09 +00001228else
paule8f29842003-08-12 13:08:31 +00001229 quagga_statedir=${localstatedir}
paula159ed92003-06-04 11:01:45 +00001230 AC_MSG_CHECKING(directory to use for state file)
paule8f29842003-08-12 13:08:31 +00001231 AC_MSG_RESULT(${quagga_statedir})
paul23bd12c2003-04-07 06:11:09 +00001232fi
paule8f29842003-08-12 13:08:31 +00001233if test $quagga_statedir = "/dev/null"; then
paula159ed92003-06-04 11:01:45 +00001234 AC_MSG_ERROR('STATE DIRECTORY NOT FOUND! FIX OR SPECIFY --localstatedir!')
1235fi
1236
paule8f29842003-08-12 13:08:31 +00001237AC_DEFINE_UNQUOTED(PATH_ZEBRA_PID, "$quagga_statedir/zebra.pid",zebra PID)
1238AC_DEFINE_UNQUOTED(PATH_RIPD_PID, "$quagga_statedir/ripd.pid",ripd PID)
1239AC_DEFINE_UNQUOTED(PATH_RIPNGD_PID, "$quagga_statedir/ripngd.pid",ripngd PID)
1240AC_DEFINE_UNQUOTED(PATH_BGPD_PID, "$quagga_statedir/bgpd.pid",bgpd PID)
1241AC_DEFINE_UNQUOTED(PATH_OSPFD_PID, "$quagga_statedir/ospfd.pid",ospfd PID)
1242AC_DEFINE_UNQUOTED(PATH_OSPF6D_PID, "$quagga_statedir/ospf6d.pid",ospf6d PID)
jardin9e867fe2003-12-23 08:56:18 +00001243AC_DEFINE_UNQUOTED(PATH_ISISD_PID, "$quagga_statedir/isisd.pid",isisd PID)
ajsd0199432004-12-22 14:03:52 +00001244AC_DEFINE_UNQUOTED(PATH_WATCHQUAGGA_PID, "$quagga_statedir/watchquagga.pid",watchquagga PID)
paule8f29842003-08-12 13:08:31 +00001245AC_DEFINE_UNQUOTED(ZEBRA_SERV_PATH, "$quagga_statedir/zserv.api",zebra api socket)
1246AC_DEFINE_UNQUOTED(ZEBRA_VTYSH_PATH, "$quagga_statedir/zebra.vty",zebra vty socket)
1247AC_DEFINE_UNQUOTED(RIP_VTYSH_PATH, "$quagga_statedir/ripd.vty",rip vty socket)
1248AC_DEFINE_UNQUOTED(RIPNG_VTYSH_PATH, "$quagga_statedir/ripngd.vty",ripng vty socket)
1249AC_DEFINE_UNQUOTED(BGP_VTYSH_PATH, "$quagga_statedir/bgpd.vty",bgpd vty socket)
1250AC_DEFINE_UNQUOTED(OSPF_VTYSH_PATH, "$quagga_statedir/ospfd.vty",ospfd vty socket)
1251AC_DEFINE_UNQUOTED(OSPF6_VTYSH_PATH, "$quagga_statedir/ospf6d.vty",ospf6d vty socket)
jardin9e867fe2003-12-23 08:56:18 +00001252AC_DEFINE_UNQUOTED(ISIS_VTYSH_PATH, "$quagga_statedir/isisd.vty",isisd vty socket)
ajs515210b2004-12-22 15:35:12 +00001253AC_DEFINE_UNQUOTED(DAEMON_VTY_DIR, "$quagga_statedir",daemon vty directory)
paul7ea487b2003-03-17 02:05:07 +00001254
1255dnl ---------------------------
1256dnl Check htonl works correctly
1257dnl ---------------------------
1258AC_MSG_CHECKING(for working htonl)
1259AC_CACHE_VAL(ac_cv_htonl_works, [
1260AC_TRY_LINK([#ifdef HAVE_SYS_TYPES_H
1261#include <sys/types.h>
1262#endif
1263#ifdef HAVE_NETDB_H
1264#include <netdb.h>
1265#endif
1266#ifdef HAVE_NETINET_IN_H
1267#include <netinet/in.h>
1268#endif],
1269[htonl (0);],
1270ac_cv_htonl_works=yes,
1271ac_cv_htonl_works=no)])
1272AC_MSG_RESULT($ac_cv_htonl_works)
1273
paul14c17fd2004-11-07 22:34:23 +00001274AC_CONFIG_FILES([Makefile lib/Makefile zebra/Makefile ripd/Makefile
ajsd0199432004-12-22 14:03:52 +00001275 ripngd/Makefile bgpd/Makefile ospfd/Makefile watchquagga/Makefile
jardin9e867fe2003-12-23 08:56:18 +00001276 ospf6d/Makefile isisd/Makefile vtysh/Makefile doc/Makefile
paul14c17fd2004-11-07 22:34:23 +00001277 ospfclient/Makefile tests/Makefile m4/Makefile redhat/Makefile
gdt69f1fc22004-08-27 15:57:35 +00001278 pkgsrc/Makefile
paul670bbf12004-11-12 09:05:00 +00001279 redhat/quagga.spec
gdtb7a97f82004-07-23 16:23:56 +00001280 lib/version.h
paul14c17fd2004-11-07 22:34:23 +00001281 doc/defines.texi
hassof695b012005-04-02 19:03:39 +00001282 isisd/topology/Makefile
gdtcbd04082004-08-31 18:16:36 +00001283 pkgsrc/bgpd.sh pkgsrc/ospf6d.sh pkgsrc/ospfd.sh
paulf31293a2004-11-12 09:27:04 +00001284 pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh])
paul670bbf12004-11-12 09:05:00 +00001285AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl])
hasso48577192004-11-19 06:41:49 +00001286## Hack, but working solution to avoid rebuilding of quagga.info.
1287## It's already in CVS until texinfo 4.7 is more common.
1288AC_CONFIG_COMMANDS([info-time],[touch doc/quagga.info])
paul14c17fd2004-11-07 22:34:23 +00001289AC_OUTPUT
paul7ea487b2003-03-17 02:05:07 +00001290
1291echo "
hassoc89f6492004-08-26 12:21:28 +00001292Quagga configuration
1293--------------------
1294quagga version : ${PACKAGE_VERSION}
paul7ea487b2003-03-17 02:05:07 +00001295host operationg system : ${host_os}
1296source code location : ${srcdir}
1297compiler : ${CC}
1298compiler flags : ${CFLAGS}
hasso2d582282005-03-28 15:29:07 +00001299includes : ${INCLUDES} ${SNMP_INCLUDES}
hasso71c0fb52003-05-25 20:18:13 +00001300linker flags : ${LDFLAGS} ${LIBS}
paule8f29842003-08-12 13:08:31 +00001301state file directory : ${quagga_statedir}
pauldc7a2bf2003-10-22 00:07:44 +00001302config file directory : `eval echo \`echo ${sysconfdir}\``
gdtd6b72f72003-12-03 17:24:27 +00001303example directory : `eval echo \`echo ${exampledir}\``
paul8d4aee52003-06-06 00:30:35 +00001304user to run as : ${enable_user}
1305group to run as : ${enable_group}
1306group for vty sockets : ${enable_vty_group}
gdtaa593d52003-12-22 20:15:53 +00001307config file mask : ${enable_configfile_mask}
1308log file mask : ${enable_logfile_mask}
pauldc7a2bf2003-10-22 00:07:44 +00001309
1310The above user and group must have read/write access to the state file
1311directory and to the config files in the config file directory.
paul7ea487b2003-03-17 02:05:07 +00001312"