diff options
author | Yves-Alexis Perez <corsac@debian.org> | 2013-10-01 09:51:09 +0200 |
---|---|---|
committer | Yves-Alexis Perez <corsac@debian.org> | 2013-10-01 10:53:54 +0200 |
commit | b0d037f408d36f42260bcb1ebfbbdc9cac4fb856 (patch) | |
tree | d3685824417fa9f6473d6b34f008e36f14f7d422 /debian | |
parent | e5ee4e7fcdd58b7d86bf1b458da2c63e8e19627b (diff) | |
download | vyos-strongswan-b0d037f408d36f42260bcb1ebfbbdc9cac4fb856.tar.gz vyos-strongswan-b0d037f408d36f42260bcb1ebfbbdc9cac4fb856.zip |
Enable af-alg plugin
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | debian/rules | 9 |
2 files changed, 13 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 5fc499a19..ac72d18d5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +strongswan (5.1.0-2) UNRELEASED; urgency=low + + * debian/rules: + - enable and install af-ag plugin on Linux. closes: #718292 + + -- Yves-Alexis Perez <corsac@debian.org> Tue, 01 Oct 2013 09:35:37 +0200 + strongswan (5.1.0-1) unstable; urgency=low * New upstream release. diff --git a/debian/rules b/debian/rules index 7eb0aef43..d55de30e6 100755 --- a/debian/rules +++ b/debian/rules @@ -45,7 +45,8 @@ ifeq ($(DEB_BUILD_ARCH_OS),linux) CONFIGUREARGS += --enable-nm \ --with-capabilities=libcap \ --enable-farp \ - --enable-dhcp + --enable-dhcp \ + --enable-af-alg endif ifeq ($(DEB_BUILD_ARCH_OS),kfreebsd) @@ -84,6 +85,7 @@ ifeq ($(DEB_BUILD_ARCH_OS),linux) dh_install -p libstrongswan usr/lib/ipsec/plugins/libstrongswan-dhcp.so dh_install -p libstrongswan usr/lib/ipsec/plugins/libstrongswan-farp.so dh_install -p libstrongswan usr/lib/ipsec/plugins/libstrongswan-kernel-netlink.so + dh_install -p libstrongswan usr/lib/ipsec/plugins/libstrongswan-af-alg.so endif ifeq ($(DEB_BUILD_ARCH_OS),kfreebsd) @@ -109,8 +111,9 @@ endif -Xlibstrongswan-kernel \ -Xlibstrongswan-dhcp.so \ -Xlibstrongswan-farp.so \ - -Xlibstrongswan-padlock.so \ - -Xlibstrongswan-rdrand.so + -Xlibstrongswan-padlock.so \ + -Xlibstrongswan-rdrand.so \ + -Xlibstrongswan-af-alg.so # add additional files not covered by upstream makefile... install --mode=0600 $(CURDIR)/debian/ipsec.secrets.proto $(CURDIR)/debian/strongswan-starter/etc/ipsec.secrets |