diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2000-12-21 08:56:52 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2000-12-21 08:56:52 +0000 |
commit | a818454de9ab5f1fbfe2a3ff5b9ee3bd93d7625b (patch) | |
tree | 841b511c41c433d75ed6de5935140e8ea637a2d8 /mail/exim/Makefile | |
parent | 272b15896ef068d764d2587bc0b8d88044934c00 (diff) |
Notes
Diffstat (limited to 'mail/exim/Makefile')
-rw-r--r-- | mail/exim/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 6ea207a83d49..50c09800ce65 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -33,6 +33,9 @@ MAKE_ENV+= OSTYPE=${OPSYS} ARCHTYPE=${MACHINE_ARCH} #WITH_PAM= yes #WITH_PGSQL= yes +# Link against OpenSSL in the base system for STARTTLS support. +#WITH_TLS= yes + # Enable the embedded Perl interpreter, allowing Perl subroutines to be # called during string expansion. WITH_PERL= yes @@ -59,6 +62,13 @@ SEDLIST= -e 's,XX_PREFIX_XX,${PREFIX},' \ SEDLIST+= -e 's,^EXIM_MONITOR,\#EXIM_MONITOR,' .endif +.if defined(WITH_TLS) +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) SEDLIST+= -e 's,^EXIM_PERL,\#EXIM_PERL,' .endif |