X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=configure.ac;h=1d952bf433de1d91428f32f20c41c3f2634c548e;hb=d6218374134c27be203417ae594c214ffaa4a238;hp=dad7f3dacc66619474bf1c107a703b80a389b878;hpb=67fe4e14443e2735adbacc6878053348ab5e40a4;p=util-vserver.git diff --git a/configure.ac b/configure.ac index dad7f3d..1d952bf 100644 --- a/configure.ac +++ b/configure.ac @@ -336,6 +336,38 @@ dnl beecrypt stuff ends here} dnl dnl ######################## +dnl ######################## +dnl +dnl {check for libnl +dnl + +ensc_have_libnl=yes + +if test x"$ensc_have_libnl" = xyes; then + AC_CHECK_HEADERS([netlink/netlink.h netlink/route/addr.h], [ : ], + [ ensc_have_libnl=no ]) +fi + +if test x"$ensc_have_libnl" = xyes; then + AC_CHECK_LIB(nl, rtnl_addr_alloc, [ : ], + [ ensc_have_libnl=no ]) +fi + +if test x"$ensc_have_libnl" != xyes; then + AC_MSG_WARN([ +**** +**** 'libnl' could not be found; +**** this will disable the build of 'vip6-autod' +****]) +fi + +AM_CONDITIONAL(ENSC_HAVE_LIBNL, test x"$ensc_have_libnl" = xyes) + +dnl +dnl libnl stuff ends here} +dnl +dnl ####################### + dnl Check what distro this is, use Gentoo initscripts if appropriate AC_MSG_CHECKING([for host initscripts])