configure.ac
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:25k
源码类别:

网络

开发平台:

Unix_Linux

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