diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-06-11 07:21:46 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-06-11 07:21:46 +0000 |
commit | 17e6e102dfe41cb24c821e2081197f0086666375 (patch) | |
tree | b1e62635337470149ddb01a2c7137ddefefbc6e1 /mail/exim-devel | |
parent | Add ruby-setup.rb, a common installer script for ruby packages. (diff) |
When WITH_TCP_WRAPPERS is not defined, actually remove the XX_ cruft
from EXTRALIBS.
Notes
Notes:
svn path=/head/; revision=43819
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 d8db87b7e0d2..4855e5d0581d 100644 --- a/mail/exim-devel/Makefile +++ b/mail/exim-devel/Makefile @@ -83,6 +83,8 @@ SEDLIST+= -e 's,^\# EXIM_PERL=,EXIM_PERL=,' .if defined(WITH_TCP_WRAPPERS) SEDLIST+= -e 's,XX_TCP_WRAPPERS_LIBS_XX,-lwrap,' \ -e 's,^\# USE_TCP_WRAPPERS=,USE_TCP_WRAPPERS=,' +.else +SEDLIST+= -e 's/XX_TCP_WRAPPERS_LIBS_XX,,' .endif .if defined(WITH_LDAP) |