diff options
author | wiz <wiz> | 2015-02-18 09:16:52 +0000 |
---|---|---|
committer | wiz <wiz> | 2015-02-18 09:16:52 +0000 |
commit | 6c14ca3d532d449d194b551667e8e2f99758a96d (patch) | |
tree | 860a206378a5c7d695ed7f4f3269a90edbdc63ff /net | |
parent | f916e723337f31fb38b4f458c620a2c084688e6b (diff) | |
download | pkgsrc-6c14ca3d532d449d194b551667e8e2f99758a96d.tar.gz |
Add ssl option that's default-on for systems that provide openssl.
(restoring v1.8 from obache)
Diffstat (limited to 'net')
-rw-r--r-- | net/tnftp/options.mk | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/net/tnftp/options.mk b/net/tnftp/options.mk index ded8b8c8b68..b20c9bf3161 100644 --- a/net/tnftp/options.mk +++ b/net/tnftp/options.mk @@ -1,11 +1,19 @@ -# $NetBSD: options.mk,v 1.9 2015/02/01 08:58:52 obache Exp $ +# $NetBSD: options.mk,v 1.10 2015/02/18 09:16:52 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.tnftp -PKG_SUPPORTED_OPTIONS= inet6 +PKG_SUPPORTED_OPTIONS= inet6 ssl PKG_OPTIONS_OPTIONAL_GROUPS+= socks PKG_OPTIONS_GROUP.socks= socks5 PKG_SUGGESTED_OPTIONS= inet6 +CHECK_BUILTIN.openssl:= yes +.include "../../security/openssl/builtin.mk" +CHECK_BUILTIN.openssl:= no + +.if !empty(USE_BUILTIN.openssl:M[yY][eE][sS]) +PKG_SUGGESTED_OPTIONS+= ssl +.endif + .include "../../mk/bsd.options.mk" .if !empty(PKG_OPTIONS:Msocks5) @@ -20,3 +28,11 @@ CONFIGURE_ARGS+= --enable-ipv6 .else CONFIGURE_ARGS+= --disable-ipv6 .endif + +.if !empty(PKG_OPTIONS:Mssl) +CONFIGURE_ARGS+= --enable-ssl +.include "../../security/openssl/buildlink3.mk" +CONFIGURE_ARGS+= --with-openssl=${SSLBASE} +.else +CONFIGURE_ARGS+= --disable-ssl +.endif |