diff options
author | Michael Haro <mharo@FreeBSD.org> | 2004-04-01 09:44:53 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 2004-04-01 09:44:53 +0000 |
commit | 012b1a9408b0813a1cd3c52bbae51b19d70af0ce (patch) | |
tree | 0bf3b7ca9d4718246d873263507f0ab1f8311c4f /ftp/proftpd | |
parent | Update to 1.11. (diff) |
Support WITH_OPENSSL
PR: 65006
Submitted by: Jochen Gensch <incmc@gmx.de>
Notes
Notes:
svn path=/head/; revision=105853
Diffstat (limited to 'ftp/proftpd')
-rw-r--r-- | ftp/proftpd/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ftp/proftpd/Makefile b/ftp/proftpd/Makefile index a06f0060f71a..b5063e22bc97 100644 --- a/ftp/proftpd/Makefile +++ b/ftp/proftpd/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 |