]> git.proxmox.com Git - mirror_frr.git/blame - configure.ac
lib: --terminal option for all daemons
[mirror_frr.git] / configure.ac
CommitLineData
7ea487bc 1##
447a8fe9 2## Configure template file for FRRouting.
7ea487bc 3## autoconf will generate configure script.
4##
5## Copyright (c) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
e8f2984c 6## Portions Copyright (c) 2003 Paul Jakma <paul@dishone.st>
7ea487bc 7##
9bc6875a 8AC_PREREQ(2.60)
7ea487bc 9
4952d0f0 10AC_INIT(frr, 3.1-dev, [https://github.com/frrouting/frr/issues])
d6180888 11PACKAGE_URL="https://frrouting.org/"
447a8fe9 12PACKAGE_FULLNAME="FRRouting"
a07169b1
DL
13AC_SUBST(PACKAGE_FULLNAME)
14
5ee1bde7 15CONFIG_ARGS="$ac_configure_args"
80db5ac1 16AC_SUBST(CONFIG_ARGS)
a07169b1 17
fa1253d0 18AC_CONFIG_SRCDIR(lib/zebra.h)
62c9f504 19AC_CONFIG_MACRO_DIR([m4])
dfb9a545 20
21dnl -----------------------------------
22dnl Get hostname and other information.
23dnl -----------------------------------
24AC_CANONICAL_BUILD()
25AC_CANONICAL_HOST()
29ad6f68
DL
26
27AS_IF([test "$host" != "$build"], [
28 if test "$srcdir" = "."; then
29 AC_MSG_ERROR([cross-compilation is only possible with builddir separate from srcdir. create a separate directory and run as .../path-to-frr/configure.])
30 fi
31 test -d hosttools || mkdir hosttools
32 abssrc="`cd \"${srcdir}\"; pwd`"
33
34 AC_MSG_NOTICE([...])
35 AC_MSG_NOTICE([... cross-compilation: creating hosttools directory and self-configuring for build platform tools])
36 AC_MSG_NOTICE([... use HOST_CPPFLAGS / HOST_CFLAGS / HOST_LDFLAGS if neccessary])
37 AC_MSG_NOTICE([...])
38
39 ( CPPFLAGS="$HOST_CPPFLAGS"; \
40 CFLAGS="$HOST_CFLAGS"; \
41 LDFLAGS="$HOST_LDFLAGS"; \
42 cd hosttools; "${abssrc}/configure" "--host=$build" "--build=$build"; )
43
44 AC_MSG_NOTICE([...])
45 AC_MSG_NOTICE([... cross-compilation: finished self-configuring for build platform tools])
46 AC_MSG_NOTICE([...])
47
48 build_clippy="false"
4a121f99 49 HOSTTOOLS="hosttools/"
29ad6f68
DL
50], [
51 build_clippy="true"
4a121f99 52 HOSTTOOLS=""
29ad6f68 53])
4a121f99 54AC_SUBST(HOSTTOOLS)
29ad6f68 55AM_CONDITIONAL([BUILD_CLIPPY], [$build_clippy])
dfb9a545 56
f77cba1b
AS
57# Disable portability warnings -- our automake code (in particular
58# common.am) uses some constructs specific to gmake.
a6cf5da4 59AM_INIT_AUTOMAKE([1.12 -Wno-portability])
50cfc0d2 60m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])])
e54583ea 61AM_SILENT_RULES([yes])
303bb005 62AC_CONFIG_HEADERS(config.h)
7ea487bc 63
0be793e6 64AC_PATH_PROG(PERL, perl)
00c03bc9 65PKG_PROG_PKG_CONFIG
03ecfb67 66
d6b72f7a 67dnl default is to match previous behavior
c4f0efe6 68exampledir=${sysconfdir}
d6b72f7a 69AC_ARG_ENABLE([exampledir],
23925784 70 AS_HELP_STRING([--enable-exampledir],
d6b72f7a 71 [specify alternate directory for examples]),
72 exampledir="$enableval",)
c4f0efe6 73dnl XXX add --exampledir to autoconf standard directory list somehow
d6b72f7a 74AC_SUBST(exampledir)
75
cbd04084 76dnl default is to match previous behavior
77pkgsrcrcdir=""
cbd04084 78AC_ARG_ENABLE([pkgsrcrcdir],
23925784 79 AS_HELP_STRING([--enable-pkgsrcrcdir],
cbd04084 80 [specify directory for rc.d scripts]),
53d93be1 81 pkgsrcrcdir="$enableval",)
cbd04084 82dnl XXX add --pkgsrcrcdir to autoconf standard directory list somehow
cbd04084 83AC_SUBST(pkgsrcrcdir)
53d93be1 84AM_CONDITIONAL([PKGSRC], [test "x$pkgsrcrcdir" != "x"])
cbd04084 85
30771d65
DL
86AC_ARG_WITH([moduledir], [AS_HELP_STRING([--with-moduledir=DIR], [module directory (${libdir}/frr/modules)])], [
87 moduledir="$withval"
88], [
89 moduledir="\${libdir}/frr/modules"
90])
91AC_SUBST([moduledir], [$moduledir])
92
3f9c7369 93AC_ARG_ENABLE(tcmalloc,
428cd73f 94 AS_HELP_STRING([--enable-tcmalloc], [Turn on tcmalloc]),
3f9c7369
DS
95[case "${enableval}" in
96 yes) tcmalloc_enabled=true
97LIBS="$LIBS -ltcmalloc_minimal"
98 ;;
99 no) tcmalloc_enabled=false ;;
100 *) AC_MSG_ERROR(bad value ${enableval} for --enable-tcmalloc) ;;
101esac],[tcmalloc_enabled=false])
102
103
fbd0bae6
DL
104dnl Thanks autoconf, but we don't want a default -g -O2. We have our own
105dnl flag determination logic.
106CFLAGS="${CFLAGS:-}"
107
1969e4b9 108dnl --------------------
109dnl Check CC and friends
110dnl --------------------
a89b1641
DL
111dnl note orig_cflags is also used further down
112orig_cflags="$CFLAGS"
46bc0e43 113AC_LANG([C])
7ea487bc 114AC_PROG_CC
1969e4b9 115AC_PROG_CPP
46bc0e43 116AM_PROG_CC_C_O
a89b1641
DL
117dnl remove autoconf default "-g -O2"
118CFLAGS="$orig_cflags"
1769aff8 119AC_PROG_CC_C99
8aa42b82 120dnl NB: see C11 below
553bdfe3 121
a89b1641 122AC_PROG_EGREP
2fb975da 123PKG_PROG_PKG_CONFIG
a89b1641 124
553bdfe3
GT
125dnl autoconf 2.59 appears not to support AC_PROG_SED
126dnl AC_PROG_SED
127AC_CHECK_PROG([SED],[sed],[sed],[/bin/false])
1969e4b9 128
1689cf7e 129dnl try and enable CFLAGS that are useful for FRR
a89b1641 130dnl - specifically, options to control warnings
1969e4b9 131
b31fd749 132AC_USE_SYSTEM_EXTENSIONS
988225dd
DL
133AC_DEFUN([AC_C_FLAG], [{
134 AC_LANG_PUSH(C)
135 ac_c_flag_save="$CFLAGS"
136 CFLAGS="$CFLAGS $1"
137 AC_MSG_CHECKING([[whether $CC supports $1]])
138 AC_COMPILE_IFELSE(
139 [AC_LANG_PROGRAM([[]])],
140 [
141 AC_MSG_RESULT([yes])
142 m4_if([$3], [], [], [
143 CFLAGS="$ac_c_flag_save"
144 $3
145 ])
146 ], [
147 CFLAGS="$ac_c_flag_save"
148 AC_MSG_RESULT([no])
149 $2
150 ])
151 AC_LANG_POP(C)
152 }])
153
92e50261
DL
154AC_DEFUN([AC_LINK_IFELSE_FLAGS], [{
155 AC_LANG_PUSH(C)
156 ac_cflags_save="$CFLAGS"
157 ac_libs_save="$LIBS"
158 CFLAGS="$CFLAGS $1"
159 LIBS="$LIBS $2"
160 AC_LINK_IFELSE(
161 [$3],
162 [
163 AC_MSG_RESULT([yes])
164 CFLAGS="$ac_cflags_save"
165 LIBS="$ac_libs_save"
166 $5
167 ], [
168 AC_MSG_RESULT([no])
169 CFLAGS="$ac_cflags_save"
170 LIBS="$ac_libs_save"
171 $4
172 ])
173 AC_LANG_POP(C)
174 }])
175
a89b1641
DL
176dnl ICC won't bail on unknown options without -diag-error 10006
177dnl need to do this first so we get useful results for the other options
178AC_C_FLAG([-diag-error 10006])
179
8aa42b82
DL
180dnl AC_PROG_CC_C99 may change CC to include -std=gnu99 or something
181ac_cc="$CC"
182CC="${CC% -std=gnu99}"
183CC="${CC% -std=c99}"
184
185AC_C_FLAG([-std=gnu11], [CC="$ac_cc"], [CC="$CC -std=gnu11"])
186
a89b1641
DL
187dnl if the user specified any CFLAGS, we don't add "-g -Os/-O2" here
188if test "z$orig_cflags" = "z"; then
189 AC_C_FLAG([-g])
190 AC_C_FLAG([-Os], [
191 AC_C_FLAG([-O2])
192 ])
193fi
194
195dnl always want these CFLAGS
196AC_C_FLAG([-fno-omit-frame-pointer])
197AC_C_FLAG([-Wall])
198AC_C_FLAG([-Wextra])
199AC_C_FLAG([-Wmissing-prototypes])
200AC_C_FLAG([-Wmissing-declarations])
201AC_C_FLAG([-Wpointer-arith])
202AC_C_FLAG([-Wbad-function-cast])
203AC_C_FLAG([-Wwrite-strings])
204if test x"${enable_gcc_ultra_verbose}" = x"yes" ; then
205 AC_C_FLAG([-Wcast-qual])
206 AC_C_FLAG([-Wstrict-prototypes])
207 AC_C_FLAG([-Wmissing-noreturn])
208 AC_C_FLAG([-Wmissing-format-attribute])
209 AC_C_FLAG([-Wunreachable-code])
210 AC_C_FLAG([-Wpacked])
211 AC_C_FLAG([-Wpadded])
6a4b8832 212else
a89b1641 213 AC_C_FLAG([-Wno-unused-result])
1969e4b9 214fi
a89b1641
DL
215AC_C_FLAG([-Wno-unused-parameter])
216AC_C_FLAG([-Wno-missing-field-initializers])
217
218dnl ICC emits a broken warning for const char *x = a ? "b" : "c";
219dnl for some reason the string consts get 'promoted' to char *,
220dnl triggering a const to non-const conversion warning.
221AC_C_FLAG([-diag-disable 3179])
1969e4b9 222
aa9584c1
DS
223if test x"${enable_werror}" = x"yes" ; then
224 WERROR="-Werror"
225fi
226AC_SUBST(WERROR)
227
2e83e8e9
DL
228dnl need link on this one, not compile
229AC_LANG_PUSH(C)
230ac_ld_flag_save="$LDFLAGS"
231LDFLAGS="$LDFLAGS -rdynamic"
232AC_MSG_CHECKING([[whether linker supports -rdynamic]])
233AC_LINK_IFELSE(
234 [AC_LANG_PROGRAM([[]])],
235 [AC_MSG_RESULT([yes])],
236 [
237 LDFLAGS="$ac_ld_flag_save"
238 AC_MSG_RESULT([no])
239 ])
240AC_LANG_POP(C)
241
b31fd749
DL
242dnl ----------
243dnl Essentials
244dnl ----------
245
246AX_PTHREAD([
247 CC="$PTHREAD_CC"
248 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
249 LIBS="$PTHREAD_LIBS $LIBS"
250], [
1689cf7e 251 AC_MSG_FAILURE([This FRR version needs pthreads])
b31fd749
DL
252])
253
7ea487bc 254dnl --------------
255dnl Check programs
256dnl --------------
7ea487bc 257AC_PROG_INSTALL
6f0e3f6e 258AC_PROG_LN_S
7ea487bc 259AC_PROG_MAKE_SET
260AC_CHECK_TOOL(AR, ar)
7ea487bc 261
d46d2a24
PJ
262dnl -----------------
263dnl System extensions
264dnl -----------------
d46d2a24 265AC_GNU_SOURCE
7ea487bc 266
87efd646 267dnl -------
268dnl libtool
269dnl -------
95bb8305 270LT_INIT
87efd646 271
7ea487bc 272dnl ----------------------
273dnl Packages configuration
274dnl ----------------------
1080c13f
JN
275AC_ARG_WITH(pkg-extra-version,
276 AS_HELP_STRING([--with-pkg-extra-version=VER], [add extra version field, for packagers/distributions]),
277 [EXTRAVERSION=$withval],)
0be793e6
DL
278AC_ARG_WITH(pkg-git-version,
279 AS_HELP_STRING([--with-pkg-git-version], [add git information to MOTD and build version string]),
a16dcf7c 280 [ test "x$withval" != "xno" && with_pkg_git_version="yes" ])
08c369bd
DS
281AC_ARG_WITH(vtysh_pager,
282 AS_HELP_STRING([--with-vtysh-pager=PAGER], [control what pager is compiled in as default]),
283 VTYSH_PAGER=$withval, VTYSH_PAGER="more")
7ea487bc 284AC_ARG_ENABLE(vtysh,
1689cf7e 285 AS_HELP_STRING([--disable-vtysh], [do not build integrated vty shell for FRR]))
cbcd9bfc 286AC_ARG_ENABLE(doc,
23925784 287 AS_HELP_STRING([--disable-doc], [do not build docs]))
7ea487bc 288AC_ARG_ENABLE(zebra,
23925784 289 AS_HELP_STRING([--disable-zebra], [do not build zebra daemon]))
7ea487bc 290AC_ARG_ENABLE(bgpd,
23925784 291 AS_HELP_STRING([--disable-bgpd], [do not build bgpd]))
7ea487bc 292AC_ARG_ENABLE(ripd,
23925784 293 AS_HELP_STRING([--disable-ripd], [do not build ripd]))
7ea487bc 294AC_ARG_ENABLE(ripngd,
23925784 295 AS_HELP_STRING([--disable-ripngd], [do not build ripngd]))
7ea487bc 296AC_ARG_ENABLE(ospfd,
23925784 297 AS_HELP_STRING([--disable-ospfd], [do not build ospfd]))
7ea487bc 298AC_ARG_ENABLE(ospf6d,
23925784 299 AS_HELP_STRING([--disable-ospf6d], [do not build ospf6d]))
eac6e3f0
RW
300AC_ARG_ENABLE(ldpd,
301 AS_HELP_STRING([--enable-ldpd], [build ldpd]))
2fb975da
TT
302AC_ARG_ENABLE(nhrpd,
303 AS_HELP_STRING([--disable-nhrpd], [do not build nhrpd]))
7f57883e
DS
304AC_ARG_ENABLE(eigrpd,
305 AS_HELP_STRING([--disable-eigrpd], [do not build eigrpd]))
ca10883e
DS
306AC_ARG_ENABLE(babeld,
307 AS_HELP_STRING([--disable-babeld], [do not build babeld]))
9473e340
DS
308AC_ARG_ENABLE(watchfrr,
309 AS_HELP_STRING([--disable-watchfrr], [do not build watchfrr]))
9e867fe6 310AC_ARG_ENABLE(isisd,
c3a9461e 311 AS_HELP_STRING([--disable-isisd], [do not build isisd]))
12e41d03 312AC_ARG_ENABLE(pimd,
23925784 313 AS_HELP_STRING([--disable-pimd], [do not build pimd]))
7ea487bc 314AC_ARG_ENABLE(bgp-announce,
23925784 315 AS_HELP_STRING([--disable-bgp-announce,], [turn off BGP route announcement]))
65efcfce 316AC_ARG_ENABLE(bgp-vnc,
f95f2ad9 317 AS_HELP_STRING([--disable-bgp-vnc],[turn off BGP VNC support]))
65efcfce
LB
318AC_ARG_WITH(rfp-path,
319 AS_HELP_STRING([--with-rfp-path[=DIR]],[path to replaced stub RFP used with BGP VNC]))
7ea487bc 320AC_ARG_ENABLE(snmp,
23925784 321 AS_HELP_STRING([--enable-snmp=ARG], [enable SNMP support (smux or agentx)]))
7ea487bc 322AC_ARG_WITH(libpam,
23925784 323 AS_HELP_STRING([--with-libpam], [use libpam for PAM support in vtysh]))
71c0fb50 324AC_ARG_ENABLE(tcp-zebra,
23925784 325 AS_HELP_STRING([--enable-tcp-zebra], [enable TCP/IP socket connection between zebra and protocol daemon]))
1ef74ef7 326AC_ARG_ENABLE(ospfapi,
23925784 327 AS_HELP_STRING([--disable-ospfapi], [do not build OSPFAPI to access the OSPF LSA Database]))
1ef74ef7 328AC_ARG_ENABLE(ospfclient,
23925784
DL
329 AS_HELP_STRING([--disable-ospfclient], [do not build OSPFAPI client for OSPFAPI,
330 (this is the default if --disable-ospfapi is set)]))
7ea487bc 331AC_ARG_ENABLE(multipath,
23925784 332 AS_HELP_STRING([--enable-multipath=ARG], [enable multipath function, ARG must be digit]))
fe86b484 333AC_ARG_ENABLE(user,
b2f36157 334 AS_HELP_STRING([--enable-user=USER], [user to run FRR suite as (default frr)]))
fe86b484 335AC_ARG_ENABLE(group,
b2f36157 336 AS_HELP_STRING([--enable-group=GROUP], [group to run FRR suite as (default frr)]))
edd7c245 337AC_ARG_ENABLE(vty_group,
23925784 338 AS_HELP_STRING([--enable-vty-group=ARG], [set vty sockets to have specified group as owner]))
aa593d5e 339AC_ARG_ENABLE(configfile_mask,
23925784 340 AS_HELP_STRING([--enable-configfile-mask=ARG], [set mask for config files]))
aa593d5e 341AC_ARG_ENABLE(logfile_mask,
23925784 342 AS_HELP_STRING([--enable-logfile-mask=ARG], [set mask for log files]))
5fd1f747 343AC_ARG_ENABLE(shell_access,
23925784 344 AS_HELP_STRING([--enable-shell-access], [Allow users to access shell/telnet/ssh]))
71c0fb50 345AC_ARG_ENABLE(rtadv,
23925784 346 AS_HELP_STRING([--disable-rtadv], [disable IPV6 router advertisement feature]))
ca776988 347AC_ARG_ENABLE(irdp,
23925784 348 AS_HELP_STRING([--enable-irdp], [enable IRDP server support in zebra]))
41d3fc96 349AC_ARG_ENABLE(capabilities,
23925784 350 AS_HELP_STRING([--disable-capabilities], [disable using POSIX capabilities]))
47f6aef0 351AC_ARG_ENABLE(rusage,
23925784 352 AS_HELP_STRING([--disable-rusage], [disable using getrusage]))
6b6942f9 353AC_ARG_ENABLE(gcc_ultra_verbose,
23925784 354 AS_HELP_STRING([--enable-gcc-ultra-verbose], [enable ultra verbose GCC warnings]))
3453a712 355AC_ARG_ENABLE(linux24_tcp_md5,
23925784 356 AS_HELP_STRING([--enable-linux24-tcp-md5], [enable support for old, Linux-2.4 RFC2385 patch]))
8c99b4c1 357AC_ARG_ENABLE(backtrace,
23925784 358 AS_HELP_STRING([--disable-backtrace,], [disable crash backtraces (default autodetect)]))
924b9229 359AC_ARG_ENABLE(time-check,
23925784 360 AS_HELP_STRING([--disable-time-check], [disable slow thread warning messages]))
25f45887 361AC_ARG_ENABLE(pcreposix,
23925784 362 AS_HELP_STRING([--enable-pcreposix], [enable using PCRE Posix libs for regex functions]))
5adc2528 363AC_ARG_ENABLE(fpm,
23925784 364 AS_HELP_STRING([--enable-fpm], [enable Forwarding Plane Manager support]))
ddd82ff6 365AC_ARG_ENABLE(systemd,
23925784 366 AS_HELP_STRING([--enable-systemd], [enable Systemd support]))
aa9584c1
DS
367AC_ARG_ENABLE(werror,
368 AS_HELP_STRING([--enable-werror], [enable -Werror (recommended for developers only)]))
000cf1fb 369AC_ARG_ENABLE(cumulus,
23925784 370 AS_HELP_STRING([--enable-cumulus], [enable Cumulus Switch Special Extensions]))
df970aa6
DS
371AC_ARG_ENABLE(datacenter,
372 AS_HELP_STRING([--enable-datacenter], [enable Compilation for Data Center Extensions]))
76981cd3
DS
373AC_ARG_ENABLE(rr-semantics,
374 AS_HELP_STRING([--disable-rr-semantics], [disable the v6 Route Replace semantics]))
dad253b4
AS
375AC_ARG_ENABLE([protobuf],
376 AS_HELP_STRING([--enable-protobuf], [Enable experimental protobuf support]))
28436d6d 377AC_ARG_ENABLE([oldvpn_commands],
fcc65b0f 378 AS_HELP_STRING([--enable-oldvpn-commands], [Keep old vpn commands]))
6b6942f9 379
112072ac
DS
380AC_CHECK_HEADERS(json-c/json.h)
381AC_CHECK_LIB(json-c, json_object_get, LIBS="$LIBS -ljson-c")
382if test $ac_cv_lib_json_c_json_object_get = no; then
10b8ab26
DS
383 AC_CHECK_LIB(json, json_object_get, LIBS="$LIBS -ljson")
384 if test $ac_cv_lib_json_json_object_get = no; then
385 AC_MSG_ERROR([lib json is needed to compile])
386 fi
c2f4c19c
DS
387fi
388
3b8282a8
AS
389AC_ARG_ENABLE([dev_build],
390 AS_HELP_STRING([--enable-dev-build], [build for development]))
391
924b9229 392if test x"${enable_time_check}" != x"no" ; then
393 if test x"${enable_time_check}" = x"yes" -o x"${enable_time_check}" = x ; then
394 AC_DEFINE(CONSUMED_TIME_CHECK,5000000,Consumed Time Check)
395 else
396 AC_DEFINE_UNQUOTED(CONSUMED_TIME_CHECK,$enable_time_check,Consumed Time Check)
397 fi
398fi
399
37219958
DS
400case "${enable_systemd}" in
401 "no") ;;
402 "yes")
403 AC_CHECK_LIB(systemd, sd_notify, LIBS="$LIBS -lsystemd")
404 if test $ac_cv_lib_systemd_sd_notify = no; then
405 AC_MSG_ERROR([enable systemd has been specified but systemd development env not found on your system])
63e30864
DS
406 else
407 AC_DEFINE(HAVE_SYSTEMD,,Compile systemd support in)
37219958
DS
408 fi
409 ;;
410 "*") ;;
411esac
ddd82ff6 412
76981cd3
DS
413if test "${enable_rr_semantics}" != "no" ; then
414 AC_DEFINE(HAVE_V6_RR_SEMANTICS,, Compile in v6 Route Replacement Semantics)
415fi
416
df970aa6
DS
417if test "${enable_datacenter}" = "yes" ; then
418 AC_DEFINE(HAVE_DATACENTER,,Compile extensions for a DataCenter)
8efe88ea
DL
419 DFLT_NAME="datacenter"
420else
421 DFLT_NAME="traditional"
000cf1fb 422fi
df970aa6
DS
423
424if test "${enable_cumulus}" = "yes" ; then
425 AC_DEFINE(HAVE_CUMULUS,,Compile Special Cumulus Code in)
426fi
427
8efe88ea
DL
428AC_SUBST(DFLT_NAME)
429AC_DEFINE_UNQUOTED(DFLT_NAME,["$DFLT_NAME"], Name of the configuration default set)
000cf1fb 430
576b6b5d
DS
431if test "${enable_shell_access}" = "yes"; then
432 AC_DEFINE(HAVE_SHELL_ACCESS,,Allow user to use ssh/telnet/bash)
433fi
434
4f8ea50c 435AM_CONDITIONAL([FPM], [test "x$enable_fpm" = "xyes"])
5adc2528 436
3b8282a8
AS
437if test "x${enable_dev_build}" = "xyes"; then
438 AC_DEFINE(DEV_BUILD,,Build for development)
439fi
440AM_CONDITIONAL([DEV_BUILD], [test "x$enable_dev_build" = "xyes"])
441
29ad6f68
DL
442#
443# Python for clippy
444#
445AS_IF([test "$host" = "$build"], [
446 PYTHONCONFIG=""
447
448 # ordering:
449 # 1. try python3, but respect the user's preference on which minor ver
450 # 2. try python, which might be py3 or py2 again on the user's preference
451 # 3. try python2 (can really only be 2.7 but eh)
452 # 4. try 3.5 > 3.4 > 3.3 > 3.2 > 2.7 through pkg-config (no user pref)
453 #
454 # (AX_PYTHON_DEVEL has no clue about py3 vs py2)
455 # (AX_PYTHON does not do what we need)
456
457 AC_CHECK_TOOLS([PYTHONCONFIG], [python3-config python-config python2-config])
458 if test -n "$PYTHONCONFIG"; then
459 PYTHON_CFLAGS="`\"${PYTHONCONFIG}\" --includes`"
460 PYTHON_LIBS="`\"${PYTHONCONFIG}\" --libs`"
461
462 AC_MSG_CHECKING([whether we found a working Python version])
463 AC_LINK_IFELSE_FLAGS([$PYTHON_CFLAGS], [$PYTHON_LIBS], [AC_LANG_PROGRAM([
464#include <Python.h>
465#if PY_VERSION_HEX < 0x02070000
466#error python too old
467#endif
468int main(void);
469],
470[
471{
472 Py_Initialize();
473 return 0;
474}
475])], [
476 PYTHONCONFIG=""
477 unset PYTHON_LIBS
478 unset PYTHON_CFLAGS
479 ])
480 fi
481
482 if test -z "$PYTHONCONFIG"; then
483 PKG_CHECK_MODULES([PYTHON], python-3.5, [], [
484 PKG_CHECK_MODULES([PYTHON], python-3.4, [], [
485 PKG_CHECK_MODULES([PYTHON], python-3.3, [], [
486 PKG_CHECK_MODULES([PYTHON], python-3.2, [], [
487 PKG_CHECK_MODULES([PYTHON], python-2.7, [], [
488 AC_MSG_FAILURE([could not find python-config or pkg-config python, please install Python development files from libpython-dev or similar])
489 ])])])])])
490
491
492 AC_MSG_CHECKING([whether we found a working Python version])
493 AC_LINK_IFELSE_FLAGS([$PYTHON_CFLAGS], [$PYTHON_LIBS], [AC_LANG_PROGRAM([
494#include <Python.h>
495#if PY_VERSION_HEX < 0x02070000
496#error python too old
497#endif
498int main(void);
499],
500[
501{
502 Py_Initialize();
503 return 0;
504}
505])], [
506 AC_MSG_FAILURE([could not find python-config or pkg-config python, please install Python development files from libpython-dev or similar])
507 ])
508 fi
509])
510AC_SUBST(PYTHON_CFLAGS)
511AC_SUBST(PYTHON_LIBS)
512
dad253b4
AS
513#
514# Logic for protobuf support.
515#
516if test "$enable_protobuf" = "yes"; then
517 have_protobuf=yes
518
519 # Check for protoc-c
520 AC_CHECK_PROG([PROTOC_C], [protoc-c], [protoc-c], [/bin/false])
521 if test "x$PROTOC_C" = "x/bin/false"; then
522 have_protobuf=no
523 else
524 found_protobuf_c=no
525 PKG_CHECK_MODULES([PROTOBUF_C], libprotobuf-c >= 0.14,
526 [found_protobuf_c=yes],
527 [AC_MSG_RESULT([pkg-config did not find libprotobuf-c])])
528
529 if test "x$found_protobuf_c" = "xyes"; then
530 LDFLAGS="$LDFLAGS $PROTOBUF_C_LIBS"
531 CFLAGS="$CFLAGS $PROTOBUF_C_CFLAGS"
532 else
533 AC_CHECK_HEADER([google/protobuf-c/protobuf-c.h], [],
534 [have_protobuf=no; AC_MSG_RESULT([Couldn't find google/protobuf-c.h])])
535 fi
536 fi
537fi
538
28436d6d
PG
539#
540# Logic for old vpn commans support.
541#
fcc65b0f 542if test "$enable_oldvpn_commands" = "yes"; then
28436d6d
PG
543 AC_DEFINE(KEEP_OLD_VPN_COMMANDS,, [Define for compiling with old vpn commands])
544fi
545
dad253b4
AS
546# Fail if the user explicity enabled protobuf support and we couldn't
547# find the compiler or libraries.
548if test "x$have_protobuf" = "xno" && test "x$enable_protobuf" = "xyes"; then
549 AC_MSG_ERROR([Protobuf enabled explicitly but can't find libraries/tools])
550fi
551
552if test "x$have_protobuf" = "xyes"; then
553 AC_DEFINE(HAVE_PROTOBUF,, protobuf)
554fi
555
556AM_CONDITIONAL([HAVE_PROTOBUF], [test "x$have_protobuf" = "xyes"])
557
558#
559# End of logic for protobuf support.
560#
561
7ea487bc 562if test "${enable_tcp_zebra}" = "yes"; then
563 AC_DEFINE(HAVE_TCP_ZEBRA,,Use TCP for zebra communication)
564fi
565
3453a712
PJ
566if test "${enable_linux24_tcp_md5}" = "yes"; then
567 AC_DEFINE(HAVE_TCP_MD5_LINUX24,,Old Linux 2.4 TCP MD5 Signature Patch)
568fi
569
d2a0ccc6 570AC_MSG_CHECKING(if zebra should be configurable to send Route Advertisements)
571if test "${enable_rtadv}" != "no"; then
71c0fb50 572 AC_MSG_RESULT(yes)
d2a0ccc6 573 AC_DEFINE(HAVE_RTADV,,Enable IPv6 Routing Advertisement support)
2487bea1 574else
575 AC_MSG_RESULT(no)
71c0fb50 576fi
7ea487bc 577
ca776988 578if test "${enable_irdp}" = "yes"; then
579 AC_DEFINE(HAVE_IRDP,, IRDP )
580fi
581
0b02a1b4
JAG
582if test x"${enable_user}" = x"no"; then
583 enable_user=""
584else
585 if test x"${enable_user}" = x"yes" || test x"${enable_user}" = x""; then
b2f36157 586 enable_user="frr"
0b02a1b4 587 fi
b2f36157 588 AC_DEFINE_UNQUOTED(FRR_USER, "${enable_user}", frr User)
edd7c245 589fi
edd7c245 590
0b02a1b4
JAG
591if test x"${enable_group}" = x"no"; then
592 enable_group=""
593else
594 if test x"${enable_group}" = x"yes" || test x"${enable_group}" = x""; then
b2f36157 595 enable_group="frr"
0b02a1b4 596 fi
b2f36157 597 AC_DEFINE_UNQUOTED(FRR_GROUP, "${enable_group}", frr Group)
edd7c245 598fi
edd7c245 599
600if test x"${enable_vty_group}" = x"yes" ; then
8d4aee5d 601 AC_MSG_ERROR([--enable-vty-group requires a group as argument, not yes])
79cb2169 602elif test x"${enable_vty_group}" != x""; then
8d4aee5d 603 if test x"${enable_vty_group}" != x"no"; then
edd7c245 604 AC_DEFINE_UNQUOTED(VTY_GROUP, "${enable_vty_group}", VTY Sockets Group)
605 fi
606fi
26275b05 607AC_SUBST([enable_user])
608AC_SUBST([enable_group])
609AC_SUBST([enable_vty_group])
edd7c245 610
aa593d5e 611enable_configfile_mask=${enable_configfile_mask:-0600}
612AC_DEFINE_UNQUOTED(CONFIGFILE_MASK, ${enable_configfile_mask}, Mask for config files)
613
614enable_logfile_mask=${enable_logfile_mask:-0600}
615AC_DEFINE_UNQUOTED(LOGFILE_MASK, ${enable_logfile_mask}, Mask for log files)
616
7a6da5ba 617MPATH_NUM=1
7ea487bc 618
619case "${enable_multipath}" in
7c5d2b76 620 0)
7a6da5ba 621 MPATH_NUM=64
7c5d2b76 622 ;;
90fb3e13 623 [[1-9]|[1-9][0-9]|[1-9][0-9][0-9]])
7a6da5ba 624 MPATH_NUM="${enable_multipath}"
7ea487bc 625 ;;
626 "")
627 ;;
628 *)
6f0e3f6e 629 AC_MSG_FAILURE([Please specify digit to enable multipath ARG])
7ea487bc 630 ;;
631esac
632
7a6da5ba 633AC_DEFINE_UNQUOTED(MULTIPATH_NUM, $MPATH_NUM, Maximum number of paths for a route)
7ea487bc 634
08c369bd
DS
635AC_DEFINE_UNQUOTED(VTYSH_PAGER, "$VTYSH_PAGER", [What pager to use])
636
1080c13f
JN
637dnl -----------------------------------
638dnl Add extra version string to package
639dnl name, string and version fields.
640dnl -----------------------------------
641if test "x${EXTRAVERSION}" != "x" ; then
0be793e6
DL
642 VERSION="${VERSION}${EXTRAVERSION}"
643 PACKAGE_VERSION="${PACKAGE_VERSION}${EXTRAVERSION}"
3ab11ecc 644 AC_SUBST(PACKAGE_EXTRAVERSION, ["${EXTRAVERSION}"])
0be793e6 645 PACKAGE_STRING="${PACKAGE_STRING}${EXTRAVERSION}"
1080c13f
JN
646fi
647
a16dcf7c
DL
648if test "x$with_pkg_git_version" = "xyes"; then
649 if test -d "${srcdir}/.git"; then
650 AC_DEFINE(GIT_VERSION, [1], [include git version info])
651 else with_pkg_git_version="no"
652 AC_MSG_WARN([--with-pkg-git-version given, but this is not a git checkout])
653 fi
654fi
655AM_CONDITIONAL([GIT_VERSION], [test "x$with_pkg_git_version" = "xyes"])
0be793e6 656
6f0e3f6e
PJ
657dnl ------------------------------------
658dnl Check C keywords and standard types
659dnl ------------------------------------
660AC_C_CONST
661AC_C_INLINE
6f0e3f6e 662AC_C_VOLATILE
dc7a2bf1 663AC_HEADER_STDC
6f0e3f6e
PJ
664dnl AC_TYPE_PID_T
665AC_TYPE_UID_T
666AC_TYPE_MODE_T
667AC_TYPE_SIZE_T
6f0e3f6e 668AC_STRUCT_TM
dc7a2bf1 669
6f0e3f6e
PJ
670dnl -------------------------
671dnl Check other header files.
672dnl -------------------------
24f5e2fc
DL
673AC_CHECK_HEADERS([stropts.h sys/ksym.h \
674 linux/version.h asm/types.h \
675 sys/cdefs.h])
6f0e3f6e 676
899a4fd2
DL
677ac_stdatomic_ok=false
678AC_DEFINE(FRR_AUTOCONF_ATOMIC, 1, [did autoconf checks for atomic funcs])
679AC_CHECK_HEADER([stdatomic.h],[
680
681 AC_MSG_CHECKING([whether _Atomic qualifier works])
682 AC_LINK_IFELSE([AC_LANG_SOURCE([[
683#include <stdatomic.h>
684int main(int argc, char **argv) {
685 _Atomic int i = 0;
686 return i;
687}
688]])], [
689 AC_DEFINE(HAVE_STDATOMIC_H, 1, [found stdatomic.h])
690 AC_MSG_RESULT([yes])
691 ac_stdatomic_ok=true
692 ], [
693 AC_MSG_RESULT([no])
694 ])
695])
696
697AS_IF([$ac_stdatomic_ok], [true], [
698 AC_MSG_CHECKING([for __atomic_* builtins])
699 AC_LINK_IFELSE([AC_LANG_SOURCE([[
700int main(int argc, char **argv) {
701 volatile int i = 1;
702 __atomic_store_n (&i, 0, __ATOMIC_RELEASE);
703 return __atomic_load_n (&i, __ATOMIC_ACQUIRE);
704}
705]])], [
706 AC_DEFINE(HAVE___ATOMIC, 1, [found __atomic builtins])
707 AC_MSG_RESULT([yes])
708 ], [
709 AC_MSG_RESULT([no])
710
711 dnl FreeBSD 9 has a broken stdatomic.h where _Atomic doesn't work
712 AC_MSG_CHECKING([for __sync_* builtins])
713 AC_LINK_IFELSE([AC_LANG_SOURCE([[
714int main(int argc, char **argv) {
715 volatile int i = 1;
716 __sync_fetch_and_sub (&i, 1);
717 return __sync_val_compare_and_swap (&i, 0, 1);
718}
719]])], [
720 AC_DEFINE(HAVE___SYNC, 1, [found __sync builtins])
721 AC_MSG_RESULT([yes])
722
723 AC_MSG_CHECKING([for __sync_swap builtin])
724 AC_LINK_IFELSE([AC_LANG_SOURCE([[
725int main(int argc, char **argv) {
726 volatile int i = 1;
727 return __sync_swap (&i, 2);
728}
729]])], [
730 AC_DEFINE(HAVE___SYNC_SWAP, 1, [found __sync_swap builtin])
731 AC_MSG_RESULT([yes])
732 ], [
733 AC_MSG_RESULT([no])
734 ])
735
736 ], [
737 AC_MSG_RESULT([no])
738 AC_MSG_FAILURE([stdatomic.h unavailable and $CC has neither __atomic nor __sync builtins])
739 ])
740 ])
741])
742
6f0e3f6e 743dnl Utility macro to avoid retyping includes all the time
8e4da10b 744m4_define([FRR_INCLUDES],
6f0e3f6e
PJ
745[#ifdef SUNOS_5
746#define _XPG4_2
747#define __EXTENSIONS__
748#endif
749#include <stdio.h>
24f5e2fc
DL
750#include <stdlib.h>
751#include <stddef.h>
752#include <sys/types.h>
6f0e3f6e 753/* sys/conf.h depends on param.h on FBSD at least */
24f5e2fc 754#include <sys/param.h>
6f0e3f6e 755/* Required for MAXSIG */
24f5e2fc
DL
756#include <signal.h>
757#include <sys/socket.h>
ea057677
HT
758#ifdef __APPLE__
759# define __APPLE_USE_RFC_3542
760#endif
24f5e2fc
DL
761#include <netinet/in.h>
762#include <sys/time.h>
763#include <time.h>
764#include <net/if.h>
2b43bf23
DO
765])dnl
766
767dnl Same applies for HAVE_NET_IF_VAR_H, which HAVE_NETINET6_ND6_H and
768dnl HAVE_NETINET_IN_VAR_H depend upon. But if_var.h depends on if.h, hence
769dnl an additional round for it.
770
8e4da10b 771AC_CHECK_HEADERS([net/if_var.h], [], [], FRR_INCLUDES)
2b43bf23 772
8e4da10b
DL
773m4_define([FRR_INCLUDES],
774FRR_INCLUDES
2b43bf23
DO
775[#if HAVE_NET_IF_VAR_H
776# include <net/if_var.h>
777#endif
778])dnl
779
24f5e2fc
DL
780AC_CHECK_HEADERS([netinet/in_var.h \
781 net/if_dl.h net/netopt.h \
782 inet/nd.h netinet/ip_icmp.h \
6f0e3f6e 783 sys/sysctl.h sys/sockio.h kvm.h sys/conf.h],
8e4da10b 784 [], [], FRR_INCLUDES)
6f0e3f6e
PJ
785
786AC_CHECK_HEADERS([ucontext.h], [], [],
787[#ifndef __USE_GNU
788#define __USE_GNU
789#endif /* __USE_GNU */
8e4da10b 790FRR_INCLUDES
6f0e3f6e
PJ
791])
792
bccbd141
JT
793m4_define([UCONTEXT_INCLUDES],
794[#include <ucontext.h>])dnl
795
796AC_CHECK_MEMBERS([ucontext_t.uc_mcontext.uc_regs],
797 [], [], [UCONTEXT_INCLUDES])
798AC_CHECK_MEMBERS([ucontext_t.uc_mcontext.regs],
799 [AC_CHECK_MEMBERS([ucontext_t.uc_mcontext.regs.nip],
800 [], [], [UCONTEXT_INCLUDES])],
801 [], [UCONTEXT_INCLUDES])
802AC_CHECK_MEMBERS([ucontext_t.uc_mcontext.gregs],
803 [], [], [UCONTEXT_INCLUDES])
804
8e4da10b
DL
805m4_define([FRR_INCLUDES],
806FRR_INCLUDES
24f5e2fc
DL
807[
808#include <sys/un.h>
809#include <netinet/in_systm.h>
6f0e3f6e
PJ
810#if HAVE_NETINET_IN_VAR_H
811# include <netinet/in_var.h>
812#endif
813#if HAVE_NET_IF_DL_H
814# include <net/if_dl.h>
815#endif
6f0e3f6e
PJ
816#if HAVE_NET_NETOPT_H
817# include <net/netopt.h>
818#endif
24f5e2fc 819#include <net/route.h>
6f0e3f6e
PJ
820#if HAVE_INET_ND_H
821# include <inet/nd.h>
822#endif
24f5e2fc 823#include <arpa/inet.h>
11770e10
PJ
824/* Required for IDRP */
825#if HAVE_NETINET_IP_ICMP_H
826# include <netinet/ip_icmp.h>
827#endif
6f0e3f6e 828])dnl
dc7a2bf1 829
fa3232e1 830dnl V6 headers are checked below, after we check for v6
7ea487bc 831
ddfeb486
DL
832AC_MSG_CHECKING([which operating system interface to use])
833case "$host_os" in
834 sunos* | solaris2*)
835 AC_MSG_RESULT([Solaris])
836
837 AC_DEFINE(SUNOS_5, 1, [SunOS 5])
838 AC_DEFINE(SOLARIS_IPV6, 1, Solaris IPv6)
839
840 AC_CHECK_LIB(socket, main)
841 AC_CHECK_LIB(nsl, main)
842 AC_CHECK_LIB(umem, main)
843 AC_CHECK_FUNCS([printstack], [
844 AC_DEFINE([HAVE_PRINTSTACK],1,[Solaris printstack])
845 AC_DEFINE([HAVE_STACK_TRACE],1,[Stack symbols decode functionality])
846 ])
847 CURSES=-lcurses
848 SOLARIS="solaris"
849 ;;
850 linux*)
851 AC_MSG_RESULT([Linux])
852
853 AC_DEFINE(GNU_LINUX,,GNU Linux)
854 AC_DEFINE(HAVE_NETLINK,,netlink)
855 AC_DEFINE(LINUX_IPV6,1,Linux IPv6 stack)
856
857 dnl Linux has a compilation problem with mixing
858 dnl netinet/in.h and linux/in6.h they are not
859 dnl compatible. There has been discussion on
860 dnl how to fix it but no real progress on implementation
861 dnl when they fix it, remove this
862 AC_DEFINE(IPV6_MINHOPCOUNT, 73, Linux ipv6 Min Hop Count)
863
864 AC_CHECK_DECLS([IFLA_INFO_SLAVE_KIND], [], [], [#include <linux/if_link.h>])
865 ;;
866 openbsd*)
867 AC_MSG_RESULT([OpenBSD])
868
869 AC_DEFINE(OPEN_BSD,,OpenBSD)
870 AC_DEFINE(KAME,1,KAME IPv6)
871 ;;
872 *)
873 AC_MSG_RESULT([BSD])
874
875 AC_DEFINE(HAVE_NET_RT_IFLIST,,NET_RT_IFLIST)
876 AC_DEFINE(KAME,1,KAME IPv6)
877 ;;
7ea487bc 878esac
879
62c9f504
PJ
880AC_SYS_LARGEFILE
881
7ea487bc 882dnl ---------------------
883dnl Integrated VTY option
884dnl ---------------------
885case "${enable_vtysh}" in
f0646db0
DS
886 "no") VTYSH="";;
887 *) VTYSH="vtysh";
7ea487bc 888 AC_DEFINE(VTYSH,,VTY shell)
fc9d0745 889dnl Vtysh uses libreadline, which looks for termcap functions at
6f0e3f6e 890dnl configure time. We follow readlines search order.
fc9d0745 891dnl The required procedures are in libtermcap on NetBSD, in
892dnl [TODO] on Linux, and in [TODO] on Solaris.
c0689394 893 AC_CHECK_LIB(termcap, tputs, LIBREADLINE="$LIBREADLINE -ltermcap",
a969459c 894 [AC_CHECK_LIB(tinfo, tputs, LIBREADLINE="$LIBREADLINE -ltinfo",
895 [AC_CHECK_LIB(curses, tputs, LIBREADLINE="$LIBREADLINE -lcurses",
896 [AC_CHECK_LIB(ncurses, tputs,
897 LIBREADLINE="$LIBREADLINE -lncurses")]
898 )]
899 )]
900 )
4c2f8e95 901 AC_CHECK_LIB(readline, main, LIBREADLINE="-lreadline $LIBREADLINE",,
a969459c 902 "$LIBREADLINE")
7ea487bc 903 if test $ac_cv_lib_readline_main = no; then
fc9d0745 904 AC_MSG_ERROR([vtysh needs libreadline but was not found and usable on your system.])
7ea487bc 905 fi
906 AC_CHECK_HEADER(readline/history.h)
907 if test $ac_cv_header_readline_history_h = no;then
908 AC_MSG_ERROR([readline is too old to have readline/history.h, please update to the latest readline library.])
909 fi
a969459c 910 AC_CHECK_LIB(readline, rl_completion_matches,
911 LIBREADLINE="$LIBREADLINE",, "$LIBREADLINE")
3d3de8c4 912 if test $ac_cv_lib_readline_rl_completion_matches = no; then
913 AC_DEFINE(rl_completion_matches,completion_matches,Old readline)
914 fi
915 ;;
7ea487bc 916esac
c0689394 917AC_SUBST(LIBREADLINE)
f027d331 918AM_CONDITIONAL(VTYSH, test "x$VTYSH" = "xvtysh")
7ea487bc 919
920dnl ----------
921dnl PAM module
6159928d 922dnl
1689cf7e 923dnl FRR detects the PAM library it is built against by checking for a
6159928d
DO
924dnl functional pam_misc.h (Linux-PAM) or openpam.h (OpenPAM) header. pam_misc.h
925dnl is known to #include pam_appl.h, the standard header of a PAM library, and
926dnl openpam.h doesn't do that, although depends on the header too. Hence a
927dnl little assistance to AC_CHECK_HEADER is necessary for the proper detection
928dnl of OpenPAM.
7ea487bc 929dnl ----------
24cd435b 930if test "$with_libpam" = "yes"; then
6f0e3f6e
PJ
931 AC_CHECK_HEADER([security/pam_misc.h],
932 [AC_DEFINE(HAVE_PAM_MISC_H,,Have pam_misc.h)
933 AC_DEFINE(PAM_CONV_FUNC,misc_conv,Have misc_conv)
934 pam_conv_func="misc_conv"
935 ],
8e4da10b 936 [], FRR_INCLUDES)
6f0e3f6e
PJ
937 AC_CHECK_HEADER([security/openpam.h],
938 [AC_DEFINE(HAVE_OPENPAM_H,,Have openpam.h)
939 AC_DEFINE(PAM_CONV_FUNC,openpam_ttyconv,Have openpam_ttyconv)
940 pam_conv_func="openpam_ttyconv"
941 ],
8e4da10b 942 [], FRR_INCLUDES[#include <security/pam_appl.h>])
24cd435b 943 if test -z "$ac_cv_header_security_pam_misc_h$ac_cv_header_security_openpam_h" ; then
944 AC_MSG_WARN([*** pam support will not be built ***])
945 with_libpam="no"
946 fi
947fi
948
7ea487bc 949if test "$with_libpam" = "yes"; then
6f0e3f6e 950dnl took this test from proftpds configure.in and suited to our needs
7ea487bc 951dnl -------------------------------------------------------------------------
952dnl
953dnl This next check looks funky due to a linker problem with some versions
954dnl of the PAM library. Prior to 0.72 release, the Linux PAM shared library
955dnl omitted requiring libdl linking information. PAM-0.72 or better ships
956dnl with RedHat 6.2 and Debian 2.2 or better.
957AC_CHECK_LIB(pam, pam_start,
24cd435b 958 [AC_CHECK_LIB(pam, $pam_conv_func,
7ea487bc 959 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
960 LIBPAM="-lpam"],
961 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
962 LIBPAM="-lpam -lpam_misc"]
963 )
964 ],
965
966 [AC_CHECK_LIB(pam, pam_end,
24cd435b 967 [AC_CHECK_LIB(pam, $pam_conv_func,
a159ed93 968 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
7ea487bc 969 LIBPAM="-lpam -ldl"],
a159ed93 970 [AC_DEFINE(USE_PAM,,Use PAM for authentication)
7ea487bc 971 LIBPAM="-lpam -ldl -lpam_misc"]
972 )
973 ],AC_MSG_WARN([*** pam support will not be built ***]),
974 [-ldl])
975 ]
976)
977fi
978AC_SUBST(LIBPAM)
979
980dnl -------------------------------
981dnl Endian-ness check
982dnl -------------------------------
983AC_WORDS_BIGENDIAN
984
985dnl -------------------------------
986dnl check the size in byte of the C
987dnl -------------------------------
988dnl AC_CHECK_SIZEOF(char)
989dnl AC_CHECK_SIZEOF(int)
990dnl AC_CHECK_SIZEOF(short)
991dnl AC_CHECK_SIZEOF(long)
992
993dnl ----------------------------
994dnl check existance of functions
995dnl ----------------------------
6f0e3f6e
PJ
996AC_FUNC_FNMATCH
997AC_FUNC_FORK
6f0e3f6e 998AC_FUNC_MKTIME
6f0e3f6e 999AC_FUNC_STAT
6f0e3f6e
PJ
1000
1001dnl -------------------------------
1002dnl bgpd needs pow() and hence libm
1003dnl -------------------------------
1004TMPLIBS="$LIBS"
1005AC_CHECK_HEADER([math.h],
1006 [AC_CHECK_LIB([m], [pow],
1007 [LIBM="-lm"
1008 LIBS="$LIBS $LIBM"
6f0e3f6e
PJ
1009 AC_CHECK_FUNCS(pow,[],[LIBM=""])
1010 ])
1011])
1012if test x"$LIBM" = x ; then
1013 AC_MSG_WARN([Unable to find working pow function - bgpd may not link])
1014fi
1015LIBS="$TMPLIBS"
1016AC_SUBST(LIBM)
1017
1018dnl ---------------
1019dnl other functions
1020dnl ---------------
24f5e2fc
DL
1021AC_CHECK_FUNCS([ \
1022 strlcat strlcpy \
316d0ae5 1023 getgrouplist])
6f0e3f6e 1024
13460c44
FL
1025AC_CHECK_HEADER([asm-generic/unistd.h],
1026 [AC_CHECK_DECL(__NR_setns,
1027 AC_DEFINE(HAVE_NETNS,, Have netns),,
8e4da10b 1028 FRR_INCLUDES [#include <asm-generic/unistd.h>
13460c44 1029 ])
428cd73f 1030 AC_CHECK_FUNCS(setns)]
13460c44
FL
1031 )
1032
238497fc
PJ
1033dnl --------------------------
1034dnl Determine IS-IS I/O method
1035dnl --------------------------
745bf05f
DL
1036AC_DEFINE(ISIS_METHOD_PFPACKET, 1, [ constant value for isis method pfpacket ])
1037AC_DEFINE(ISIS_METHOD_DLPI, 2, [ constant value for isis method dlpi ])
1038AC_DEFINE(ISIS_METHOD_BPF, 3, [ constant value for isis method bpf ])
238497fc
PJ
1039AC_CHECK_HEADER(net/bpf.h)
1040AC_CHECK_HEADER(sys/dlpi.h)
1041AC_MSG_CHECKING(zebra IS-IS I/O method)
ddfeb486
DL
1042
1043case "$host_os" in
1044 linux*)
1045 AC_MSG_RESULT(pfpacket)
1046 ISIS_METHOD_MACRO="ISIS_METHOD_PFPACKET"
1047 ;;
1048 solaris* | sunos*)
1049 AC_MSG_RESULT(DLPI)
1050 ISIS_METHOD_MACRO="ISIS_METHOD_DLPI"
1051 ;;
1052 *)
1053 if test $ac_cv_header_net_bpf_h = no; then
1054 if test $ac_cv_header_sys_dlpi_h = no; then
1055 AC_MSG_RESULT(none)
1056 AC_MSG_WARN([*** IS-IS support will not be built ***])
1057 ISISD=""
1058 else
1059 AC_MSG_RESULT(DLPI)
1060 fi
1061 ISIS_METHOD_MACRO="ISIS_METHOD_DLPI"
238497fc 1062 else
ddfeb486
DL
1063 AC_MSG_RESULT(BPF)
1064 ISIS_METHOD_MACRO="ISIS_METHOD_BPF"
238497fc 1065 fi
ddfeb486
DL
1066 ;;
1067esac
745bf05f 1068AC_DEFINE_UNQUOTED(ISIS_METHOD, $ISIS_METHOD_MACRO, [ selected method for isis, == one of the constants ])
238497fc 1069
b99760ab 1070dnl ------------------------------------
1071dnl check for broken CMSG_FIRSTHDR macro
1072dnl ------------------------------------
6c20046f 1073AC_MSG_CHECKING(for broken CMSG_FIRSTHDR)
5b087528 1074AC_RUN_IFELSE([AC_LANG_SOURCE([[
b99760ab 1075#ifdef SUNOS_5
1076#define _XPG4_2
1077#define __EXTENSIONS__
1078#endif
24f5e2fc 1079#include <stdlib.h>
b99760ab 1080#include <sys/types.h>
1081#include <sys/socket.h>
1082
1083main()
1084{
1085 struct msghdr msg;
1086 char buf[4];
1087
1088 msg.msg_control = buf;
1089 msg.msg_controllen = 0;
1090
1091 if (CMSG_FIRSTHDR(&msg) != NULL)
1092 exit(0);
1093 exit (1);
5b087528 1094}]])],[AC_MSG_RESULT(yes - using workaround) AC_DEFINE(HAVE_BROKEN_CMSG_FIRSTHDR,,Broken CMSG_FIRSTHDR)],
d33e8d7b 1095[AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)])
b99760ab 1096
42c98199 1097dnl ---------------------------------------------------------------
1098dnl figure out how to specify an interface in multicast sockets API
1099dnl ---------------------------------------------------------------
8e4da10b 1100AC_CHECK_MEMBERS([struct ip_mreqn.imr_ifindex], [], [], FRR_INCLUDES)
42c98199 1101
b3f2bf7c 1102AC_CHECK_HEADERS([linux/mroute.h], [], [],[
24f5e2fc
DL
1103 #include <sys/socket.h>
1104 #include <netinet/in.h>
b3f2bf7c
RW
1105 #define _LINUX_IN_H /* For Linux <= 2.6.25 */
1106 #include <linux/types.h>
1107])
1108
8e4da10b
DL
1109m4_define([FRR_INCLUDES],
1110FRR_INCLUDES
b3f2bf7c
RW
1111[#if HAVE_LINUX_MROUTE_H
1112# include <linux/mroute.h>
1113#endif
1114])dnl
1115
1116AC_CHECK_HEADERS([netinet/ip_mroute.h], [], [],[
24f5e2fc
DL
1117 #include <sys/socket.h>
1118 #include <sys/types.h>
1119 #include <netinet/in.h>
1120 #include <net/route.h>
b3f2bf7c
RW
1121])
1122
8e4da10b
DL
1123m4_define([FRR_INCLUDES],
1124FRR_INCLUDES
b3f2bf7c
RW
1125[#if HAVE_NETINET_IP_MROUTE_H
1126# include <netinet/ip_mroute.h>
1127#endif
1128])dnl
1129
42c98199 1130AC_MSG_CHECKING([for BSD struct ip_mreq hack])
24f5e2fc
DL
1131AC_TRY_COMPILE([#include <sys/param.h>],
1132[#if (defined(__FreeBSD__) && ((__FreeBSD_version >= 500022 && __FreeBSD_version < 700000) || (__FreeBSD_version < 500000 && __FreeBSD_version >= 440000))) || (defined(__NetBSD__) && defined(__NetBSD_Version__) && __NetBSD_Version__ >= 106010000) || defined(__OpenBSD__) || defined(__APPLE__) || defined(__DragonFly__) || defined(__sun)
42c98199 1133 return (0);
1134#else
1135 #error No support for BSD struct ip_mreq hack detected
1136#endif],[AC_MSG_RESULT(yes)
1137AC_DEFINE(HAVE_BSD_STRUCT_IP_MREQ_HACK,,[Can pass ifindex in struct ip_mreq])],
1138AC_MSG_RESULT(no))
1139
10d04cdb
DT
1140AC_MSG_CHECKING([for RFC3678 protocol-independed API])
1141AC_TRY_COMPILE([
1142#include <sys/types.h>
1143#include <netinet/in.h>
1144], [struct group_req gr; int sock; setsockopt(sock, IPPROTO_IP, MCAST_JOIN_GROUP, (void*)&gr, sizeof(gr));
1145], [AC_MSG_RESULT(yes)
1146AC_DEFINE(HAVE_RFC3678,1,[Have RFC3678 protocol-independed API])],
1147AC_MSG_RESULT(no))
1148
c543a173
AS
1149dnl ---------------------------------------------------------------
1150dnl figure out how to check link-state
1151dnl ---------------------------------------------------------------
24f5e2fc
DL
1152AC_CHECK_HEADER( [net/if_media.h],
1153 [m4_define([LINK_DETECT_INCLUDES],
8e4da10b 1154 FRR_INCLUDES
24f5e2fc
DL
1155 [#include <net/if_media.h>
1156 ])
1157 AC_CHECK_MEMBERS( [struct ifmediareq.ifm_status],
1158 AC_DEFINE(HAVE_BSD_LINK_DETECT,,[BSD link-detect]),
1159 [], LINK_DETECT_INCLUDES)],
1160 [],
8e4da10b 1161 FRR_INCLUDES)
c543a173 1162
9234b382
DV
1163dnl ---------------------------------------------------------------
1164dnl Additional, newer way to check link-state using ifi_link_state.
1165dnl Not available in all BSD's when ifmediareq available
1166dnl ---------------------------------------------------------------
24f5e2fc
DL
1167AC_CHECK_MEMBERS([struct if_data.ifi_link_state],
1168 AC_DEFINE(HAVE_BSD_IFI_LINK_STATE,,[BSD ifi_link_state available]),
8e4da10b 1169 [], FRR_INCLUDES)
9234b382 1170
0df7c91f
PJ
1171dnl ------------------------
1172dnl TCP_MD5SIG socket option
1173dnl ------------------------
1174
1175AC_CHECK_HEADER([netinet/tcp.h],
1176 [m4_define([MD5_INCLUDES],
8e4da10b 1177 FRR_INCLUDES
0df7c91f
PJ
1178 [#include <netinet/tcp.h>
1179 ])
1180 AC_CHECK_DECLS([TCP_MD5SIG], [], [], MD5_INCLUDES)],
1181 [],
8e4da10b 1182 FRR_INCLUDES)
0df7c91f
PJ
1183if test $ac_cv_have_decl_TCP_MD5SIG = no; then
1184 AC_CHECK_HEADER([linux/tcp.h],
1185 [m4_define([MD5_INCLUDES],
8e4da10b 1186 FRR_INCLUDES
0df7c91f
PJ
1187 [#include <linux/tcp.h>
1188 ])
1189 AC_CHECK_DECLS([TCP_MD5SIG], [], [], MD5_INCLUDES)])
1190fi
1191
60060acc
RW
1192dnl ----------------------------------------------------------------------------
1193dnl figure out if domainname is available in the utsname struct (GNU extension).
1194dnl ----------------------------------------------------------------------------
1195AC_CHECK_MEMBERS([struct utsname.domainname], [], [], [#include <sys/utsname.h>])
1196
fa3232e1 1197dnl ------------------
1198dnl IPv6 header checks
1199dnl ------------------
24f5e2fc 1200AC_CHECK_HEADERS([netinet6/in6.h netinet/in6_var.h \
6f0e3f6e 1201 netinet6/in6_var.h netinet6/nd6.h], [], [],
8e4da10b 1202 FRR_INCLUDES)
fa3232e1 1203
8e4da10b
DL
1204m4_define([FRR_INCLUDES],dnl
1205FRR_INCLUDES
6f0e3f6e
PJ
1206[#if HAVE_NETINET6_IN6_H
1207#include <netinet6/in6.h>
1208#endif
1209#if HAVE_NETINET_IN6_VAR_H
1210#include <netinet/in6_var.h>
1211#endif
24f5e2fc 1212#include <netinet/icmp6.h>
6f0e3f6e
PJ
1213#if HAVE_NETINET6_IN6_VAR_H
1214# include <netinet6/in6_var.h>
1215#endif
1216#if HAVE_NETINET6_ND6_H
fbf24544 1217# include <netinet6/nd6.h>
6f0e3f6e
PJ
1218#endif
1219])dnl
1220
cbcd9bfc
JT
1221dnl disable doc check
1222if test "${enable_doc}" = "no";then
1223 DOC=""
1224else
1225 DOC="doc"
1226fi
1227
7ea487bc 1228dnl --------------------
1229dnl Daemon disable check
1230dnl --------------------
64d44794 1231AM_CONDITIONAL(ZEBRA, test "${enable_zebra}" != "no")
7ea487bc 1232
1233if test "${enable_bgpd}" = "no";then
1234 BGPD=""
1235else
1236 BGPD="bgpd"
1237fi
f027d331 1238AM_CONDITIONAL(BGPD, test "x$BGPD" = "xbgpd")
7ea487bc 1239
1240if test "${enable_ripd}" = "no";then
1241 RIPD=""
1242else
1243 RIPD="ripd"
1244fi
f027d331 1245AM_CONDITIONAL(RIPD, test "x$RIPD" = "xripd")
7ea487bc 1246
1247if test "${enable_ospfd}" = "no";then
1248 OSPFD=""
1249else
1250 OSPFD="ospfd"
1251fi
f027d331 1252AM_CONDITIONAL(OSPFD, test "x$OSPFD" = "xospfd")
7ea487bc 1253
6ba069f3
DS
1254if test "${enable_ldpd}" = "no";then
1255 LDPD=""
1256else
eac6e3f0 1257 LDPD="ldpd"
87ab4aec 1258 AC_DEFINE(HAVE_LDPD, 1, ldpd)
eac6e3f0
RW
1259fi
1260AM_CONDITIONAL(LDPD, test "x$LDPD" = "xldpd")
1261
42350cfc 1262NHRPD=""
ddfeb486
DL
1263case "$host_os" in
1264 linux*)
1265 if test "${enable_nhrpd}" != "no"; then
1266 NHRPD="nhrpd"
1267 fi
1268 ;;
1269 *)
1270 if test "${enable_nhrpd}" = "yes"; then
1271 AC_MSG_ERROR([nhrpd requires kernel APIs that are only present on Linux.])
1272 fi
1273 ;;
1274esac
2fb975da
TT
1275AM_CONDITIONAL(NHRPD, test "x$NHRPD" = "xnhrpd")
1276
7f57883e
DS
1277if test "${enable_eigrpd}" = "no";then
1278 EIGRPD=""
1279else
1280 EIGRPD="eigrpd"
1281fi
1282AM_CONDITIONAL(EIGRPD, test "x$EIGRPD" = "xeigrpd")
1283
9473e340
DS
1284if test "${enable_watchfrr}" = "no";then
1285 WATCHFRR=""
d0199430 1286else
9473e340 1287 WATCHFRR="watchfrr"
d0199430 1288fi
9473e340 1289AM_CONDITIONAL(WATCHFRR, test "x$WATCHFRR" = "xwatchfrr")
d0199430 1290
1ef74ef7 1291OSPFCLIENT=""
cd66cd4c 1292if test "${enable_ospfapi}" != "no";then
9a569848 1293 AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI)
1ef74ef7 1294
cd66cd4c 1295 if test "${enable_ospfclient}" != "no";then
1ef74ef7 1296 OSPFCLIENT="ospfclient"
1ef74ef7 1297 fi
7ea487bc 1298fi
cd66cd4c 1299
f027d331 1300AM_CONDITIONAL(OSPFCLIENT, test "x$OSPFCLIENT" = "xospfclient")
7ea487bc 1301
1302case "${enable_ripngd}" in
7ea487bc 1303 "no" ) RIPNGD="";;
80ec006d 1304 * ) RIPNGD="ripngd";;
7ea487bc 1305esac
f027d331 1306AM_CONDITIONAL(RIPNGD, test "x$RIPNGD" = "xripngd")
7ea487bc 1307
ca10883e
DS
1308case "${enable_babeld}" in
1309 "no" ) BABELD="";;
1310 * ) BABELD="babeld";;
1311esac
1312AM_CONDITIONAL(BABELD, test "x$BABELD" = "xbabeld")
1313
7ea487bc 1314case "${enable_ospf6d}" in
7ea487bc 1315 "no" ) OSPF6D="";;
80ec006d 1316 * ) OSPF6D="ospf6d";;
7ea487bc 1317esac
f027d331 1318AM_CONDITIONAL(OSPF6D, test "x$OSPF6D" = "xospf6d")
7ea487bc 1319
9e867fe6 1320case "${enable_isisd}" in
9e867fe6 1321 "no" ) ISISD="";;
c3a9461e 1322 * ) ISISD="isisd";;
9e867fe6 1323esac
f027d331 1324AM_CONDITIONAL(ISISD, test "x$ISISD" = "xisisd")
9e867fe6 1325
12e41d03 1326case "${enable_pimd}" in
12e41d03 1327 "no" ) PIMD="";;
f0646db0 1328 * ) PIMD="pimd";;
12e41d03
DL
1329esac
1330AM_CONDITIONAL(PIMD, test "x$PIMD" = "xpimd")
1331
7ea487bc 1332if test "${enable_bgp_announce}" = "no";then
750e8146
PJ
1333 AC_DEFINE(DISABLE_BGP_ANNOUNCE,1,Disable BGP installation to zebra)
1334else
1335 AC_DEFINE(DISABLE_BGP_ANNOUNCE,0,Disable BGP installation to zebra)
7ea487bc 1336fi
1337
65efcfce
LB
1338if test "${with_rfp_path}" = "yes" || test x"${with_rfp_path}" = x""; then
1339 with_rfp_path="bgpd/rfp-example"
1340fi
1341if test "${with_rfp_path}" != "no"; then
1342 VNC_RFP_PATH="${with_rfp_path}"
1343 AC_SUBST(VNC_RFP_PATH)
1344fi
1345
f95f2ad9 1346if test "${enable_bgp_vnc}" != "no";then
65efcfce
LB
1347 AC_DEFINE(ENABLE_BGP_VNC,1,Enable BGP VNC support)
1348 RFPTEST="${with_rfp_path}/rfptest"
1349 LIBRFP="${with_rfp_path}/librfp"
1350 RFPINC="${with_rfp_path}/librfp"
1351else
1352 RFPTEST=
1353 LIBRFP=
1354 RFPINC="bgpd/rfp-example/librfp"
1355fi
1356# set
f95f2ad9 1357AM_CONDITIONAL([ENABLE_BGP_VNC], [test x${enable_bgp_vnc} != xno])
65efcfce 1358
cbcd9bfc 1359AC_SUBST(DOC)
65efcfce
LB
1360AC_SUBST(RFPTEST)
1361AC_SUBST(LIBRFP)
1362AC_SUBST(RFPINC)
ca10883e 1363AC_SUBST(BABELD)
7ea487bc 1364AC_SUBST(BGPD)
1365AC_SUBST(RIPD)
1366AC_SUBST(RIPNGD)
1367AC_SUBST(OSPFD)
1368AC_SUBST(OSPF6D)
eac6e3f0 1369AC_SUBST(LDPD)
2fb975da 1370AC_SUBST(NHRPD)
7f57883e 1371AC_SUBST(EIGRPD)
9473e340 1372AC_SUBST(WATCHFRR)
9e867fe6 1373AC_SUBST(ISISD)
12e41d03 1374AC_SUBST(PIMD)
97cee877 1375AC_SUBST(SOLARIS)
7ea487bc 1376AC_SUBST(VTYSH)
7ea487bc 1377AC_SUBST(CURSES)
1378AC_SUBST(OSPFCLIENT)
1ef74ef7 1379AC_SUBST(OSPFAPI)
7ea487bc 1380AC_CHECK_LIB(crypt, crypt)
1381AC_CHECK_LIB(resolv, res_init)
7ea487bc 1382
25f45887
JJ
1383dnl ---------------------------
1384dnl check system has PCRE regexp
1385dnl ---------------------------
1386if test "x$enable_pcreposix" = "xyes"; then
ad9a0825
DL
1387 AC_CHECK_LIB(pcreposix, regexec, [], [
1388 AC_MSG_ERROR([--enable-pcreposix given but unable to find libpcreposix])
1389 ])
25f45887 1390fi
25f45887 1391AC_SUBST(HAVE_LIBPCREPOSIX)
7ea487bc 1392
2fb975da
TT
1393dnl ------------------
1394dnl check C-Ares library
1395dnl ------------------
42350cfc 1396if test "${NHRPD}" != ""; then
92e50261
DL
1397 PKG_CHECK_MODULES([CARES], [libcares], , [
1398 AC_MSG_ERROR([trying to build nhrpd, but libcares not found. install c-ares and its -dev headers.])
1399 ])
2fb975da
TT
1400fi
1401
1402
7ea487bc 1403dnl ------------------
b1fc9acb 1404dnl check Net-SNMP library
7ea487bc 1405dnl ------------------
d6be5fb9 1406if test "${enable_snmp}" != ""; then
08d7f653
VB
1407 AC_PATH_TOOL([NETSNMP_CONFIG], [net-snmp-config], [no])
1408 if test x"$NETSNMP_CONFIG" = x"no"; then
1409 AC_MSG_ERROR([--enable-snmp given but unable to find net-snmp-config])
1410 fi
46081234
DL
1411 SNMP_LIBS="`${NETSNMP_CONFIG} --agent-libs`"
1412 SNMP_CFLAGS="`${NETSNMP_CONFIG} --base-cflags`"
08d7f653 1413 AC_MSG_CHECKING([whether we can link to Net-SNMP])
92e50261 1414 AC_LINK_IFELSE_FLAGS([$SNMP_CFLAGS], [$SNMP_LIBS], [AC_LANG_PROGRAM([
08d7f653
VB
1415int main(void);
1416],
1417[
1418{
1419 return 0;
1420}
92e50261 1421])], [
08d7f653 1422 AC_MSG_ERROR([--enable-snmp given but not usable])])
d6be5fb9
VB
1423 case "${enable_snmp}" in
1424 yes)
1425 SNMP_METHOD=agentx
1426 ;;
1427 smux|agentx)
1428 SNMP_METHOD="${enable_snmp}"
1429 ;;
1430 *)
1431 AC_MSG_ERROR([--enable-snmp given with an unknown method (${enable_snmp}). Use smux or agentx])
1432 ;;
1433 esac
1434 AH_TEMPLATE([SNMP_SMUX], [Use SNMP SMUX to interface with snmpd])
1435 AH_TEMPLATE([SNMP_AGENTX], [Use SNMP AgentX to interface with snmpd])
1436 AC_DEFINE_UNQUOTED(AS_TR_CPP(SNMP_${SNMP_METHOD}),,SNMP method to interface with snmpd)
6cf9df08 1437fi
46081234
DL
1438AM_CONDITIONAL([SNMP], [test "x${SNMP_METHOD}" != "x"])
1439AC_SUBST(SNMP_LIBS)
1440AC_SUBST(SNMP_CFLAGS)
6cf9df08 1441
4db0cff1
QY
1442dnl ---------------
1443dnl math
1444dnl ---------------
1445AC_SEARCH_LIBS([sqrt], [m])
1446
b249c083
DL
1447dnl ---------------
1448dnl dlopen & dlinfo
1449dnl ---------------
30771d65
DL
1450AC_SEARCH_LIBS(dlopen, [dl dld], [], [
1451 AC_MSG_ERROR([unable to find the dlopen()])
1452])
1453
b249c083
DL
1454AC_CHECK_HEADERS([link.h])
1455
1456AC_MSG_CHECKING([for dlinfo(RTLD_DI_ORIGIN)])
1457AC_LINK_IFELSE([AC_LANG_PROGRAM([[
1458#include <stdlib.h>
1459#ifdef HAVE_LINK_H
1460#include <link.h>
1461#endif
1462#include <dlfcn.h>
1463]], [[
1464 char origin[1];
1465 dlinfo (NULL, RTLD_DI_ORIGIN, &origin);
1466]])], [
1467 AC_MSG_RESULT(yes)
1468 AC_DEFINE(HAVE_DLINFO_ORIGIN, 1, [Have dlinfo RTLD_DI_ORIGIN])
1469], [
1470 AC_MSG_RESULT(no)
1471])
1472
1473AC_MSG_CHECKING([for dlinfo(RTLD_DI_LINKMAP)])
1474AC_LINK_IFELSE([AC_LANG_PROGRAM([[
1475#include <stdlib.h>
1476#ifdef HAVE_LINK_H
1477#include <link.h>
1478#endif
1479#include <dlfcn.h>
1480]], [[
1481 struct link_map *lm = NULL;
1482 dlinfo (NULL, RTLD_DI_LINKMAP, &lm);
1483]])], [
1484 AC_MSG_RESULT(yes)
1485 AC_DEFINE(HAVE_DLINFO_LINKMAP, 1, [Have dlinfo RTLD_DI_LINKMAP])
1486], [
1487 AC_MSG_RESULT(no)
1488])
1489
6cf9df08 1490
62ff928b
DS
1491AM_CONDITIONAL(SNMP, test "x$SNMP_METHOD" = "xagentx")
1492
7ea487bc 1493dnl ---------------------------
6f0e3f6e 1494dnl sockaddr and netinet checks
7ea487bc 1495dnl ---------------------------
24f5e2fc
DL
1496AC_CHECK_TYPES([
1497 struct sockaddr_dl,
1498 struct vifctl, struct mfcctl, struct sioc_sg_req,
12e41d03 1499 vifi_t, struct sioc_vif_req, struct igmpmsg,
6f0e3f6e
PJ
1500 struct ifaliasreq, struct if6_aliasreq, struct in6_aliasreq,
1501 struct nd_opt_adv_interval, struct rt_addrinfo,
11770e10 1502 struct nd_opt_homeagent_info, struct nd_opt_adv_interval],
8e4da10b 1503 [], [], FRR_INCLUDES)
6f0e3f6e
PJ
1504
1505AC_CHECK_MEMBERS([struct sockaddr.sa_len,
1506 struct sockaddr_in.sin_len, struct sockaddr_un.sun_len,
ca3ccd87 1507 struct sockaddr_dl.sdl_len,
6f0e3f6e
PJ
1508 struct if6_aliasreq.ifra_lifetime,
1509 struct nd_opt_adv_interval.nd_opt_ai_type],
8e4da10b 1510 [], [], FRR_INCLUDES)
29c4c9bd 1511
6f0e3f6e 1512dnl ---------------------------
11770e10 1513dnl IRDP/pktinfo/icmphdr checks
6f0e3f6e
PJ
1514dnl ---------------------------
1515AC_CHECK_TYPES([struct in_pktinfo],
11770e10
PJ
1516 [AC_CHECK_TYPES([struct icmphdr],
1517 [if test "${enable_irdp}" != "no"; then
1518 AC_DEFINE(HAVE_IRDP,, IRDP)
1519 fi],
1520 [if test "${enable_irdp}" = "yes"; then
1521 AC_MSG_ERROR(['IRDP requires in_pktinfo at the moment!'])
8e4da10b 1522 fi], [FRR_INCLUDES])],
6f0e3f6e
PJ
1523 [if test "${enable_irdp}" = "yes"; then
1524 AC_MSG_ERROR(['IRDP requires in_pktinfo at the moment!'])
8e4da10b 1525 fi], [FRR_INCLUDES])
29c4c9bd 1526
12e41d03
DL
1527dnl -----------------------
1528dnl checking for IP_PKTINFO
1529dnl -----------------------
1530AC_MSG_CHECKING(for IP_PKTINFO)
1531AC_TRY_COMPILE([#include <netdb.h>], [
1532 int opt = IP_PKTINFO;
1533], [
1534 AC_MSG_RESULT(yes)
1535 AC_DEFINE(HAVE_IP_PKTINFO, 1, [Have IP_PKTINFO])
1536], [
1537 AC_MSG_RESULT(no)
1538])
1539
1540dnl ---------------------------
1541dnl checking for IP_RECVDSTADDR
1542dnl ---------------------------
1543AC_MSG_CHECKING(for IP_RECVDSTADDR)
1544AC_TRY_COMPILE([#include <netinet/in.h>], [
1545 int opt = IP_RECVDSTADDR;
1546], [
1547 AC_MSG_RESULT(yes)
1548 AC_DEFINE(HAVE_IP_RECVDSTADDR, 1, [Have IP_RECVDSTADDR])
1549], [
1550 AC_MSG_RESULT(no)
1551])
1552
1553dnl ----------------------
1554dnl checking for IP_RECVIF
1555dnl ----------------------
1556AC_MSG_CHECKING(for IP_RECVIF)
1557AC_TRY_COMPILE([#include <netinet/in.h>], [
1558 int opt = IP_RECVIF;
1559], [
1560 AC_MSG_RESULT(yes)
1561 AC_DEFINE(HAVE_IP_RECVIF, 1, [Have IP_RECVIF])
1562], [
1563 AC_MSG_RESULT(no)
1564])
1565
eac6e3f0
RW
1566dnl ----------------------
1567dnl checking for SO_BINDANY
1568dnl ----------------------
1569AC_MSG_CHECKING(for SO_BINDANY)
1570AC_TRY_COMPILE([#include <sys/socket.h>], [
1571 int opt = SO_BINDANY;
1572], [
1573 AC_MSG_RESULT(yes)
1574 AC_DEFINE(HAVE_SO_BINDANY, 1, [Have SO_BINDANY])
1575], [
1576 AC_MSG_RESULT(no)
1577])
1578
1579dnl ----------------------
1580dnl checking for IP_FREEBIND
1581dnl ----------------------
1582AC_MSG_CHECKING(for IP_FREEBIND)
1583AC_TRY_COMPILE([#include <netinet/in.h>], [
1584 int opt = IP_FREEBIND;
1585], [
1586 AC_MSG_RESULT(yes)
1587 AC_DEFINE(HAVE_IP_FREEBIND, 1, [Have IP_FREEBIND])
1588], [
1589 AC_MSG_RESULT(no)
1590])
1591
ba0cb3fe
DS
1592dnl --------------------------------------
1593dnl checking for be32dec existence or not
1594dnl --------------------------------------
1595AC_CHECK_DECLS([be32enc, be32dec], [], [],
1596 [#include <sys/endian.h>])
1597
c4376c9d
SH
1598dnl --------------------------------------
1599dnl checking for clock_time monotonic struct and call
1600dnl --------------------------------------
6511cab2
PJ
1601AC_CHECK_DECL(CLOCK_MONOTONIC,
1602 [AC_CHECK_LIB(rt, clock_gettime, [LIBS="$LIBS -lrt"])
9964fcfc 1603 AC_DEFINE(HAVE_CLOCK_MONOTONIC,, Have monotonic clock)
8e4da10b 1604], [AC_MSG_RESULT(no)], [FRR_INCLUDES])
c4376c9d 1605
bbf5ffa0
QY
1606dnl --------------------------------------
1607dnl checking for flex and bison
1608dnl --------------------------------------
4a06690f 1609
bbf5ffa0 1610AM_PROG_LEX
4a06690f 1611AC_MSG_CHECKING(version of flex)
1689cf7e
JAG
1612frr_ac_flex_version="$(eval $LEX -V | grep flex | head -n 1)"
1613frr_ac_flex_version="${frr_ac_flex_version##* }"
1614AC_MSG_RESULT([$frr_ac_flex_version])
1615AX_COMPARE_VERSION([$frr_ac_flex_version], [lt], [2.5.20], [
4a06690f
DL
1616 LEX="$SHELL $missing_dir/missing flex"
1617 if test -f "${srcdir}/lib/command_lex.c" -a -f "${srcdir}/lib/command_lex.h"; then
1618 AC_MSG_WARN([using pregenerated flex output files])
1619 else
1620 AC_MSG_ERROR([flex failure and pregenerated files not included (probably a git build)])
1621 fi
1622 AC_SUBST([LEX_OUTPUT_ROOT], [lex.yy])
1623 AC_SUBST([LEXLIB], [''])
1624])
0d37f9f3 1625
bbf5ffa0 1626AC_PROG_YACC
0d37f9f3
DL
1627dnl thanks GNU bison for this b*llshit...
1628AC_MSG_CHECKING(version of bison)
1689cf7e
JAG
1629frr_ac_bison_version="$(eval $YACC -V | grep bison | head -n 1)"
1630frr_ac_bison_version="${frr_ac_bison_version##* }"
1631frr_ac_bison_missing="false"
1632case "x${frr_ac_bison_version}" in
0d37f9f3
DL
1633 x2.7*)
1634 BISON_OPENBRACE='"'
1635 BISON_CLOSEBRACE='"'
05dbb7df 1636 BISON_VERBOSE=''
1689cf7e 1637 AC_MSG_RESULT([$frr_ac_bison_version - 2.7 or older])
0d37f9f3
DL
1638 ;;
1639 x2.*|x1.*)
1689cf7e 1640 AC_MSG_RESULT([$frr_ac_bison_version])
0d37f9f3 1641 AC_MSG_WARN([installed bison is too old. Please install GNU bison 2.7.x or newer.])
1689cf7e 1642 frr_ac_bison_missing="true"
0d37f9f3
DL
1643 ;;
1644 x)
1645 AC_MSG_RESULT([none])
1646 AC_MSG_WARN([could not determine bison version. Please install GNU bison 2.7.x or newer.])
1689cf7e 1647 frr_ac_bison_missing="true"
0d37f9f3
DL
1648 ;;
1649 *)
1650 BISON_OPENBRACE='{'
1651 BISON_CLOSEBRACE='}'
05dbb7df 1652 BISON_VERBOSE='-Dparse.error=verbose'
1689cf7e 1653 AC_MSG_RESULT([$frr_ac_bison_version - 3.0 or newer])
0d37f9f3
DL
1654 ;;
1655esac
1656AC_SUBST(BISON_OPENBRACE)
1657AC_SUBST(BISON_CLOSEBRACE)
05dbb7df 1658AC_SUBST(BISON_VERBOSE)
0d37f9f3 1659
1689cf7e 1660if $frr_ac_bison_missing; then
0d37f9f3
DL
1661 YACC="$SHELL $missing_dir/missing bison -y"
1662 if test -f "${srcdir}/lib/command_parse.c" -a -f "${srcdir}/lib/command_parse.h"; then
1663 AC_MSG_WARN([using pregenerated bison output files])
1664 else
1665 AC_MSG_ERROR([bison failure and pregenerated files not included (probably a git build)])
1666 fi
1667fi
bbf5ffa0 1668
edd7c245 1669dnl -------------------
1670dnl capabilities checks
1671dnl -------------------
41d3fc96 1672if test "${enable_capabilities}" != "no"; then
1673 AC_MSG_CHECKING(whether prctl PR_SET_KEEPCAPS is available)
1674 AC_TRY_COMPILE([#include <sys/prctl.h>],[prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);],
1675 [AC_MSG_RESULT(yes)
1676 AC_DEFINE(HAVE_PR_SET_KEEPCAPS,,prctl)
8e4da10b 1677 frr_ac_keepcaps="yes"],
41d3fc96 1678 AC_MSG_RESULT(no)
edd7c245 1679 )
8e4da10b 1680 if test x"${frr_ac_keepcaps}" = x"yes"; then
41d3fc96 1681 AC_CHECK_HEADERS(sys/capability.h)
1682 fi
1683 if test x"${ac_cv_header_sys_capability_h}" = x"yes"; then
1684 AC_CHECK_LIB(cap, cap_init,
1685 [AC_DEFINE(HAVE_LCAPS,1,Capabilities)
1686 LIBCAP="-lcap"
8e4da10b 1687 frr_ac_lcaps="yes"]
41d3fc96 1688 )
ceacedba 1689 else
1690 AC_CHECK_HEADERS(priv.h,
1691 [AC_MSG_CHECKING(Solaris style privileges are available)
1692 AC_TRY_COMPILE([#include <priv.h>],[getpflags(PRIV_AWARE);],
1693 [AC_MSG_RESULT(yes)
1694 AC_DEFINE(HAVE_SOLARIS_CAPABILITIES,1,getpflags)
8e4da10b 1695 frr_ac_scaps="yes"],
ceacedba 1696 AC_MSG_RESULT(no)
1697 )
1698 ]
1699 )
1700 fi
8e4da10b
DL
1701 if test x"${frr_ac_scaps}" = x"yes" \
1702 -o x"${frr_ac_lcaps}" = x"yes"; then
ceacedba 1703 AC_DEFINE(HAVE_CAPABILITIES,1,capabilities)
41d3fc96 1704 fi
edd7c245 1705fi
1706AC_SUBST(LIBCAP)
1707
fb2d1502 1708dnl ---------------------------
1709dnl check for glibc 'backtrace'
1710dnl ---------------------------
8c99b4c1
DL
1711if test x"${enable_backtrace}" != x"no" ; then
1712 backtrace_ok=no
1713 AC_CHECK_HEADER([execinfo.h], [
1714 AC_SEARCH_LIBS([backtrace], [execinfo], [
1715 AC_DEFINE(HAVE_GLIBC_BACKTRACE,,[Glibc backtrace])
1716 AC_DEFINE(HAVE_STACK_TRACE,,[Stack symbol decoding])
1717 backtrace_ok=yes
1718 ],, [-lm])
eda3529e 1719 ])
8c99b4c1
DL
1720
1721 if test x"${enable_backtrace}" = x"yes" -a x"${backtrace_ok}" = x"no"; then
1722 dnl user explicitly requested backtrace but we failed to find support
1723 AC_MSG_FAILURE([failed to find backtrace support])
1724 fi
1725fi
fb2d1502 1726
41be32bf
PJ
1727dnl -----------------------------------------
1728dnl check for malloc mallinfo struct and call
1729dnl this must try and link using LIBS, in
1730dnl order to check no alternative allocator
1731dnl has been specified, which might not provide
1732dnl mallinfo, e.g. such as Umem on Solaris.
1733dnl -----------------------------------------
6f0e3f6e 1734AC_CHECK_HEADER([malloc.h],
41be32bf
PJ
1735 [AC_MSG_CHECKING(whether mallinfo is available)
1736 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <malloc.h>]],
1737 [[struct mallinfo ac_x; ac_x = mallinfo ();]])],
1738 [AC_MSG_RESULT(yes)
1739 AC_DEFINE(HAVE_MALLINFO,,mallinfo)],
1740 AC_MSG_RESULT(no)
1741 )
8e4da10b 1742 ], [], FRR_INCLUDES)
41be32bf 1743
408ad943 1744dnl ----------
1745dnl configure date
1746dnl ----------
1747CONFDATE=`date '+%Y%m%d'`
1748AC_SUBST(CONFDATE)
1749
7ea487bc 1750dnl ------------------------------
a159ed93 1751dnl set paths for state directory
23bd12c3 1752dnl ------------------------------
e84999d9 1753AC_MSG_CHECKING(directory to use for state file)
23bd12c3 1754if test "${prefix}" = "NONE"; then
b2f36157 1755 frr_statedir_prefix="";
23bd12c3 1756else
b2f36157 1757 frr_statedir_prefix=${prefix}
23bd12c3 1758fi
1759if test "${localstatedir}" = '${prefix}/var'; then
8e4da10b 1760 for FRR_STATE_DIR in ${frr_statedir_prefix}/var/run dnl
b2f36157
DL
1761 ${frr_statedir_prefix}/var/adm dnl
1762 ${frr_statedir_prefix}/etc dnl
a159ed93 1763 /var/run dnl
1764 /var/adm dnl
1765 /etc dnl
1766 /dev/null;
23bd12c3 1767 do
8e4da10b 1768 test -d $FRR_STATE_DIR && break
23bd12c3 1769 done
8e4da10b 1770 frr_statedir=$FRR_STATE_DIR
23bd12c3 1771else
b2f36157 1772 frr_statedir=${localstatedir}
a159ed93 1773fi
b2f36157 1774if test $frr_statedir = "/dev/null"; then
a159ed93 1775 AC_MSG_ERROR('STATE DIRECTORY NOT FOUND! FIX OR SPECIFY --localstatedir!')
1776fi
b2f36157
DL
1777AC_MSG_RESULT(${frr_statedir})
1778AC_SUBST(frr_statedir)
1779
b2f36157 1780AC_DEFINE_UNQUOTED(LDPD_SOCKET, "$frr_statedir/ldpd.sock",ldpd control socket)
b2f36157 1781AC_DEFINE_UNQUOTED(ZEBRA_SERV_PATH, "$frr_statedir/zserv.api",zebra api socket)
b2f36157 1782AC_DEFINE_UNQUOTED(DAEMON_VTY_DIR, "$frr_statedir",daemon vty directory)
7ea487bc 1783
95c4aff2
DL
1784dnl autoconf does this, but it does it too late...
1785test "x$prefix" = xNONE && prefix=$ac_default_prefix
1786test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
1787
1788dnl get the full path, recursing through variables...
1789vtysh_bin="$bindir/vtysh"
1790for I in 1 2 3 4 5 6 7 8 9 10; do
1791 eval vtysh_bin="\"$vtysh_bin\""
1792done
1793AC_DEFINE_UNQUOTED(VTYSH_BIN_PATH, "$vtysh_bin",path to vtysh binary)
1794
a07169b1
DL
1795CFG_SYSCONF="$sysconfdir"
1796CFG_SBIN="$sbindir"
1797CFG_STATE="$frr_statedir"
30771d65 1798CFG_MODULE="$moduledir"
a07169b1
DL
1799for I in 1 2 3 4 5 6 7 8 9 10; do
1800 eval CFG_SYSCONF="\"$CFG_SYSCONF\""
1801 eval CFG_SBIN="\"$CFG_SBIN\""
1802 eval CFG_STATE="\"$CFG_STATE\""
30771d65 1803 eval CFG_MODULE="\"$CFG_MODULE\""
a07169b1
DL
1804done
1805AC_SUBST(CFG_SYSCONF)
1806AC_SUBST(CFG_SBIN)
1807AC_SUBST(CFG_STATE)
30771d65
DL
1808AC_SUBST(CFG_MODULE)
1809AC_DEFINE_UNQUOTED(MODULE_PATH, "$CFG_MODULE", path to modules)
a07169b1 1810
7ea487bc 1811dnl ---------------------------
1812dnl Check htonl works correctly
1813dnl ---------------------------
1814AC_MSG_CHECKING(for working htonl)
6f0e3f6e 1815AC_CACHE_VAL(ac_cv_htonl_works,
8e4da10b 1816 [AC_LINK_IFELSE([AC_LANG_PROGRAM([FRR_INCLUDES],[htonl (0);])],
6f0e3f6e
PJ
1817 [ac_cv_htonl_works=yes], [ac_cv_htonl_works=no])
1818 ]
1819)
7ea487bc 1820AC_MSG_RESULT($ac_cv_htonl_works)
1821
0f8b5fd5 1822AC_CONFIG_FILES([Makefile ripd/Makefile
9473e340 1823 ripngd/Makefile bgpd/Makefile ospfd/Makefile watchfrr/Makefile
eac6e3f0 1824 ospf6d/Makefile ldpd/Makefile isisd/Makefile vtysh/Makefile
53d93be1 1825 doc/Makefile ospfclient/Makefile tests/Makefile
22ea387f 1826 bgpd/rfp-example/rfptest/Makefile bgpd/rfp-example/librfp/Makefile
ca10883e 1827 babeld/Makefile
12e41d03 1828 pimd/Makefile
7f57883e 1829 eigrpd/Makefile
2fb975da 1830 nhrpd/Makefile
1018422a 1831 tools/Makefile
22ea387f 1832 redhat/frr.spec
3ab11ecc 1833 snapcraft/snapcraft.yaml
b7a97f82 1834 lib/version.h
8efe88ea 1835 tests/lib/cli/test_cli.refout
14c17fd8 1836 doc/defines.texi
461c7bee
DL
1837 doc/bgpd.8
1838 doc/isisd.8
1839 doc/ospf6d.8
1840 doc/ospfclient.8
1841 doc/ospfd.8
1842 doc/ldpd.8
1843 doc/ripd.8
6c85c081 1844 doc/eigrpd.8
461c7bee
DL
1845 doc/ripngd.8
1846 doc/pimd.8
caba6093 1847 doc/nhrpd.8
461c7bee 1848 doc/vtysh.1
9473e340 1849 doc/watchfrr.8
461c7bee 1850 doc/zebra.8
438f5286 1851 doc/frr.1
cbd04084 1852 pkgsrc/bgpd.sh pkgsrc/ospf6d.sh pkgsrc/ospfd.sh
7f57883e
DS
1853 pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh
1854 pkgsrc/eigrpd.sh])
65efcfce 1855
65efcfce 1856
26275b05 1857AC_CONFIG_FILES([solaris/Makefile])
1858
670bbf19 1859AC_CONFIG_FILES([vtysh/extract.pl],[chmod +x vtysh/extract.pl])
65efcfce 1860
1689cf7e 1861## Hack, but working solution to avoid rebuilding of frr.info.
48577196 1862## It's already in CVS until texinfo 4.7 is more common.
14c17fd8 1863AC_OUTPUT
7ea487bc 1864
1865echo "
447a8fe9 1866FRRouting configuration
b2f36157
DL
1867------------------------------
1868FRR version : ${PACKAGE_VERSION}
1080c13f 1869host operating system : ${host_os}
7ea487bc 1870source code location : ${srcdir}
1871compiler : ${CC}
1872compiler flags : ${CFLAGS}
6f0e3f6e 1873make : ${MAKE-make}
6f0e3f6e 1874linker flags : ${LDFLAGS} ${LIBS} ${LIBCAP} ${LIBREADLINE} ${LIBM}
b2f36157 1875state file directory : ${frr_statedir}
dc7a2bf1 1876config file directory : `eval echo \`echo ${sysconfdir}\``
d6b72f7a 1877example directory : `eval echo \`echo ${exampledir}\``
30771d65 1878module directory : ${CFG_MODULE}
b2f36157
DL
1879user to run as : ${enable_user}
1880group to run as : ${enable_group}
1881group for vty sockets : ${enable_vty_group}
aa593d5e 1882config file mask : ${enable_configfile_mask}
1883log file mask : ${enable_logfile_mask}
dad253b4 1884zebra protobuf enabled : ${have_protobuf:-no}
dc7a2bf1 1885
1886The above user and group must have read/write access to the state file
105b8239 1887directory and to the config files in the config file directory."