diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-06-10 22:02:49 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-06-10 22:02:49 +0800 |
commit | ef18d3218f355fd6cbb60c031bca6da87d7bce68 (patch) | |
tree | 2125e3e8459e387abb71dc2bf27c99994fccd831 /mail/exim-old | |
parent | 18131786c3ca11869f7ffcbc5b0e279d44d0cad9 (diff) | |
download | freebsd-ports-gnome-ef18d3218f355fd6cbb60c031bca6da87d7bce68.tar.gz freebsd-ports-gnome-ef18d3218f355fd6cbb60c031bca6da87d7bce68.tar.zst freebsd-ports-gnome-ef18d3218f355fd6cbb60c031bca6da87d7bce68.zip |
Fix the embedded Perl interpreter hook.
Diffstat (limited to 'mail/exim-old')
-rw-r--r-- | mail/exim-old/Makefile | 4 | ||||
-rw-r--r-- | mail/exim-old/files/Makefile | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/mail/exim-old/Makefile b/mail/exim-old/Makefile index aabd46912902..a3489dcf726e 100644 --- a/mail/exim-old/Makefile +++ b/mail/exim-old/Makefile @@ -75,8 +75,8 @@ SEDLIST+= -e 's,XX_TLS_LIBS_XX,-lssl -lcrypto,' \ SEDLIST+= -e 's,^TLS_LIBS,\#TLS_LIBS,' .endif -.if !defined(WITH_PERL) && ${WITH_PERL} == "yes" -SEDLIST+= -e 's,^EXIM_PERL,\#EXIM_PERL,' +.if defined(WITH_PERL) && ${WITH_PERL} == "yes" +SEDLIST+= -e 's,^\# EXIM_PERL,EXIM_PERL,' .endif .if defined(WITH_TCP_WRAPPERS) && ${WITH_TCP_WRAPPERS} == "yes" diff --git a/mail/exim-old/files/Makefile b/mail/exim-old/files/Makefile index 1897ee815f50..0639047027f1 100644 --- a/mail/exim-old/files/Makefile +++ b/mail/exim-old/files/Makefile @@ -249,7 +249,7 @@ EXIM_MONITOR=eximon.bin # use Perl code in Exim's string manipulation language and you have Perl # (version 5.004 or later) installed, set EXIM_PERL to perl.o. -EXIM_PERL=perl.o +# EXIM_PERL=perl.o # There are also three options which are used when compiling the Perl interface @@ -576,7 +576,7 @@ TRANSPORT_SMTP=yes # this setting. See the manual section entitled "Use of tcpwrappers" in the # chapter on building and installing Exim. -USE_TCP_WRAPPERS=yes -EXTRALIBS=-lwrap XX_PAM_LIBS_XX +# USE_TCP_WRAPPERS=yes +EXTRALIBS=XX_TCP_WRAPPERS_LIBS_XX XX_PAM_LIBS_XX # End of EDITME |