diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-06-11 07:53:55 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-06-11 07:53:55 +0000 |
commit | 934a1b047b172ad1324dc8870f4672b3077c417e (patch) | |
tree | 67f2fef8c97ce95555eb598c8496b94d01d67d0a /mail/exim-devel | |
parent | d3913305603cd7baee41d0f1385b5e7e1a6bfc40 (diff) | |
download | FreeBSD-ports-934a1b047b172ad1324dc8870f4672b3077c417e.zip FreeBSD-ports-934a1b047b172ad1324dc8870f4672b3077c417e.tar.gz |
Don't link against libssl and libcrypto when TLS support is disabled.
Diffstat (limited to 'mail/exim-devel')
-rw-r--r-- | mail/exim-devel/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mail/exim-devel/Makefile b/mail/exim-devel/Makefile index a59a123..c094749 100644 --- a/mail/exim-devel/Makefile +++ b/mail/exim-devel/Makefile @@ -71,6 +71,8 @@ SEDLIST+= -e 's,^EXIM_MONITOR,\#EXIM_MONITOR,' .if !defined(WITHOUT_TLS) SEDLIST+= -e 's,^\# SUPPORT_TLS=,SUPPORT_TLS=,' +.else +SEDLIST+= -e 's,^TLS_LIBS,\#TLS_LIBS,' .endif .if !defined(WITHOUT_PERL) |