diff options
author | Ryan Steinmetz <zi@FreeBSD.org> | 2012-03-16 01:08:12 +0000 |
---|---|---|
committer | Ryan Steinmetz <zi@FreeBSD.org> | 2012-03-16 01:08:12 +0000 |
commit | 76a32125f18658ddd4b80c61ea38bad9a5c71c42 (patch) | |
tree | aaa6de51c89abcffb75c19073c431132cfb790b8 | |
parent | 380887bc717a64f5bc042828a86cdd9787214851 (diff) |
Notes
-rw-r--r-- | security/openconnect/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/security/openconnect/Makefile b/security/openconnect/Makefile index 62c6e956cdbb..bc3de3b9ecc4 100644 --- a/security/openconnect/Makefile +++ b/security/openconnect/Makefile @@ -30,10 +30,17 @@ PORTDOCS= * MAN8= openconnect.8 -OPTIONS= PROXY "Enable automatic proxy configuratio via libproxy" off +OPTIONS= PROXY "Enable automatic proxy configuratio via libproxy" off \ + OPENSSLPORT "Use OpenSSL from ports" off .include <bsd.port.options.mk> +.if defined(WITH_OPENSSLPORT) +WITH_OPENSSL_PORT= yes +.else +WITH_OPENSSL_BASE= yes +.endif + .include <bsd.port.pre.mk> .if defined(WITH_PROXY) |