diff options
author | mharo <mharo@FreeBSD.org> | 2004-04-01 17:44:53 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2004-04-01 17:44:53 +0800 |
commit | d9b01116e7fea796bd16fddbc62d97628a66a9d9 (patch) | |
tree | 754de2e196415f384443617430ed9aa5db863982 /ftp/proftpd-devel | |
parent | a96bf572f3671c854fea7fd6880a4fa8e93ee377 (diff) | |
download | freebsd-ports-gnome-d9b01116e7fea796bd16fddbc62d97628a66a9d9.tar.gz freebsd-ports-gnome-d9b01116e7fea796bd16fddbc62d97628a66a9d9.tar.zst freebsd-ports-gnome-d9b01116e7fea796bd16fddbc62d97628a66a9d9.zip |
Support WITH_OPENSSL
PR: 65006
Submitted by: Jochen Gensch <incmc@gmx.de>
Diffstat (limited to 'ftp/proftpd-devel')
-rw-r--r-- | ftp/proftpd-devel/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ftp/proftpd-devel/Makefile b/ftp/proftpd-devel/Makefile index a06f0060f71a..b5063e22bc97 100644 --- a/ftp/proftpd-devel/Makefile +++ b/ftp/proftpd-devel/Makefile @@ -40,7 +40,6 @@ PORTDOCS= ${PORTDOCSdoc} ${PORTDOCScontrib} USE_GMAKE= yes GNU_CONFIGURE= yes USE_BZIP2= yes -# USE_AUTOCONF_VER=213 SED_SCRIPT= -e 's|%%PREFIX%%|${PREFIX}|g' @@ -74,6 +73,11 @@ MODULES?= mod_ratio:mod_readme:mod_wrap INCLUDEDIRS= LIBDIRS= +.if defined(WITH_OPENSSL) +USE_OPENSSL= yes +MODULES:=${MODULES}:mod_tls +.endif + .if defined(WITH_LDAP) USE_OPENLDAP= yes MODULES:=${MODULES}:mod_ldap |