diff options
author | wg <wg@FreeBSD.org> | 2013-07-04 20:58:37 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-07-04 20:58:37 +0800 |
commit | ea65ead931465ed631f6ed7a88b99fb94bbba682 (patch) | |
tree | 8e60ae0be042c03069130286d37a428e1f4f77c2 | |
parent | 5eb4aabbe059bdfb2289d6c3071f80c59fea6dcf (diff) | |
download | freebsd-ports-gnome-ea65ead931465ed631f6ed7a88b99fb94bbba682.tar.gz freebsd-ports-gnome-ea65ead931465ed631f6ed7a88b99fb94bbba682.tar.zst freebsd-ports-gnome-ea65ead931465ed631f6ed7a88b99fb94bbba682.zip |
www/aws: fix secure socket layer selection
What we really wanted here is SINGLE, which allows only option to be selected,
and not none.
Reported by: bapt
-rw-r--r-- | www/aws/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/aws/Makefile b/www/aws/Makefile index 9fe826cd2a86..660b41711b0d 100644 --- a/www/aws/Makefile +++ b/www/aws/Makefile @@ -22,11 +22,11 @@ MAKE_JOBS_SAFE= yes DOTBUILD= release ADDL_RPATH= ${LOCALBASE}/lib:${LOCALBASE}/lib/aws/native/relocatable -OPTIONS_RADIO= Secure-Socket-Layer +OPTIONS_SINGLE= Secure-Socket-Layer OPTIONS_DEFINE= IP6 DEBUG LDAP DSRT RELOC OPTIONS_DEFAULT= SSL NO_OPTIONS_SORT= yes -OPTIONS_RADIO_Secure-Socket-Layer= SSL GNUTLS NOSSL +OPTIONS_SINGLE_Secure-Socket-Layer= SSL GNUTLS NOSSL NOSSL_DESC= Disable SSL support DSRT_DESC= Disable shared runtime |