summaryrefslogtreecommitdiff
path: root/net/tnftp/options.mk
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2015-01-19 11:15:37 +0000
committerobache <obache@pkgsrc.org>2015-01-19 11:15:37 +0000
commit8f2ca63f86bb43fd929bf33d08e4fa4fdc778972 (patch)
treef42bbef2a3b104bf7e1ebb44f8cce474704d62c8 /net/tnftp/options.mk
parenta3f311c1157d7cd94a7911d23ee0b837abc946b4 (diff)
downloadpkgsrc-8f2ca63f86bb43fd929bf33d08e4fa4fdc778972.tar.gz
fixes broken "ssl" configure option behavior.
Diffstat (limited to 'net/tnftp/options.mk')
-rw-r--r--net/tnftp/options.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/tnftp/options.mk b/net/tnftp/options.mk
index bfcdcc7efae..1e592b6cf16 100644
--- a/net/tnftp/options.mk
+++ b/net/tnftp/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.7 2014/12/21 09:11:40 obache Exp $
+# $NetBSD: options.mk,v 1.8 2015/01/19 11:15:37 obache Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.tnftp
PKG_SUPPORTED_OPTIONS= inet6 ssl
@@ -30,9 +30,9 @@ CONFIGURE_ARGS+= --disable-ipv6
.endif
.if !empty(PKG_OPTIONS:Mssl)
-CONFIGURE_ARGS+= --with-ssl=yes
+CONFIGURE_ARGS+= --enable-ssl
.include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --with-openssl=${SSLBASE}
.else
-CONFIGURE_ARGS+= --with-ssl=no
+CONFIGURE_ARGS+= --disable-ssl
.endif