diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-06-10 13:17:09 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-06-10 13:17:09 +0000 |
commit | 0ecd5759901011facab8be5ace998b1e7ce7f197 (patch) | |
tree | 41c80af5d784b4896bd0ecf80d41b29cee8cd3b4 | |
parent | upgrade to 1.01c (diff) |
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.
Notes
Notes:
svn path=/head/; revision=43752
-rw-r--r-- | mail/exim-devel/Makefile | 8 | ||||
-rw-r--r-- | mail/exim-old/Makefile | 8 | ||||
-rw-r--r-- | mail/exim/Makefile | 8 |
3 files changed, 12 insertions, 12 deletions
diff --git a/mail/exim-devel/Makefile b/mail/exim-devel/Makefile index 83e0b8abf37f..f9555db9cc1d 100644 --- a/mail/exim-devel/Makefile +++ b/mail/exim-devel/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 diff --git a/mail/exim-old/Makefile b/mail/exim-old/Makefile index 83e0b8abf37f..f9555db9cc1d 100644 --- a/mail/exim-old/Makefile +++ b/mail/exim-old/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 diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 83e0b8abf37f..f9555db9cc1d 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 |