diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-06-11 15:53:55 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-06-11 15:53:55 +0800 |
commit | 934a1b047b172ad1324dc8870f4672b3077c417e (patch) | |
tree | 67f2fef8c97ce95555eb598c8496b94d01d67d0a /mail/exim | |
parent | d3913305603cd7baee41d0f1385b5e7e1a6bfc40 (diff) | |
download | freebsd-ports-gnome-934a1b047b172ad1324dc8870f4672b3077c417e.tar.gz freebsd-ports-gnome-934a1b047b172ad1324dc8870f4672b3077c417e.tar.zst freebsd-ports-gnome-934a1b047b172ad1324dc8870f4672b3077c417e.zip |
Don't link against libssl and libcrypto when TLS support is disabled.
Diffstat (limited to 'mail/exim')
-rw-r--r-- | mail/exim/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index a59a12392b31..c0947491b246 100644 --- a/mail/exim/Makefile +++ b/mail/exim/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) |