mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Bruno Thomsen <bruno.thomsen@gmail.com>
To: ptxdist@pengutronix.de
Cc: chf.fritz@googlemail.com, m.olbrich@pengutronix.de,
	Bruno Thomsen <bruno.thomsen@gmail.com>
Subject: [ptxdist] [PATCH 1/2] strongswan: version bump 5.3.5 -> 5.6.1
Date: Tue, 29 May 2018 17:01:47 +0200	[thread overview]
Message-ID: <20180529150148.30456-2-bruno.thomsen@gmail.com> (raw)
In-Reply-To: <20180529150148.30456-1-bruno.thomsen@gmail.com>

16 new configuration parameters all set as disabled.
1 configuration parameter has been removed.

libhydra has been removed, all plugins and the kernel interface have been integrated into libcharon.

Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
---
 rules/strongswan.make | 22 ++++++++++++++++++----
 1 file changed, 18 insertions(+), 4 deletions(-)

diff --git a/rules/strongswan.make b/rules/strongswan.make
index 7016b64bd..c4ecce9c6 100644
--- a/rules/strongswan.make
+++ b/rules/strongswan.make
@@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_STRONGSWAN) += strongswan
 #
 # Paths and names
 #
-STRONGSWAN_VERSION	:= 5.3.5
-STRONGSWAN_MD5		:= a2f9ea185f27e7f8413d4cd2ee61efe4
+STRONGSWAN_VERSION	:= 5.6.1
+STRONGSWAN_MD5		:= cb2241f1b96c524cd15b1c0f50ed9a27
 STRONGSWAN		:= strongswan-$(STRONGSWAN_VERSION)
 STRONGSWAN_SUFFIX	:= tar.bz2
 STRONGSWAN_URL		:= https://download.strongswan.org/$(STRONGSWAN).$(STRONGSWAN_SUFFIX)
@@ -46,9 +46,12 @@ STRONGSWAN_CONF_OPT	:= \
 	--enable-gcm \
 	--disable-gcrypt \
 	--enable-gmp \
+	--disable-curve25519 \
 	--enable-hmac \
 	--disable-md4 \
 	--disable-md5 \
+	--disable-mgf1 \
+	--disable-newhope \
 	--enable-nonce \
 	--disable-ntru \
 	--$(call ptx/endis, PTXCONF_STRONGSWAN_OPENSSL)-openssl \
@@ -89,6 +92,7 @@ STRONGSWAN_CONF_OPT	:= \
 	--disable-eap-sim-file \
 	--disable-eap-sim-pcsc \
 	--disable-eap-aka \
+	--disable-eap-aka-3gpp \
 	--disable-eap-aka-3gpp2 \
 	--disable-eap-simaka-sql \
 	--disable-eap-simaka-pseudonym \
@@ -107,6 +111,7 @@ STRONGSWAN_CONF_OPT	:= \
 	--disable-ipseckey \
 	--disable-keychain \
 	--disable-pkcs11 \
+	--disable-tpm \
 	--enable-revocation \
 	--disable-whitelist \
 	--enable-xauth-generic \
@@ -132,6 +137,7 @@ STRONGSWAN_CONF_OPT	:= \
 	--disable-attr-sql \
 	--disable-dhcp \
 	--disable-osx-attr \
+	--disable-p-cscf \
 	--enable-resolve \
 	--disable-unity \
 	--disable-imc-test \
@@ -144,6 +150,8 @@ STRONGSWAN_CONF_OPT	:= \
 	--disable-imv-attestation \
 	--disable-imc-swid \
 	--disable-imv-swid \
+	--disable-imc-swima \
+	--disable-imv-swima \
 	--disable-imc-hcd \
 	--disable-imv-hcd \
 	--disable-tnc-ifmap \
@@ -154,8 +162,10 @@ STRONGSWAN_CONF_OPT	:= \
 	--disable-tnccs-20 \
 	--disable-tnccs-dynamic \
 	--disable-android-log \
+	--disable-bypass-lan \
 	--disable-certexpire \
 	--disable-connmark \
+	--disable-counters \
 	--disable-forecast \
 	--disable-duplicheck \
 	--disable-error-notify \
@@ -164,7 +174,6 @@ STRONGSWAN_CONF_OPT	:= \
 	--disable-led \
 	--disable-load-tester \
 	--disable-lookip \
-	--disable-maemo \
 	--disable-radattr \
 	--disable-systime-fix \
 	--disable-test-vectors \
@@ -175,6 +184,7 @@ STRONGSWAN_CONF_OPT	:= \
 	--disable-conftest \
 	--disable-dumm \
 	--disable-fast \
+	--disable-fuzzing \
 	--disable-libipsec \
 	--disable-manager \
 	--disable-medcli \
@@ -199,9 +209,14 @@ STRONGSWAN_CONF_OPT	:= \
 	--disable-ruby-gems-install \
 	--disable-python-eggs \
 	--disable-python-eggs-install \
+	--disable-perl-cpan \
+	--disable-perl-cpan-install \
+	--disable-tss-trousers \
+	--disable-tss-tss2 \
 	--disable-coverage \
 	--disable-leak-detective \
 	--disable-lock-profiler \
+	--disable-log-thread-ids \
 	--disable-monolithic \
 	--disable-defaults \
 	--enable-dependency-tracking \
@@ -272,7 +287,6 @@ $(STATEDIR)/strongswan.targetinstall:
 	@$(call install_tree, strongswan, 0, 0, -, /usr/libexec/ipsec)
 
 	@$(call install_lib, strongswan, 0, 0, 0644, libcharon)
-	@$(call install_lib, strongswan, 0, 0, 0644, libhydra)
 	@$(call install_lib, strongswan, 0, 0, 0644, libstrongswan)
 
 	@$(foreach plugin, $(STRONGSWAN_PLUGINS), \
-- 
2.17.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

  reply	other threads:[~2018-05-29 15:01 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-29 15:01 [ptxdist] [PATCH 0/2] Strongswan is alive Bruno Thomsen
2018-05-29 15:01 ` Bruno Thomsen [this message]
2018-05-29 15:01 ` [ptxdist] [PATCH 2/2] strongswan: remove staging Bruno Thomsen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180529150148.30456-2-bruno.thomsen@gmail.com \
    --to=bruno.thomsen@gmail.com \
    --cc=chf.fritz@googlemail.com \
    --cc=m.olbrich@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox