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