paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 1 | ## |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 2 | ## Configure template file for Quagga. |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 3 | ## autoconf will generate configure script. |
| 4 | ## |
| 5 | ## Copyright (c) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro <kunihiro@zebra.org> |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 6 | ## Portions Copyright (c) 2003 Paul Jakma <paul@dishone.st> |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 7 | ## |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 8 | AC_PREREQ(2.53) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 9 | |
paul | bf547fe | 2003-10-15 23:12:31 +0000 | [diff] [blame] | 10 | AC_INIT(quagga, 0.96.4, [bug-zebra@gnu.org]) |
paul | fa1253d | 2003-09-24 05:09:26 +0000 | [diff] [blame] | 11 | AC_CONFIG_SRCDIR(lib/zebra.h) |
| 12 | AM_INIT_AUTOMAKE() |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 13 | AM_CONFIG_HEADER(config.h) |
| 14 | |
| 15 | dnl ----------------------------------- |
| 16 | dnl Get hostname and other information. |
| 17 | dnl ----------------------------------- |
| 18 | AC_CANONICAL_HOST |
| 19 | |
| 20 | dnl ------------ |
| 21 | dnl Check CFLAGS |
| 22 | dnl ------------ |
| 23 | AC_ARG_WITH(cflags, |
| 24 | [ --with-cflags Set CFLAGS for use in compilation.]) |
| 25 | if test "x$with_cflags" != "x" ; then |
| 26 | CFLAGS="$with_cflags" ; cflags_specified=yes ; |
| 27 | elif test -n "$CFLAGS" ; then |
| 28 | cflags_specified=yes ; |
| 29 | fi |
| 30 | |
| 31 | dnl -------- |
| 32 | dnl Check CC |
| 33 | dnl -------- |
| 34 | AC_PROG_CC |
| 35 | |
| 36 | dnl ----------------------------------------- |
| 37 | dnl If CLFAGS doesn\'t exist set default value |
| 38 | dnl ----------------------------------------- |
| 39 | if test "x$cflags_specified" = "x" ; then |
| 40 | CFLAGS="$CFLAGS -Wall" |
| 41 | fi |
| 42 | |
| 43 | dnl -------------- |
| 44 | dnl Check programs |
| 45 | dnl -------------- |
| 46 | AC_PROG_CPP |
| 47 | AC_PROG_INSTALL |
| 48 | AC_PROG_MAKE_SET |
| 49 | AC_CHECK_TOOL(AR, ar) |
| 50 | AC_CHECK_TOOL(RANLIB, ranlib, :) |
| 51 | |
| 52 | dnl --------- |
| 53 | dnl AIX check |
| 54 | dnl --------- |
| 55 | AC_AIX |
| 56 | |
| 57 | dnl ---------------------- |
| 58 | dnl Packages configuration |
| 59 | dnl ---------------------- |
| 60 | AC_ARG_ENABLE(vtysh, |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 61 | [ --enable-vtysh, Make integrated vty shell for Quagga]) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 62 | AC_ARG_ENABLE(ipv6, |
| 63 | [ --disable-ipv6 turn off IPv6 related features and daemons]) |
| 64 | AC_ARG_ENABLE(zebra, |
| 65 | [ --disable-zebra do not build zebra daemon]) |
| 66 | AC_ARG_ENABLE(bgpd, |
| 67 | [ --disable-bgpd do not build bgpd]) |
| 68 | AC_ARG_ENABLE(ripd, |
| 69 | [ --disable-ripd do not build ripd]) |
| 70 | AC_ARG_ENABLE(ripngd, |
| 71 | [ --disable-ripngd do not build ripngd]) |
| 72 | AC_ARG_ENABLE(ospfd, |
| 73 | [ --disable-ospfd do not build ospfd]) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 74 | AC_ARG_ENABLE(ospf6d, |
| 75 | [ --disable-ospf6d do not build ospf6d]) |
| 76 | AC_ARG_ENABLE(bgp-announce, |
| 77 | [ --disable-bgp-announce, turn off BGP route announcement]) |
| 78 | AC_ARG_ENABLE(netlink, |
| 79 | [ --enable-netlink force to use Linux netlink interface]) |
| 80 | AC_ARG_ENABLE(broken-aliases, |
| 81 | [ --enable-broken-aliases enable aliases as distinct interfaces for Linux 2.2.X]) |
| 82 | AC_ARG_ENABLE(snmp, |
| 83 | [ --enable-snmp enable SNMP support]) |
| 84 | AC_ARG_WITH(libpam, |
| 85 | [ --with-libpam use libpam for PAM support in vtysh]) |
hasso | 71c0fb5 | 2003-05-25 20:18:13 +0000 | [diff] [blame] | 86 | AC_ARG_ENABLE(tcp-zebra, |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 87 | [ --enable-tcp-zebra enable TCP/IP socket connection between zebra and protocol daemon]) |
| 88 | dnl Temporary option until OSPF NSSA implementation complete |
| 89 | AC_ARG_ENABLE(nssa, |
| 90 | [ --enable-nssa enable OSPF NSSA option]) |
| 91 | AC_ARG_ENABLE(opaque-lsa, |
paul | 1ef74ef | 2003-03-21 15:16:05 +0000 | [diff] [blame] | 92 | [ --enable-opaque-lsa enable OSPF Opaque-LSA with OSPFAPI support (RFC2370)]) |
| 93 | AC_ARG_ENABLE(ospfapi, |
| 94 | [ --disable-ospfapi do not build OSPFAPI to access the OSPF LSA Database, |
| 95 | (this is the default if --enable-opaque-lsa is not set)]) |
| 96 | AC_ARG_ENABLE(ospfclient, |
| 97 | [ --disable-ospfclient do not build OSPFAPI client for OSPFAPI, |
| 98 | (this is the default if --disable-ospfapi is set)]) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 99 | AC_ARG_ENABLE(ospf-te, |
| 100 | [ --enable-ospf-te enable Traffic Engineering Extension to OSPF]) |
| 101 | AC_ARG_ENABLE(multipath, |
| 102 | [ --enable-multipath=ARG enable multipath function, ARG must be digit]) |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 103 | AC_ARG_ENABLE(quagga_user, |
| 104 | [ --enable-user=ARG user to run Quagga suite as (default quagga)]) |
| 105 | AC_ARG_ENABLE(quagga_group, |
| 106 | [ --enable-group=ARG group to run Quagga suite as (default quagga)]) |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 107 | AC_ARG_ENABLE(vty_group, |
| 108 | [ --enable-vty-group=ARG set vty sockets to have specified group as owner]) |
| 109 | |
hasso | 71c0fb5 | 2003-05-25 20:18:13 +0000 | [diff] [blame] | 110 | AC_ARG_ENABLE(rtadv, |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 111 | [ --enable-rtadv enable IPV6 router advertisement feature]) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 112 | |
| 113 | if test "${enable_broken_aliases}" = "yes"; then |
| 114 | if test "${enable_netlink}" = "yes" |
| 115 | then |
| 116 | echo "Sorry, you can't use netlink with broken aliases" |
| 117 | exit 1 |
| 118 | fi |
| 119 | AC_DEFINE(HAVE_BROKEN_ALIASES,,Broken Alias) |
| 120 | enable_netlink=no |
| 121 | fi |
| 122 | |
| 123 | if test "${enable_tcp_zebra}" = "yes"; then |
| 124 | AC_DEFINE(HAVE_TCP_ZEBRA,,Use TCP for zebra communication) |
| 125 | fi |
| 126 | |
| 127 | if test "${enable_nssa}" = "yes"; then |
| 128 | AC_DEFINE(HAVE_NSSA,,OSPF NSSA) |
| 129 | fi |
| 130 | |
| 131 | if test "${enable_opaque_lsa}" = "yes"; then |
| 132 | AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA) |
| 133 | fi |
| 134 | |
| 135 | if test "${enable_ospf_te}" = "yes"; then |
| 136 | AC_DEFINE(HAVE_OPAQUE_LSA,,OSPF Opaque LSA) |
| 137 | AC_DEFINE(HAVE_OSPF_TE,,OSPF TE) |
| 138 | fi |
| 139 | |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 140 | AC_MSG_CHECKING(Should zebra's RTADV be used) |
paul | 2487bea | 2003-05-25 23:51:31 +0000 | [diff] [blame] | 141 | if test "${enable_rtadv}" = "yes"; then |
hasso | 71c0fb5 | 2003-05-25 20:18:13 +0000 | [diff] [blame] | 142 | AC_MSG_RESULT(yes) |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 143 | AC_DEFINE(HAVE_RTADV,,Enable zebra IPv6 Routing Advertisements) |
paul | 2487bea | 2003-05-25 23:51:31 +0000 | [diff] [blame] | 144 | else |
| 145 | AC_MSG_RESULT(no) |
hasso | 71c0fb5 | 2003-05-25 20:18:13 +0000 | [diff] [blame] | 146 | fi |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 147 | |
paul | 79cb216 | 2003-06-06 12:19:53 +0000 | [diff] [blame] | 148 | if test "${enable_user}" = "yes" || test x"${enable_user}" = x""; then |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 149 | enable_user="quagga" |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 150 | elif test "${enable_user}" = "no"; then |
| 151 | enable_user="root" |
| 152 | fi |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 153 | AC_DEFINE_UNQUOTED(QUAGGA_USER, "${enable_user}", Quagga User) |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 154 | |
paul | 79cb216 | 2003-06-06 12:19:53 +0000 | [diff] [blame] | 155 | if test "${enable_group}" = "yes" || test x"${enable_group}" = x""; then |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 156 | enable_group="quagga" |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 157 | elif test "${enable_group}" = "no"; then |
| 158 | enable_group="root" |
| 159 | fi |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 160 | AC_DEFINE_UNQUOTED(QUAGGA_GROUP, "${enable_group}", Quagga Group) |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 161 | |
| 162 | if test x"${enable_vty_group}" = x"yes" ; then |
paul | 8d4aee5 | 2003-06-06 00:30:35 +0000 | [diff] [blame] | 163 | AC_MSG_ERROR([--enable-vty-group requires a group as argument, not yes]) |
paul | 79cb216 | 2003-06-06 12:19:53 +0000 | [diff] [blame] | 164 | elif test x"${enable_vty_group}" != x""; then |
paul | 8d4aee5 | 2003-06-06 00:30:35 +0000 | [diff] [blame] | 165 | if test x"${enable_vty_group}" != x"no"; then |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 166 | AC_DEFINE_UNQUOTED(VTY_GROUP, "${enable_vty_group}", VTY Sockets Group) |
| 167 | fi |
| 168 | fi |
| 169 | |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 170 | changequote(, )dnl |
| 171 | |
| 172 | MULTIPATH_NUM=1 |
| 173 | |
| 174 | case "${enable_multipath}" in |
| 175 | [0-9]|[1-9][0-9]) |
| 176 | MULTIPATH_NUM="${enable_multipath}" |
| 177 | ;; |
| 178 | "") |
| 179 | ;; |
| 180 | *) |
| 181 | echo "Please specify digit to --enable-multipath ARG." |
| 182 | exit 1 |
| 183 | ;; |
| 184 | esac |
| 185 | |
| 186 | changequote([, ])dnl |
| 187 | |
| 188 | AC_SUBST(MULTIPATH_NUM) |
| 189 | |
| 190 | dnl ------------------- |
| 191 | dnl Check header files. |
| 192 | dnl ------------------- |
paul | dc7a2bf | 2003-10-22 00:07:44 +0000 | [diff] [blame] | 193 | AC_HEADER_STDC |
| 194 | AC_CHECK_HEADERS([string.h stropts.h sys/conf.h sys/ksym.h sys/time.h \ |
| 195 | sys/times.h sys/select.h sys/sysctl.h sys/sockio.h \ |
| 196 | sys/types.h linux/version.h kvm.h netdb.h asm/types.h \ |
| 197 | libutil.h limits.h]) |
| 198 | |
| 199 | AC_CHECK_HEADERS([sys/socket.h netinet/in.h net/if_dl.h \ |
| 200 | net/netopt.h inet/nd.h net/route.h net/if.h \ |
| 201 | net/if_var.h netinet/in_var.h]) |
| 202 | |
| 203 | if test "x${enable_ipv6}" = "xyes"; then |
| 204 | AC_CHECK_HEADERS([netinet6/in6.h netinet/in6_var.h netinet/icmp6.h \ |
| 205 | netinet6/in6_var.h netinet6/nd6.h]) |
| 206 | fi |
| 207 | dnl if enable_ipv6 |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 208 | |
| 209 | dnl check some types |
| 210 | AC_C_CONST |
| 211 | dnl AC_TYPE_PID_T |
| 212 | AC_TYPE_SIGNAL |
| 213 | |
| 214 | dnl Some systems (Solaris 2.x) require libnsl (Network Services Library) |
| 215 | case "$host" in |
| 216 | *-sunos5.6* | *-solaris2.6*) |
| 217 | opsys=sol2-6 |
| 218 | AC_DEFINE(SUNOS_5,,SunOS 5) |
| 219 | AC_CHECK_LIB(xnet, main) |
| 220 | CURSES=-lcurses |
| 221 | ;; |
| 222 | *-sunos5* | *-solaris2*) |
| 223 | AC_DEFINE(SUNOS_5,,SunOS 5) |
| 224 | AC_CHECK_LIB(socket, main) |
| 225 | AC_CHECK_LIB(nsl, main) |
| 226 | CURSES=-lcurses |
| 227 | ;; |
| 228 | *-linux-*) |
| 229 | opsys=gnu-linux |
| 230 | AC_DEFINE(GNU_LINUX,,GNU Linux) |
| 231 | ;; |
| 232 | *-nec-sysv4*) |
| 233 | AC_CHECK_LIB(nsl, gethostbyname) |
| 234 | AC_CHECK_LIB(socket, socket) |
| 235 | ;; |
| 236 | *-freebsd3.2) |
| 237 | AC_DEFINE(FREEBSD_32,,FreeBSD 3.2) |
| 238 | ;; |
| 239 | *-openbsd*) |
| 240 | opsys=openbsd |
| 241 | AC_DEFINE(OPEN_BSD,,OpenBSD) |
| 242 | ;; |
| 243 | *-bsdi*) |
| 244 | opsys=bsdi |
| 245 | OTHER_METHOD="mtu_kvm.o" |
| 246 | AC_CHECK_LIB(kvm, main) |
| 247 | ;; |
paul | 49e3b3c | 2003-10-23 20:39:50 +0000 | [diff] [blame^] | 248 | *-irix6.5) |
paul | dc7a2bf | 2003-10-22 00:07:44 +0000 | [diff] [blame] | 249 | opsys=irix |
| 250 | AC_DEFINE(IRIX_65,,IRIX 6.5) |
| 251 | ;; |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 252 | esac |
| 253 | |
| 254 | dnl --------------------- |
| 255 | dnl Integrated VTY option |
| 256 | dnl --------------------- |
| 257 | case "${enable_vtysh}" in |
| 258 | "yes") VTYSH="vtysh"; |
| 259 | AC_DEFINE(VTYSH,,VTY shell) |
| 260 | AC_CHECK_LIB(tinfo, tputs, , AC_CHECK_LIB(ncurses, tputs)) |
| 261 | AC_CHECK_LIB(readline, main) |
| 262 | if test $ac_cv_lib_readline_main = no; then |
| 263 | AC_MSG_ERROR([vtysh needs libreadline but was not found on your system.]) |
| 264 | fi |
| 265 | AC_CHECK_HEADER(readline/history.h) |
| 266 | if test $ac_cv_header_readline_history_h = no;then |
| 267 | AC_MSG_ERROR([readline is too old to have readline/history.h, please update to the latest readline library.]) |
| 268 | fi |
paul | 3d3de8c | 2003-05-23 10:33:49 +0000 | [diff] [blame] | 269 | AC_CHECK_LIB(readline, rl_completion_matches) |
| 270 | if test $ac_cv_lib_readline_rl_completion_matches = no; then |
| 271 | AC_DEFINE(rl_completion_matches,completion_matches,Old readline) |
| 272 | fi |
| 273 | ;; |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 274 | "no" ) VTYSH="";; |
| 275 | * ) ;; |
| 276 | esac |
| 277 | |
| 278 | dnl ---------- |
| 279 | dnl PAM module |
| 280 | dnl ---------- |
| 281 | if test "$with_libpam" = "yes"; then |
paul | 24cd435 | 2003-05-06 12:16:27 +0000 | [diff] [blame] | 282 | AC_CHECK_HEADER(security/pam_misc.h) |
| 283 | if test "$ac_cv_header_security_pam_misc_h" = yes; then |
| 284 | AC_DEFINE(HAVE_PAM_MISC_H,,Have pam_misc.h) |
| 285 | AC_DEFINE(PAM_CONV_FUNC,misc_conv,Have misc_conv) |
| 286 | pam_conv_func="misc_conv" |
paul | 24cd435 | 2003-05-06 12:16:27 +0000 | [diff] [blame] | 287 | fi |
paul | 24cd435 | 2003-05-06 12:16:27 +0000 | [diff] [blame] | 288 | AC_CHECK_HEADER(security/openpam.h) |
| 289 | if test "$ac_cv_header_security_openpam_h" = yes; then |
| 290 | AC_DEFINE(HAVE_OPENPAM_H,,Have openpam.h) |
| 291 | AC_DEFINE(PAM_CONV_FUNC,openpam_ttyconv,Have openpam_ttyconv) |
| 292 | pam_conv_func="openpam_ttyconv" |
paul | 24cd435 | 2003-05-06 12:16:27 +0000 | [diff] [blame] | 293 | fi |
| 294 | if test -z "$ac_cv_header_security_pam_misc_h$ac_cv_header_security_openpam_h" ; then |
| 295 | AC_MSG_WARN([*** pam support will not be built ***]) |
| 296 | with_libpam="no" |
| 297 | fi |
| 298 | fi |
| 299 | |
| 300 | if test "$with_libpam" = "yes"; then |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 301 | dnl took this test from proftpd's configure.in and suited to our needs |
| 302 | dnl ------------------------------------------------------------------------- |
| 303 | dnl |
| 304 | dnl This next check looks funky due to a linker problem with some versions |
| 305 | dnl of the PAM library. Prior to 0.72 release, the Linux PAM shared library |
| 306 | dnl omitted requiring libdl linking information. PAM-0.72 or better ships |
| 307 | dnl with RedHat 6.2 and Debian 2.2 or better. |
| 308 | AC_CHECK_LIB(pam, pam_start, |
paul | 24cd435 | 2003-05-06 12:16:27 +0000 | [diff] [blame] | 309 | [AC_CHECK_LIB(pam, $pam_conv_func, |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 310 | [AC_DEFINE(USE_PAM,,Use PAM for authentication) |
| 311 | LIBPAM="-lpam"], |
| 312 | [AC_DEFINE(USE_PAM,,Use PAM for authentication) |
| 313 | LIBPAM="-lpam -lpam_misc"] |
| 314 | ) |
| 315 | ], |
| 316 | |
| 317 | [AC_CHECK_LIB(pam, pam_end, |
paul | 24cd435 | 2003-05-06 12:16:27 +0000 | [diff] [blame] | 318 | [AC_CHECK_LIB(pam, $pam_conv_func, |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 319 | [AC_DEFINE(USE_PAM,,Use PAM for authentication) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 320 | LIBPAM="-lpam -ldl"], |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 321 | [AC_DEFINE(USE_PAM,,Use PAM for authentication) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 322 | LIBPAM="-lpam -ldl -lpam_misc"] |
| 323 | ) |
| 324 | ],AC_MSG_WARN([*** pam support will not be built ***]), |
| 325 | [-ldl]) |
| 326 | ] |
| 327 | ) |
| 328 | fi |
| 329 | AC_SUBST(LIBPAM) |
| 330 | |
| 331 | dnl ------------------------------- |
| 332 | dnl Endian-ness check |
| 333 | dnl ------------------------------- |
| 334 | AC_WORDS_BIGENDIAN |
| 335 | |
| 336 | dnl ------------------------------- |
| 337 | dnl check the size in byte of the C |
| 338 | dnl ------------------------------- |
| 339 | dnl AC_CHECK_SIZEOF(char) |
| 340 | dnl AC_CHECK_SIZEOF(int) |
| 341 | dnl AC_CHECK_SIZEOF(short) |
| 342 | dnl AC_CHECK_SIZEOF(long) |
| 343 | |
| 344 | dnl ---------------------------- |
| 345 | dnl check existance of functions |
| 346 | dnl ---------------------------- |
paul | 49e3b3c | 2003-10-23 20:39:50 +0000 | [diff] [blame^] | 347 | AC_CHECK_FUNCS(memset memcpy strerror inet_aton daemon snprintf vsnprintf \ |
| 348 | strlcat strlcpy if_nametoindex if_indextoname getifaddrs) |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 349 | AC_CHECK_FUNCS(setproctitle, , |
| 350 | [AC_CHECK_LIB(util, setproctitle, |
| 351 | [LIBS="$LIBS -lutil" |
| 352 | AC_DEFINE(HAVE_SETPROCTITLE,, Have setproctitle) |
| 353 | ] |
| 354 | ) |
| 355 | ] |
| 356 | ) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 357 | |
| 358 | dnl ------------------------------------ |
| 359 | dnl Determine routing get and set method |
| 360 | dnl ------------------------------------ |
| 361 | AC_MSG_CHECKING(zebra between kernel interface method) |
| 362 | if test x"$opsys" = x"gnu-linux"; then |
| 363 | if test "${enable_netlink}" = "yes";then |
| 364 | AC_MSG_RESULT(netlink) |
| 365 | RT_METHOD=rt_netlink.o |
| 366 | AC_DEFINE(HAVE_NETLINK,,netlink) |
| 367 | netlink=yes |
| 368 | elif test "${enable_netlink}" = "no"; then |
| 369 | AC_MSG_RESULT(ioctl) |
| 370 | RT_METHOD=rt_ioctl.o |
| 371 | netlink=no |
| 372 | else |
| 373 | AC_MSG_RESULT(netlink) |
| 374 | RT_METHOD=rt_netlink.o |
| 375 | AC_DEFINE(HAVE_NETLINK,,netlink) |
| 376 | netlink=yes |
| 377 | fi |
| 378 | else |
| 379 | if test "$opsys" = "sol2-6";then |
| 380 | AC_MSG_RESULT(solaris) |
| 381 | KERNEL_METHOD="kernel_socket.o" |
| 382 | RT_METHOD="rt_socket.o" |
paul | 49e3b3c | 2003-10-23 20:39:50 +0000 | [diff] [blame^] | 383 | elif test "$opsys" = "irix" ; then |
| 384 | AC_MSG_RESULT(irix) |
| 385 | KERNEL_METHOD="kernel_socket.o" |
| 386 | RT_METHOD="rt_socket.o" |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 387 | else |
| 388 | AC_TRY_RUN([#include <errno.h> |
| 389 | #include <sys/types.h> |
| 390 | #include <sys/socket.h> |
| 391 | |
| 392 | main () |
| 393 | { |
| 394 | int ac_sock; |
| 395 | |
| 396 | ac_sock = socket (AF_ROUTE, SOCK_RAW, 0); |
| 397 | if (ac_sock < 0 && errno == EINVAL) |
| 398 | exit (1); |
| 399 | exit (0); |
| 400 | }], |
| 401 | [KERNEL_METHOD=kernel_socket.o |
| 402 | RT_METHOD=rt_socket.o |
| 403 | AC_MSG_RESULT(socket)], |
| 404 | [RT_METHOD=rt_ioctl.o |
| 405 | AC_MSG_RESULT(ioctl)], |
| 406 | [KERNEL_METHOD=kernel_socket.o |
| 407 | RT_METHOD=rt_socket.o |
| 408 | AC_MSG_RESULT(socket)]) |
| 409 | fi |
| 410 | fi |
| 411 | AC_SUBST(RT_METHOD) |
| 412 | AC_SUBST(KERNEL_METHOD) |
| 413 | AC_SUBST(OTHER_METHOD) |
| 414 | |
| 415 | dnl ------------------------------ |
| 416 | dnl check kernel route read method |
| 417 | dnl ------------------------------ |
| 418 | AC_CACHE_CHECK(route read method check, zebra_rtread, |
| 419 | [if test "$netlink" = yes; then |
| 420 | RTREAD_METHOD="rtread_netlink.o" |
| 421 | zebra_rtread="netlink" |
| 422 | else |
| 423 | for zebra_rtread in /proc/net/route /dev/ip /dev/null; |
| 424 | do |
| 425 | test x`ls $zebra_rtread 2>/dev/null` = x"$zebra_rtread" && break |
| 426 | done |
| 427 | case $zebra_rtread in |
| 428 | "/proc/net/route") RTREAD_METHOD="rtread_proc.o" |
| 429 | zebra_rtread="proc";; |
paul | 9c30ab6 | 2003-07-08 08:36:17 +0000 | [diff] [blame] | 430 | "/dev/ip") |
| 431 | case "$host" in |
| 432 | *-freebsd*) RTREAD_METHOD=rtread_sysctl.o |
| 433 | zebra_rtread="sysctl";; |
| 434 | *) RTREAD_METHOD="rtread_getmsg.o" |
| 435 | zebra_rtread="getmsg";; |
| 436 | esac;; |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 437 | *) RTREAD_METHOD="rtread_sysctl.o" |
| 438 | zebra_rtread="sysctl";; |
| 439 | esac |
| 440 | fi]) |
| 441 | AC_SUBST(RTREAD_METHOD) |
| 442 | |
| 443 | dnl ----------------------------- |
| 444 | dnl check interface lookup method |
| 445 | dnl ----------------------------- |
| 446 | AC_MSG_CHECKING(interface looking up method) |
| 447 | if test "$netlink" = yes; then |
| 448 | AC_MSG_RESULT(netlink) |
| 449 | IF_METHOD=if_netlink.o |
| 450 | else |
| 451 | if test "$opsys" = "sol2-6";then |
| 452 | AC_MSG_RESULT(solaris) |
| 453 | IF_METHOD=if_ioctl.o |
paul | 49e3b3c | 2003-10-23 20:39:50 +0000 | [diff] [blame^] | 454 | elif test "$opsys" = "irix" ; then |
| 455 | AC_MSG_RESULT(irix) |
| 456 | IF_METHOD=if_ioctl.o |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 457 | elif test "$opsys" = "openbsd";then |
| 458 | AC_MSG_RESULT(openbsd) |
| 459 | IF_METHOD=if_ioctl.o |
| 460 | elif grep NET_RT_IFLIST /usr/include/sys/socket.h >/dev/null 2>&1; then |
| 461 | AC_MSG_RESULT(sysctl) |
| 462 | IF_METHOD=if_sysctl.o |
| 463 | AC_DEFINE(HAVE_NET_RT_IFLIST,,NET_RT_IFLIST) |
| 464 | else |
| 465 | AC_MSG_RESULT(ioctl) |
| 466 | IF_METHOD=if_ioctl.o |
| 467 | fi |
| 468 | fi |
| 469 | AC_SUBST(IF_METHOD) |
| 470 | |
| 471 | dnl ----------------------- |
| 472 | dnl check proc file system. |
| 473 | dnl ----------------------- |
| 474 | if test -r /proc/net/dev; then |
| 475 | AC_DEFINE(HAVE_PROC_NET_DEV,,/proc/net/dev) |
| 476 | IF_PROC=if_proc.o |
| 477 | fi |
| 478 | |
| 479 | if test -r /proc/net/if_inet6; then |
| 480 | AC_DEFINE(HAVE_PROC_NET_IF_INET6,,/proc/net/if_inet6) |
| 481 | IF_PROC=if_proc.o |
| 482 | fi |
| 483 | AC_SUBST(IF_PROC) |
| 484 | |
| 485 | dnl ----------------------------- |
| 486 | dnl check ipforward detect method |
| 487 | dnl ----------------------------- |
| 488 | AC_CACHE_CHECK(ipforward method check, zebra_ipforward_path, |
| 489 | [for zebra_ipforward_path in /proc/net/snmp /dev/ip /dev/null; |
| 490 | do |
| 491 | test x`ls $zebra_ipforward_path 2>/dev/null` = x"$zebra_ipforward_path" && break |
| 492 | done |
| 493 | case $zebra_ipforward_path in |
| 494 | "/proc/net/snmp") IPFORWARD=ipforward_proc.o |
| 495 | zebra_ipforward_path="proc";; |
| 496 | "/dev/ip") |
| 497 | case "$host" in |
| 498 | *-nec-sysv4*) IPFORWARD=ipforward_ews.o |
| 499 | zebra_ipforward_path="ews";; |
paul | 9c30ab6 | 2003-07-08 08:36:17 +0000 | [diff] [blame] | 500 | *-freebsd*) IPFORWARD=ipforward_sysctl.o |
| 501 | zebra_ipforward_path="sysctl";; |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 502 | *) IPFORWARD=ipforward_solaris.o |
| 503 | zebra_ipforward_path="solaris";; |
| 504 | esac;; |
| 505 | *) IPFORWARD=ipforward_sysctl.o |
| 506 | zebra_ipforward_path="sysctl";; |
| 507 | esac]) |
| 508 | AC_SUBST(IPFORWARD) |
| 509 | |
| 510 | AC_CHECK_FUNCS(getaddrinfo, [have_getaddrinfo=yes], [have_getaddrinfo=no]) |
| 511 | |
| 512 | dnl ---------- |
| 513 | dnl IPv6 check |
| 514 | dnl ---------- |
| 515 | AC_MSG_CHECKING(whether does this OS have IPv6 stack) |
| 516 | if test "${enable_ipv6}" = "no"; then |
| 517 | AC_MSG_RESULT(disabled) |
| 518 | else |
| 519 | dnl ---------- |
| 520 | dnl INRIA IPv6 |
| 521 | dnl ---------- |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 522 | if grep IPV6_INRIA_VERSION /usr/include/netinet/in.h >/dev/null 2>&1; then |
| 523 | zebra_cv_ipv6=yes |
| 524 | AC_DEFINE(HAVE_IPV6,1,INRIA IPv6) |
| 525 | AC_DEFINE(INRIA_IPV6,1,INRIA IPv6) |
| 526 | RIPNGD="ripngd" |
| 527 | OSPF6D="ospf6d" |
| 528 | LIB_IPV6="" |
| 529 | AC_MSG_RESULT(INRIA IPv6) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 530 | dnl --------- |
| 531 | dnl KAME IPv6 |
| 532 | dnl --------- |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 533 | elif grep WIDE /usr/include/netinet6/in6.h >/dev/null 2>&1; then |
| 534 | zebra_cv_ipv6=yes |
| 535 | AC_DEFINE(HAVE_IPV6,1,KAME IPv6) |
| 536 | AC_DEFINE(KAME,1,KAME IPv6) |
| 537 | RIPNGD="ripngd" |
| 538 | OSPF6D="ospf6d" |
| 539 | if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 540 | LIB_IPV6="-L/usr/local/v6/lib -linet6" |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 541 | fi |
| 542 | AC_MSG_RESULT(KAME) |
hasso | 71c0fb5 | 2003-05-25 20:18:13 +0000 | [diff] [blame] | 543 | dnl ------------------------- |
| 544 | dnl MUSICA IPv6 |
| 545 | dnl default host check |
| 546 | dnl It is not used by Kheops |
| 547 | dnl ------------------------- |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 548 | elif grep MUSICA /usr/include6/netinet6/in6.h >/dev/null 2>&1; then |
| 549 | zebra_cv_ipv6=yes |
| 550 | AC_DEFINE(HAVE_IPV6,1,Musicia IPv6) |
| 551 | AC_DEFINE(MUSICA,1,Musica IPv6 stack) |
| 552 | AC_DEFINE(KAME,1,KAME IPv6 stack) |
| 553 | RIPNGD="ripngd" |
| 554 | OSPF6D="ospf6d" |
| 555 | if test -d /usr/local/v6/lib -a -f /usr/local/v6/lib/libinet6.a; then |
hasso | 71c0fb5 | 2003-05-25 20:18:13 +0000 | [diff] [blame] | 556 | LIB_IPV6="-L/usr/local/v6/lib -linet6" |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 557 | fi |
| 558 | AC_MSG_RESULT(MUSICA) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 559 | dnl --------- |
| 560 | dnl NRL check |
| 561 | dnl --------- |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 562 | elif grep NRL /usr/include/netinet6/in6.h >/dev/null 2>&1; then |
| 563 | zebra_cv_ipv6=yes |
| 564 | AC_DEFINE(HAVE_IPV6,1,NRL IPv6) |
| 565 | AC_DEFINE(NRL,1,NRL) |
| 566 | RIPNGD="ripngd" |
| 567 | OSPF6D="ospf6d" |
| 568 | if test x"$opsys" = x"bsdi";then |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 569 | AC_DEFINE(BSDI_NRL,,BSDI) |
| 570 | AC_MSG_RESULT(BSDI_NRL) |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 571 | else |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 572 | AC_MSG_RESULT(NRL) |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 573 | fi |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 574 | dnl ---------- |
| 575 | dnl Linux IPv6 |
| 576 | dnl ---------- |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 577 | elif test "${enable_ipv6}" = "yes"; then |
| 578 | AC_EGREP_CPP(yes, [ |
| 579 | #include <linux/version.h> |
| 580 | /* 2.1.128 or later */ |
| 581 | #if LINUX_VERSION_CODE >= 0x020180 |
| 582 | yes |
| 583 | #endif], |
| 584 | [zebra_cv_ipv6=yes |
| 585 | zebra_cv_linux_ipv6=yes |
| 586 | AC_MSG_RESULT(Linux IPv6)]) |
| 587 | else |
| 588 | if test x`ls /proc/net/ipv6_route 2>/dev/null` = x"/proc/net/ipv6_route" |
| 589 | then |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 590 | zebra_cv_ipv6=yes |
| 591 | zebra_cv_linux_ipv6=yes |
| 592 | AC_MSG_RESULT(Linux IPv6) |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 593 | fi |
| 594 | fi |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 595 | |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 596 | if test "$zebra_cv_linux_ipv6" = "yes";then |
| 597 | AC_MSG_CHECKING(for GNU libc >= 2.1) |
| 598 | AC_DEFINE(HAVE_IPV6,1,Linux IPv6) |
| 599 | AC_EGREP_CPP(yes, [ |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 600 | #include <features.h> |
| 601 | #if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1 |
| 602 | yes |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 603 | #endif], |
| 604 | [glibc=yes |
| 605 | AC_DEFINE(LINUX_IPV6,1,Linux IPv6 stack) |
| 606 | AC_MSG_RESULT(yes)], |
| 607 | AC_MSG_RESULT(no) |
| 608 | ) |
| 609 | RIPNGD="ripngd" |
| 610 | OSPF6D="ospf6d" |
| 611 | if test "$glibc" != "yes"; then |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 612 | INCLUDES="-I/usr/inet6/include" |
| 613 | if test x`ls /usr/inet6/lib/libinet6.a 2>/dev/null` != x;then |
| 614 | LIB_IPV6="-L/usr/inet6/lib -linet6" |
| 615 | fi |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 616 | fi |
| 617 | fi |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 618 | |
| 619 | dnl ----------------------- |
| 620 | dnl Set IPv6 related values |
| 621 | dnl ----------------------- |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 622 | LIBS="$LIB_IPV6 $LIBS" |
| 623 | AC_SUBST(LIB_IPV6) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 624 | |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 625 | if test x"$RIPNGD" = x""; then |
| 626 | AC_MSG_RESULT(IPv4 only) |
| 627 | fi |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 628 | fi |
| 629 | |
| 630 | dnl -------------------- |
| 631 | dnl Daemon disable check |
| 632 | dnl -------------------- |
| 633 | if test "${enable_zebra}" = "no";then |
| 634 | ZEBRA="" |
| 635 | else |
| 636 | ZEBRA="zebra" |
| 637 | fi |
| 638 | |
| 639 | if test "${enable_bgpd}" = "no";then |
| 640 | BGPD="" |
| 641 | else |
| 642 | BGPD="bgpd" |
| 643 | fi |
| 644 | |
| 645 | if test "${enable_ripd}" = "no";then |
| 646 | RIPD="" |
| 647 | else |
| 648 | RIPD="ripd" |
| 649 | fi |
| 650 | |
| 651 | if test "${enable_ospfd}" = "no";then |
| 652 | OSPFD="" |
| 653 | else |
| 654 | OSPFD="ospfd" |
| 655 | fi |
| 656 | |
paul | 1ef74ef | 2003-03-21 15:16:05 +0000 | [diff] [blame] | 657 | OSPFCLIENT="" |
| 658 | if test "${enable_opaque_lsa}" = "yes"; then |
| 659 | if test "${enable_ospfapi}" != "no";then |
paul | 9a56984 | 2003-03-28 01:45:13 +0000 | [diff] [blame] | 660 | AC_DEFINE(SUPPORT_OSPF_API,,OSPFAPI) |
paul | 1ef74ef | 2003-03-21 15:16:05 +0000 | [diff] [blame] | 661 | |
| 662 | if test "${enable_ospfclient}" != "no";then |
| 663 | OSPFCLIENT="ospfclient" |
| 664 | fi |
| 665 | fi |
| 666 | |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 667 | fi |
| 668 | |
| 669 | case "${enable_ripngd}" in |
| 670 | "yes") RIPNGD="ripngd";; |
| 671 | "no" ) RIPNGD="";; |
| 672 | * ) ;; |
| 673 | esac |
| 674 | |
| 675 | case "${enable_ospf6d}" in |
| 676 | "yes") OSPF6D="ospf6d";; |
| 677 | "no" ) OSPF6D="";; |
| 678 | * ) ;; |
| 679 | esac |
| 680 | |
| 681 | if test "${enable_bgp_announce}" = "no";then |
| 682 | AC_DEFINE(DISABLE_BGP_ANNOUNCE,,Disable BGP installation to zebra) |
| 683 | fi |
| 684 | |
| 685 | AC_SUBST(ZEBRA) |
| 686 | AC_SUBST(BGPD) |
| 687 | AC_SUBST(RIPD) |
| 688 | AC_SUBST(RIPNGD) |
| 689 | AC_SUBST(OSPFD) |
| 690 | AC_SUBST(OSPF6D) |
| 691 | AC_SUBST(VTYSH) |
| 692 | AC_SUBST(INCLUDES) |
| 693 | AC_SUBST(CURSES) |
| 694 | AC_SUBST(OSPFCLIENT) |
paul | 1ef74ef | 2003-03-21 15:16:05 +0000 | [diff] [blame] | 695 | AC_SUBST(OSPFAPI) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 696 | AC_CHECK_LIB(c, inet_ntop, [AC_DEFINE(HAVE_INET_NTOP,,inet_ntop)]) |
| 697 | AC_CHECK_LIB(c, inet_pton, [AC_DEFINE(HAVE_INET_PTON,,inet_pton)]) |
| 698 | AC_CHECK_LIB(crypt, crypt) |
| 699 | AC_CHECK_LIB(resolv, res_init) |
| 700 | AC_CHECK_LIB(m, main) |
| 701 | |
| 702 | dnl --------------------------------------------------- |
| 703 | dnl BSD/OS 4.1 define inet_XtoY function as __inet_XtoY |
| 704 | dnl --------------------------------------------------- |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 705 | AC_CHECK_FUNC(__inet_ntop, AC_DEFINE(HAVE_INET_NTOP,,__inet_ntop)) |
| 706 | AC_CHECK_FUNC(__inet_pton, AC_DEFINE(HAVE_INET_PTON,,__inet_pton)) |
| 707 | AC_CHECK_FUNC(__inet_aton, AC_DEFINE(HAVE_INET_ATON,,__inet_aton)) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 708 | |
| 709 | dnl --------------------------- |
| 710 | dnl check system has GNU regexp |
| 711 | dnl --------------------------- |
| 712 | dnl AC_MSG_CHECKING(whether system has GNU regex) |
| 713 | AC_CHECK_LIB(c, regexec, |
| 714 | [AC_DEFINE(HAVE_GNU_REGEX,,GNU regexp library) |
| 715 | LIB_REGEX=""], |
| 716 | [LIB_REGEX="regex.o"]) |
| 717 | AC_SUBST(LIB_REGEX) |
| 718 | |
| 719 | dnl ------------------ |
| 720 | dnl check SNMP library |
| 721 | dnl ------------------ |
| 722 | if test "${enable_snmp}" = "yes";then |
| 723 | dnl AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 724 | if test "${HAVE_SNMP}" = ""; then |
paul | 1ef74ef | 2003-03-21 15:16:05 +0000 | [diff] [blame] | 725 | old_libs="${LIBS}" |
| 726 | LIBS="-L/usr/lib" |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 727 | unset ac_cv_lib_snmp_asn_parse_int |
paul | 1ef74ef | 2003-03-21 15:16:05 +0000 | [diff] [blame] | 728 | AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, ) |
| 729 | if test "${NEED_CRYPTO}" = ""; then |
| 730 | AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes ]) |
| 731 | else |
| 732 | AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes; NEED_CRYPTO=yes;LIBS="$LIBS -lcrypto" ],,"-lcrypto") |
| 733 | fi |
| 734 | LIBS="${old_libs}" |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 735 | fi |
paul | 1ef74ef | 2003-03-21 15:16:05 +0000 | [diff] [blame] | 736 | if test "${HAVE_SNMP}" = ""; then |
| 737 | old_libs="${LIBS}" |
| 738 | LIBS="-L/usr/lib" |
| 739 | unset ac_cv_lib_snmp_asn_parse_int |
| 740 | AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes, ) |
| 741 | if test "${HAVE_SNMP}" = ""; then |
| 742 | unset ac_cv_lib_snmp_asn_parse_int |
| 743 | AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, ) |
| 744 | if test "${NEED_CRYPTO}" = "yes"; then |
| 745 | AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto") |
| 746 | fi |
| 747 | fi |
| 748 | LIBS="${old_libs}" |
| 749 | fi |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 750 | |
| 751 | if test "${HAVE_SNMP}" = ""; then |
paul | 1ef74ef | 2003-03-21 15:16:05 +0000 | [diff] [blame] | 752 | old_libs="${LIBS}" |
| 753 | LIBS="-L/usr/local/lib" |
| 754 | unset ac_cv_lib_snmp_asn_parse_int |
| 755 | AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes) |
| 756 | if test "${HAVE_SNMP}" = ""; then |
| 757 | unset ac_cv_lib_snmp_asn_parse_int |
| 758 | AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, ) |
| 759 | if test "${NEED_CRYPTO}" = "yes"; then |
| 760 | AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto") |
| 761 | fi |
| 762 | fi |
| 763 | LIBS="${old_libs}" |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 764 | fi |
paul | 1ef74ef | 2003-03-21 15:16:05 +0000 | [diff] [blame] | 765 | |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 766 | if test "${HAVE_SNMP}" = "yes"; then |
| 767 | 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 |
| 768 | do |
| 769 | test -f "${ac_snmp}" && break |
| 770 | done |
paul | 1ef74ef | 2003-03-21 15:16:05 +0000 | [diff] [blame] | 771 | |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 772 | case ${ac_snmp} in |
| 773 | /usr/include/net-snmp/*) |
| 774 | AC_DEFINE(HAVE_SNMP,,SNMP) |
paul | 1ef74ef | 2003-03-21 15:16:05 +0000 | [diff] [blame] | 775 | AC_DEFINE(HAVE_NETSNMP,,SNMP) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 776 | AC_DEFINE(UCD_COMPATIBLE,,SNMP) |
paul | ac7c4bb | 2003-03-19 04:25:08 +0000 | [diff] [blame] | 777 | CFLAGS="${CFLAGS} -I/usr/include/net-snmp -I/usr/include/net-snmp/library" |
| 778 | if test "${HAVE_NETSNMP}" = "yes"; then |
paul | 1ef74ef | 2003-03-21 15:16:05 +0000 | [diff] [blame] | 779 | LIBS="${LIBS} -lnetsnmp" |
paul | ac7c4bb | 2003-03-19 04:25:08 +0000 | [diff] [blame] | 780 | else |
paul | 1ef74ef | 2003-03-21 15:16:05 +0000 | [diff] [blame] | 781 | LIBS="${LIBS} -lsnmp" |
paul | ac7c4bb | 2003-03-19 04:25:08 +0000 | [diff] [blame] | 782 | fi |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 783 | ;; |
| 784 | /usr/include/ucd-snmp/*) |
| 785 | AC_DEFINE(HAVE_SNMP,,SNMP) |
| 786 | CFLAGS="${CFLAGS} -I/usr/include/ucd-snmp" |
| 787 | LIBS="${LIBS} -lsnmp" |
| 788 | ;; |
| 789 | /usr/local/include/ucd-snmp/*) |
| 790 | AC_DEFINE(HAVE_SNMP,,SNMP) |
| 791 | CFLAGS="${CFLAGS} -I/usr/local/include/ucd-snmp" |
| 792 | LIBS="${LIBS} -L/usr/local/lib -lsnmp" |
| 793 | ;; |
| 794 | esac |
| 795 | if test "${NEED_CRYPTO}" = "yes"; then |
| 796 | LIBS="${LIBS} -lcrypto" |
| 797 | fi |
| 798 | fi |
| 799 | fi |
| 800 | |
| 801 | dnl ---------------------------- |
| 802 | dnl check sa_len of sockaddr |
| 803 | dnl ---------------------------- |
| 804 | AC_MSG_CHECKING(whether struct sockaddr has a sa_len field) |
| 805 | AC_TRY_COMPILE([#include <sys/types.h> |
| 806 | #include <sys/socket.h> |
| 807 | ],[static struct sockaddr ac_i;int ac_j = sizeof (ac_i.sa_len);], |
| 808 | [AC_MSG_RESULT(yes) |
| 809 | AC_DEFINE(HAVE_SA_LEN,,sa_len)], |
| 810 | AC_MSG_RESULT(no)) |
| 811 | |
| 812 | dnl ---------------------------- |
| 813 | dnl check sin_len of sockaddr_in |
| 814 | dnl ---------------------------- |
| 815 | AC_MSG_CHECKING(whether struct sockaddr_in has a sin_len field) |
| 816 | AC_TRY_COMPILE([#include <sys/types.h> |
| 817 | #include <netinet/in.h> |
| 818 | ],[static struct sockaddr_in ac_i;int ac_j = sizeof (ac_i.sin_len);], |
| 819 | [AC_MSG_RESULT(yes) |
| 820 | AC_DEFINE(HAVE_SIN_LEN,,sin_len)], |
| 821 | AC_MSG_RESULT(no)) |
| 822 | |
| 823 | dnl ---------------------------- |
| 824 | dnl check sun_len of sockaddr_un |
| 825 | dnl ---------------------------- |
| 826 | AC_MSG_CHECKING(whether struct sockaddr_un has a sun_len field) |
| 827 | AC_TRY_COMPILE([#include <sys/types.h> |
| 828 | #include <sys/un.h> |
| 829 | ],[static struct sockaddr_un ac_i;int ac_j = sizeof (ac_i.sun_len);], |
| 830 | [AC_MSG_RESULT(yes) |
| 831 | AC_DEFINE(HAVE_SUN_LEN,,sun_len)], |
| 832 | AC_MSG_RESULT(no)) |
| 833 | |
| 834 | dnl ----------------------------------- |
| 835 | dnl check sin6_scope_id of sockaddr_in6 |
| 836 | dnl ----------------------------------- |
| 837 | if test "$zebra_cv_ipv6" = yes; then |
| 838 | AC_MSG_CHECKING(whether struct sockaddr_in6 has a sin6_scope_id field) |
| 839 | AC_TRY_COMPILE([#include <sys/types.h> |
| 840 | #include <netinet/in.h> |
| 841 | ],[static struct sockaddr_in6 ac_i;int ac_j = sizeof (ac_i.sin6_scope_id);], |
| 842 | [AC_MSG_RESULT(yes) |
| 843 | AC_DEFINE(HAVE_SIN6_SCOPE_ID,,scope id)], |
| 844 | AC_MSG_RESULT(no)) |
| 845 | fi |
| 846 | |
| 847 | dnl ---------------------------- |
| 848 | dnl check socklen_t exist or not |
| 849 | dnl ---------------------------- |
| 850 | AC_MSG_CHECKING(whther socklen_t is defined) |
| 851 | AC_TRY_COMPILE([#include <sys/types.h> |
| 852 | #include <sys/socket.h> |
| 853 | #include <netinet/in.h> |
| 854 | ],[socklen_t ac_x;], |
| 855 | [AC_MSG_RESULT(yes) |
| 856 | AC_DEFINE(HAVE_SOCKLEN_T,,socklen_t)], |
| 857 | AC_MSG_RESULT(no)) |
| 858 | |
| 859 | dnl ------------------------ |
| 860 | dnl check struct sockaddr_dl |
| 861 | dnl ------------------------ |
| 862 | AC_MSG_CHECKING(whether struct sockaddr_dl exist) |
| 863 | AC_EGREP_HEADER(sockaddr_dl, |
| 864 | net/if_dl.h, |
| 865 | [AC_MSG_RESULT(yes) |
| 866 | AC_DEFINE(HAVE_SOCKADDR_DL,,sockaddr_dl)], |
| 867 | AC_MSG_RESULT(no)) |
| 868 | |
| 869 | dnl -------------------------- |
| 870 | dnl check structure ifaliasreq |
| 871 | dnl -------------------------- |
| 872 | AC_MSG_CHECKING(whether struct ifaliasreq exist) |
| 873 | AC_EGREP_HEADER(ifaliasreq, |
| 874 | net/if.h, |
| 875 | [AC_MSG_RESULT(yes) |
| 876 | AC_DEFINE(HAVE_IFALIASREQ,,ifaliasreq)], |
| 877 | AC_MSG_RESULT(no)) |
| 878 | |
| 879 | dnl ---------------------------- |
| 880 | dnl check structure in6_aliasreq |
| 881 | dnl ---------------------------- |
hasso | 71c0fb5 | 2003-05-25 20:18:13 +0000 | [diff] [blame] | 882 | AC_MSG_CHECKING(whether struct in6_aliasreq exist) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 883 | AC_EGREP_HEADER(in6_aliasreq, |
| 884 | netinet6/in6_var.h, |
| 885 | [AC_MSG_RESULT(yes) |
| 886 | AC_DEFINE(HAVE_IN6_ALIASREQ,,in6_aliasreq)], |
| 887 | AC_MSG_RESULT(no)) |
| 888 | |
hasso | 71c0fb5 | 2003-05-25 20:18:13 +0000 | [diff] [blame] | 889 | dnl ----------------------------------- |
| 890 | dnl check ifra_lifetime of in6_aliasreq |
| 891 | dnl ----------------------------------- |
| 892 | AC_MSG_CHECKING(whether in6_aliasreq.ifra_lifetime exist) |
| 893 | AC_TRY_COMPILE([#include <sys/types.h> |
| 894 | #include <netinet6/in6_var.h> |
| 895 | ],[static struct if6_aliasreq ac_i;int ac_j = sizeof (ac_i.ifra_lifetime);], |
| 896 | [AC_MSG_RESULT(yes) |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 897 | AC_DEFINE(HAVE_IFRA_LIFETIME,,Have in6_aliasreq.ifra_lifetime)], |
hasso | 71c0fb5 | 2003-05-25 20:18:13 +0000 | [diff] [blame] | 898 | AC_MSG_RESULT(no)) |
| 899 | |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 900 | dnl --------------------------- |
| 901 | dnl check structure rt_addrinfo |
| 902 | dnl --------------------------- |
| 903 | AC_MSG_CHECKING(whether struct rt_addrinfo exist) |
| 904 | AC_EGREP_HEADER(rt_addrinfo, |
| 905 | net/route.h, |
| 906 | [AC_MSG_RESULT(yes) |
| 907 | AC_DEFINE(HAVE_RT_ADDRINFO,,rt_addrinfo)], |
| 908 | AC_MSG_RESULT(no)) |
| 909 | |
| 910 | dnl -------------------------- |
| 911 | dnl check structure in_pktinfo |
| 912 | dnl -------------------------- |
| 913 | AC_MSG_CHECKING(whether struct in_pktinfo exist) |
| 914 | AC_TRY_COMPILE([#include <netinet/in.h> |
| 915 | ],[struct in_pktinfo ac_x;], |
| 916 | [AC_MSG_RESULT(yes) |
| 917 | AC_DEFINE(HAVE_INPKTINFO,,in_pktinfo)], |
| 918 | AC_MSG_RESULT(no)) |
| 919 | |
| 920 | dnl -------------------------------------- |
| 921 | dnl checking for getrusage struct and call |
| 922 | dnl -------------------------------------- |
| 923 | AC_MSG_CHECKING(whether getrusage is available) |
| 924 | AC_TRY_COMPILE([#include <sys/resource.h> |
| 925 | ],[struct rusage ac_x; getrusage (RUSAGE_SELF, &ac_x);], |
| 926 | [AC_MSG_RESULT(yes) |
| 927 | AC_DEFINE(HAVE_RUSAGE,,rusage)], |
| 928 | AC_MSG_RESULT(no)) |
| 929 | |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 930 | dnl ------------------- |
| 931 | dnl capabilities checks |
| 932 | dnl ------------------- |
| 933 | AC_MSG_CHECKING(whether prctl PR_SET_KEEPCAPS is available) |
| 934 | AC_TRY_COMPILE([#include <sys/prctl.h>],[prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);], |
| 935 | [AC_MSG_RESULT(yes) |
| 936 | AC_DEFINE(HAVE_PR_SET_KEEPCAPS,,prctl) |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 937 | quagga_ac_keepcaps="yes"], |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 938 | AC_MSG_RESULT(no) |
| 939 | ) |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 940 | if test x"${quagga_ac_keepcaps}" = x"yes"; then |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 941 | AC_CHECK_HEADERS(sys/capability.h) |
| 942 | fi |
| 943 | if test x"${ac_cv_header_sys_capability_h}" = x"yes"; then |
| 944 | AC_CHECK_LIB(cap, cap_init, |
| 945 | [AC_DEFINE(HAVE_LCAPS,1,Capabilities) |
| 946 | LIBCAP="-lcap" |
| 947 | ] |
| 948 | ) |
| 949 | fi |
| 950 | AC_SUBST(LIBCAP) |
| 951 | |
paul | fb2d150 | 2003-06-04 09:40:54 +0000 | [diff] [blame] | 952 | dnl --------------------------- |
| 953 | dnl check for glibc 'backtrace' |
| 954 | dnl --------------------------- |
| 955 | if test "${glibc}" = "yes"; then |
| 956 | AC_CHECK_HEADER(execinfo.h) |
| 957 | fi |
| 958 | if test x"${ac_cv_header_execinfo_h}" = x"yes"; then |
| 959 | AC_CHECK_FUNC(backtrace, |
| 960 | [AC_DEFINE(HAVE_GLIBC_BACKTRACE,,Glibc backtrace)] |
| 961 | ) |
| 962 | fi |
| 963 | |
paul | 408ad94 | 2003-05-20 00:03:33 +0000 | [diff] [blame] | 964 | dnl ---------- |
| 965 | dnl configure date |
| 966 | dnl ---------- |
| 967 | CONFDATE=`date '+%Y%m%d'` |
| 968 | AC_SUBST(CONFDATE) |
| 969 | |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 970 | dnl ------------------------------ |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 971 | dnl set paths for state directory |
paul | 23bd12c | 2003-04-07 06:11:09 +0000 | [diff] [blame] | 972 | dnl ------------------------------ |
| 973 | if test "${prefix}" = "NONE"; then |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 974 | quagga_statedir_prefix=""; |
paul | 23bd12c | 2003-04-07 06:11:09 +0000 | [diff] [blame] | 975 | else |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 976 | quagga_statedir_prefix=${prefix} |
paul | 23bd12c | 2003-04-07 06:11:09 +0000 | [diff] [blame] | 977 | fi |
| 978 | if test "${localstatedir}" = '${prefix}/var'; then |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 979 | AC_CACHE_CHECK(state directory,ac_statedir, |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 980 | [for QUAGGA_STATE_DIR in ${quagga_statedir_prefix}/var/run dnl |
| 981 | ${quagga_statedir_prefix}/var/adm dnl |
| 982 | ${quagga_statedir_prefix}/etc dnl |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 983 | /var/run dnl |
| 984 | /var/adm dnl |
| 985 | /etc dnl |
| 986 | /dev/null; |
paul | 23bd12c | 2003-04-07 06:11:09 +0000 | [diff] [blame] | 987 | do |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 988 | test -d $QUAGGA_STATE_DIR && break |
paul | 23bd12c | 2003-04-07 06:11:09 +0000 | [diff] [blame] | 989 | done |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 990 | quagga_statedir=$QUAGGA_STATE_DIR]) |
paul | 23bd12c | 2003-04-07 06:11:09 +0000 | [diff] [blame] | 991 | else |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 992 | quagga_statedir=${localstatedir} |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 993 | AC_MSG_CHECKING(directory to use for state file) |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 994 | AC_MSG_RESULT(${quagga_statedir}) |
paul | 23bd12c | 2003-04-07 06:11:09 +0000 | [diff] [blame] | 995 | fi |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 996 | if test $quagga_statedir = "/dev/null"; then |
paul | a159ed9 | 2003-06-04 11:01:45 +0000 | [diff] [blame] | 997 | AC_MSG_ERROR('STATE DIRECTORY NOT FOUND! FIX OR SPECIFY --localstatedir!') |
| 998 | fi |
| 999 | |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 1000 | AC_DEFINE_UNQUOTED(PATH_ZEBRA_PID, "$quagga_statedir/zebra.pid",zebra PID) |
| 1001 | AC_DEFINE_UNQUOTED(PATH_RIPD_PID, "$quagga_statedir/ripd.pid",ripd PID) |
| 1002 | AC_DEFINE_UNQUOTED(PATH_RIPNGD_PID, "$quagga_statedir/ripngd.pid",ripngd PID) |
| 1003 | AC_DEFINE_UNQUOTED(PATH_BGPD_PID, "$quagga_statedir/bgpd.pid",bgpd PID) |
| 1004 | AC_DEFINE_UNQUOTED(PATH_OSPFD_PID, "$quagga_statedir/ospfd.pid",ospfd PID) |
| 1005 | AC_DEFINE_UNQUOTED(PATH_OSPF6D_PID, "$quagga_statedir/ospf6d.pid",ospf6d PID) |
| 1006 | AC_DEFINE_UNQUOTED(ZEBRA_SERV_PATH, "$quagga_statedir/zserv.api",zebra api socket) |
| 1007 | AC_DEFINE_UNQUOTED(ZEBRA_VTYSH_PATH, "$quagga_statedir/zebra.vty",zebra vty socket) |
| 1008 | AC_DEFINE_UNQUOTED(RIP_VTYSH_PATH, "$quagga_statedir/ripd.vty",rip vty socket) |
| 1009 | AC_DEFINE_UNQUOTED(RIPNG_VTYSH_PATH, "$quagga_statedir/ripngd.vty",ripng vty socket) |
| 1010 | AC_DEFINE_UNQUOTED(BGP_VTYSH_PATH, "$quagga_statedir/bgpd.vty",bgpd vty socket) |
| 1011 | AC_DEFINE_UNQUOTED(OSPF_VTYSH_PATH, "$quagga_statedir/ospfd.vty",ospfd vty socket) |
| 1012 | AC_DEFINE_UNQUOTED(OSPF6_VTYSH_PATH, "$quagga_statedir/ospf6d.vty",ospf6d vty socket) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 1013 | |
| 1014 | dnl --------------------------- |
| 1015 | dnl Check htonl works correctly |
| 1016 | dnl --------------------------- |
| 1017 | AC_MSG_CHECKING(for working htonl) |
| 1018 | AC_CACHE_VAL(ac_cv_htonl_works, [ |
| 1019 | AC_TRY_LINK([#ifdef HAVE_SYS_TYPES_H |
| 1020 | #include <sys/types.h> |
| 1021 | #endif |
| 1022 | #ifdef HAVE_NETDB_H |
| 1023 | #include <netdb.h> |
| 1024 | #endif |
| 1025 | #ifdef HAVE_NETINET_IN_H |
| 1026 | #include <netinet/in.h> |
| 1027 | #endif], |
| 1028 | [htonl (0);], |
| 1029 | ac_cv_htonl_works=yes, |
| 1030 | ac_cv_htonl_works=no)]) |
| 1031 | AC_MSG_RESULT($ac_cv_htonl_works) |
| 1032 | |
paul | 6382b6f | 2003-05-20 00:17:45 +0000 | [diff] [blame] | 1033 | AC_OUTPUT(Makefile lib/Makefile zebra/Makefile ripd/Makefile |
| 1034 | ripngd/Makefile bgpd/Makefile ospfd/Makefile |
| 1035 | ospf6d/Makefile vtysh/Makefile doc/Makefile |
| 1036 | ospfclient/Makefile |
paul | fa1253d | 2003-09-24 05:09:26 +0000 | [diff] [blame] | 1037 | redhat/quagga.spec |
| 1038 | lib/version.h) |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 1039 | |
| 1040 | echo " |
| 1041 | zebra configuration |
| 1042 | ------------------- |
paul | fa1253d | 2003-09-24 05:09:26 +0000 | [diff] [blame] | 1043 | quagga version : ${PACKAGE_VERSION} |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 1044 | host operationg system : ${host_os} |
| 1045 | source code location : ${srcdir} |
| 1046 | compiler : ${CC} |
| 1047 | compiler flags : ${CFLAGS} |
hasso | 71c0fb5 | 2003-05-25 20:18:13 +0000 | [diff] [blame] | 1048 | linker flags : ${LDFLAGS} ${LIBS} |
paul | e8f2984 | 2003-08-12 13:08:31 +0000 | [diff] [blame] | 1049 | state file directory : ${quagga_statedir} |
paul | dc7a2bf | 2003-10-22 00:07:44 +0000 | [diff] [blame] | 1050 | config file directory : `eval echo \`echo ${sysconfdir}\`` |
paul | 8d4aee5 | 2003-06-06 00:30:35 +0000 | [diff] [blame] | 1051 | user to run as : ${enable_user} |
| 1052 | group to run as : ${enable_group} |
| 1053 | group for vty sockets : ${enable_vty_group} |
paul | dc7a2bf | 2003-10-22 00:07:44 +0000 | [diff] [blame] | 1054 | |
| 1055 | The above user and group must have read/write access to the state file |
| 1056 | directory and to the config files in the config file directory. |
paul | 7ea487b | 2003-03-17 02:05:07 +0000 | [diff] [blame] | 1057 | " |