diff options
author | obache <obache@pkgsrc.org> | 2014-12-21 09:11:40 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-12-21 09:11:40 +0000 |
commit | d70ba10a59117659ad34432f53a8d19284366143 (patch) | |
tree | 5d2bb332651d85154ebdc19dbe40fa87b54fe3fc /net/tnftp | |
parent | 0bff56326a23b8434da776e18d055b88644322c8 (diff) | |
download | pkgsrc-d70ba10a59117659ad34432f53a8d19284366143.tar.gz |
broken configure script, "ssl" option will not be switched with "--enable-ssl",
unrecognized "--with-ssl" option instead.
Diffstat (limited to 'net/tnftp')
-rw-r--r-- | net/tnftp/options.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/tnftp/options.mk b/net/tnftp/options.mk index 6c59b4f8112..bfcdcc7efae 100644 --- a/net/tnftp/options.mk +++ b/net/tnftp/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.6 2014/11/03 04:07:36 obache Exp $ +# $NetBSD: options.mk,v 1.7 2014/12/21 09:11:40 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+= --enable-ssl +CONFIGURE_ARGS+= --with-ssl=yes .include "../../security/openssl/buildlink3.mk" CONFIGURE_ARGS+= --with-openssl=${SSLBASE} .else -CONFIGURE_ARGS+= --disable-ssl +CONFIGURE_ARGS+= --with-ssl=no .endif |