diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-06-11 07:53:55 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-06-11 07:53:55 +0000 |
commit | db0afe2b509cf88f17e218f93abd9bb5d6be0580 (patch) | |
tree | a790ebef0f437f10572a6d23a105fcda233bccdb /mail | |
parent | 20b7a5c052435b86bd4d68d77c7be5fc40b62fb4 (diff) | |
download | ports-db0afe2b509cf88f17e218f93abd9bb5d6be0580.tar.gz ports-db0afe2b509cf88f17e218f93abd9bb5d6be0580.zip |
Don't link against libssl and libcrypto when TLS support is disabled.
Notes
Notes:
svn path=/head/; revision=43825
Diffstat (limited to 'mail')
-rw-r--r-- | mail/exim-devel/Makefile | 2 | ||||
-rw-r--r-- | mail/exim-old/Makefile | 2 | ||||
-rw-r--r-- | mail/exim/Makefile | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/mail/exim-devel/Makefile b/mail/exim-devel/Makefile index a59a12392b31..c0947491b246 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) diff --git a/mail/exim-old/Makefile b/mail/exim-old/Makefile index a59a12392b31..c0947491b246 100644 --- a/mail/exim-old/Makefile +++ b/mail/exim-old/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) 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) |