diff options
author | Wayne Cuddy <wcuddy@gmail.com> | 2022-12-28 16:36:20 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-12-31 09:14:39 +0700 |
commit | 5002566af45739d580bb6c1cbd12f33e8e6627c1 (patch) | |
tree | 52011acc5c03a8f234c5d2154b56693de83d4e81 /network/strongswan | |
parent | be10d503e0dcf4a21e8775655f4ee231ae61b7b2 (diff) |
network/strongswan: Added configure options. BUILD bumped.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/strongswan')
-rw-r--r-- | network/strongswan/README | 3 | ||||
-rw-r--r-- | network/strongswan/strongswan.SlackBuild | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/network/strongswan/README b/network/strongswan/README index 662e2b306cf40..c94b742200b93 100644 --- a/network/strongswan/README +++ b/network/strongswan/README @@ -23,6 +23,8 @@ The following configure options are enabled by default: --enable-sha3 --enable-files --enable-lookip + --enable-eap-gtc + --enable-eap-md5 --enable-eap-identity --enable-eap-mschapv2 --enable-eap-tls @@ -47,6 +49,7 @@ The following configure options are enabled by default: --enable-counters --enable-farp --enable-lookip + --enable-nm To disable the above options set the environment variable CONFIG_OPTS diff --git a/network/strongswan/strongswan.SlackBuild b/network/strongswan/strongswan.SlackBuild index 281da9ecc8a42..99cd4f75014e2 100644 --- a/network/strongswan/strongswan.SlackBuild +++ b/network/strongswan/strongswan.SlackBuild @@ -23,6 +23,12 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # +# 2022-12-25 +# - added configure options in preparation for NetworkManager-Strongswan +# --enable-eap-gtc +# --enable-eap-md5 +# --enable-nm +# # 2022-10-09 # - upgraded upstream version to 5.9.8 # - removed INSTALL file per sbopkglint @@ -47,7 +53,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=strongswan VERSION=${VERSION:-5.9.8} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -66,6 +72,8 @@ DEFAULT_CONFIG_OPTS="\ --enable-sha3 \ --enable-files \ --enable-lookip \ + --enable-eap-gtc \ + --enable-eap-md5 \ --enable-eap-identity \ --enable-eap-mschapv2 \ --enable-eap-tls \ @@ -90,6 +98,7 @@ DEFAULT_CONFIG_OPTS="\ --enable-counters \ --enable-farp \ --enable-lookip \ + --enable-nm \ " if [ -z "$ARCH" ]; then |