From: <abe...@us...> - 2016-11-13 16:07:36
|
Revision: 7954 http://sourceforge.net/p/astlinux/code/7954 Author: abelbeck Date: 2016-11-13 16:07:33 +0000 (Sun, 13 Nov 2016) Log Message: ----------- strongswan, disable some crypto plugins so OpenSSL handles them, as per Debian and others Modified Paths: -------------- branches/1.0/package/strongswan/strongswan.mk Modified: branches/1.0/package/strongswan/strongswan.mk =================================================================== --- branches/1.0/package/strongswan/strongswan.mk 2016-11-13 14:33:23 UTC (rev 7953) +++ branches/1.0/package/strongswan/strongswan.mk 2016-11-13 16:07:33 UTC (rev 7954) @@ -38,6 +38,7 @@ --enable-scripts=no \ --enable-vici=$(if $(BR2_PACKAGE_STRONGSWAN_VICI),yes,no) \ --enable-swanctl=$(if $(BR2_PACKAGE_STRONGSWAN_VICI),yes,no) \ + --enable-addrblock=yes \ --enable-cmd=yes ifeq ($(BR2_PACKAGE_STRONGSWAN_EAP),y) @@ -50,6 +51,16 @@ --enable-eap-peap endif +# Diable plugins so OpenSSL handles them +STRONGSWAN_CONF_OPT += \ + --disable-aes \ + --disable-des \ + --disable-rc2 \ + --disable-md5 \ + --disable-sha1 \ + --disable-sha2 \ + --disable-hmac + ifeq ($(BR2_PACKAGE_STRONGSWAN_SQLITE),y) STRONGSWAN_DEPENDENCIES += \ $(if $(BR2_PACKAGE_SQLITE),sqlite) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |