diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-06-10 13:17:09 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-06-10 13:17:09 +0000 |
commit | eff46b9cde70b9ca1ccffc04c68d8c20ef2d9c02 (patch) | |
tree | 97cf42af162d01c6126cd8ed9f3466e0b75060c0 /mail/exim | |
parent | 2f6d8df66634463283a2ed2e0facb91e76673d28 (diff) | |
download | FreeBSD-ports-eff46b9cde70b9ca1ccffc04c68d8c20ef2d9c02.zip FreeBSD-ports-eff46b9cde70b9ca1ccffc04c68d8c20ef2d9c02.tar.gz |
Enable TLS by default so that it's included in the package.
Allow the operator to disable the embedded Perl interpreter in the port
build.
Diffstat (limited to 'mail/exim')
-rw-r--r-- | mail/exim/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 83e0b8a..f9555db 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -37,11 +37,11 @@ MAKE_ENV+= OSTYPE=${OPSYS} ARCHTYPE=${MACHINE_ARCH} #WITH_PGSQL= yes # Link against OpenSSL in the base system for STARTTLS support. -#WITH_TLS= yes +WITH_TLS?= yes # Enable the embedded Perl interpreter, allowing Perl subroutines to be # called during string expansion. -WITH_PERL= yes +WITH_PERL?= yes # If WITH_PAM is defined then one or more of PAM_CRAM_MD5 and PAM_PLAINTEXT # must be left uncommented. @@ -66,14 +66,14 @@ SEDLIST= -e 's,XX_PREFIX_XX,${PREFIX},' \ SEDLIST+= -e 's,^EXIM_MONITOR,\#EXIM_MONITOR,' .endif -.if defined(WITH_TLS) +.if defined(WITH_TLS) && ${WITH_TLS} == "yes" SEDLIST+= -e 's,XX_TLS_LIBS_XX,-lssl -lcrypto,' \ -e 's,^\# SUPPORT_TLS,SUPPORT_TLS,' .else SEDLIST+= -e 's,^TLS_LIBS,\#TLS_LIBS,' .endif -.if !defined(WITH_PERL) +.if !defined(WITH_PERL) && ${WITH_PERL} == "yes" SEDLIST+= -e 's,^EXIM_PERL,\#EXIM_PERL,' .endif |