diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/nbsmtp/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mail/nbsmtp/Makefile b/mail/nbsmtp/Makefile index e416d5b87726..5ea7f15e765c 100644 --- a/mail/nbsmtp/Makefile +++ b/mail/nbsmtp/Makefile @@ -20,20 +20,21 @@ USE_BZIP2= yes GNU_CONFIGURE= yes OPTIONS= IPV6 "Support for IPv6 connections" off \ - DEBUG "Enable debug information (for developers)" off + DEBUG "Enable debug information (for developers)" off \ + SSL "Enable SSL support" off PLIST_FILES= bin/nbsmtp MAN5= nbsmtprc.5 MAN8= nbsmtp.8 +.include <bsd.port.pre.mk> + .if defined(WITH_SSL) -USE_OPENSSL= yes +.include "${PORTSDIR}/Mk/bsd.openssl.mk" CONFIGURE_ARGS+= --enable-ssl .endif -.include <bsd.port.pre.mk> - .if !defined(WITHOUT_IPV6) CONFIGURE_ARGS+= --enable-ipv6 .endif |