]> git.ipfire.org Git - people/ms/strongswan.git/commitdiff
somehow missed these changes during the portability branch back-merge
authorTobias Brunner <tobias@strongswan.org>
Thu, 30 Apr 2009 17:13:45 +0000 (17:13 -0000)
committerTobias Brunner <tobias@strongswan.org>
Thu, 30 Apr 2009 17:13:45 +0000 (17:13 -0000)
Makefile.am
configure.in
testing/Makefile.am

index e6a73e996d1d0fda00b91928d1be781f2f0fd02e..95eb8d95e6a765579ac2d0272804c81d904eabb6 100644 (file)
@@ -6,7 +6,7 @@ Doxyfile :      Doxyfile.in
                sed \
                -e "s:\@PACKAGE_VERSION\@:$(PACKAGE_VERSION):" \
                -e "s:\@PACKAGE_NAME\@:$(PACKAGE_NAME):" \
-               $< > $@
+               $(srcdir)/$@.in > $@
 
 apidoc :       Doxyfile
                doxygen
index 48c3d2e0b013d9ac8aded3c89a9b5a147f2f004f..ff308082af500c8e34336d47acec79c053f14e3b 100644 (file)
@@ -491,6 +491,14 @@ AC_ARG_ENABLE(
        fi]
 )
 
+AC_ARG_ENABLE(
+       [kernel-pfroute],
+       AS_HELP_STRING([--enable-kernel-pfroute],[enable the PF_ROUTE kernel interface. (default is NO).]),
+       [if test x$enableval = xyes; then
+               kernel_pfroute=true
+       fi]
+)
+
 AC_ARG_ENABLE(
        [kernel-klips],
        AS_HELP_STRING([--enable-kernel-klips],[enable the KLIPS kernel interface. (default is NO).]),
@@ -758,9 +766,34 @@ dnl ==========================================
 dnl  check required libraries and header files
 dnl ==========================================
 
-AC_HAVE_LIBRARY(dl)
+saved_LIBS=$LIBS
+LIBS=""
+AC_SEARCH_LIBS(dlopen, dl, [DLLIB=$LIBS])
+LIBS=$saved_LIBS
+AC_SUBST(DLLIB)
+
 AC_CHECK_FUNCS(backtrace)
 AC_CHECK_FUNCS(dladdr)
+AC_CHECK_FUNCS(prctl)
+
+AC_CHECK_HEADERS(net/pfkeyv2.h netipsec/ipsec.h)
+
+AC_CHECK_MEMBERS([struct sockaddr.sa_len], [], [],
+[
+       #include <sys/types.h>
+       #include <sys/socket.h>
+])
+
+AC_CHECK_MEMBERS([struct sadb_x_policy.sadb_x_policy_priority], [], [],
+[
+       #include <sys/types.h>
+       #ifdef HAVE_NET_PFKEYV2_H
+       #include <net/pfkeyv2.h>
+       #else
+       #include <stdint.h>
+       #include <linux/pfkeyv2.h>
+       #endif
+])
 
 AC_MSG_CHECKING([for gcc atomic operations])
 AC_TRY_RUN(
@@ -1010,6 +1043,7 @@ AM_CONDITIONAL(USE_EAP_MSCHAPV2, test x$eap_mschapv2 = xtrue)
 AM_CONDITIONAL(USE_EAP_RADIUS, test x$eap_radius = xtrue)
 AM_CONDITIONAL(USE_KERNEL_NETLINK, test x$kernel_netlink = xtrue)
 AM_CONDITIONAL(USE_KERNEL_PFKEY, test x$kernel_pfkey = xtrue)
+AM_CONDITIONAL(USE_KERNEL_PFROUTE, test x$kernel_pfroute = xtrue)
 AM_CONDITIONAL(USE_KERNEL_KLIPS, test x$kernel_klips = xtrue)
 
 dnl other options
@@ -1092,6 +1126,7 @@ AC_OUTPUT(
        src/charon/plugins/eap_radius/Makefile
        src/charon/plugins/kernel_netlink/Makefile
        src/charon/plugins/kernel_pfkey/Makefile
+       src/charon/plugins/kernel_pfroute/Makefile
        src/charon/plugins/kernel_klips/Makefile
        src/charon/plugins/smp/Makefile
        src/charon/plugins/sql/Makefile
index 2ce6f2cd009ddd5f9d501f7529a32a72ec8b62ae..ad8d5042af3867a154706b57bd5edb5a92a11547 100644 (file)
@@ -6,6 +6,6 @@ EXTRA_DIST = do-tests.in make-testing start-testing stop-testing \
 do-tests : do-tests.in
        sed \
        -e "s:\@IPSEC_ROUTING_TABLE\@:$(IPSEC_ROUTING_TABLE):" \
-       $< > $@
+       $(srcdir)/$@.in > $@
        chmod +x $@