diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2003-08-14 18:25:15 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2003-08-14 18:25:15 +0800 |
commit | 2676d95c1e86bd8e60cbb1221fd7c841fbbbc73b (patch) | |
tree | d414be28928eb3123fd250d5158c9e48fb892fd8 /mail/exim/files | |
parent | 0defb9cf1f9a751c7d761485e599bfa877f7306c (diff) | |
download | freebsd-ports-gnome-2676d95c1e86bd8e60cbb1221fd7c841fbbbc73b.tar.gz freebsd-ports-gnome-2676d95c1e86bd8e60cbb1221fd7c841fbbbc73b.tar.zst freebsd-ports-gnome-2676d95c1e86bd8e60cbb1221fd7c841fbbbc73b.zip |
Update to exim-4.21:
* This is a mostly maintenance release, although some new features have
been added (including Sieve support).
!!!WARNING!!!
The non-ACL exiscan patch is no longer supported. The exiscan-acl patch
is now used by default, unless WITHOUT_EXISCAN is given.
This means that existing installations that rely on non-ACL exiscan
CAN NOT be upgraded without changes to the configure file.
Diffstat (limited to 'mail/exim/files')
-rw-r--r-- | mail/exim/files/patch-OS::Makefile-FreeBSD | 15 | ||||
-rw-r--r-- | mail/exim/files/patch-src::host.c | 13 |
2 files changed, 12 insertions, 16 deletions
diff --git a/mail/exim/files/patch-OS::Makefile-FreeBSD b/mail/exim/files/patch-OS::Makefile-FreeBSD index 58f6355e13d8..59769cfb40f7 100644 --- a/mail/exim/files/patch-OS::Makefile-FreeBSD +++ b/mail/exim/files/patch-OS::Makefile-FreeBSD @@ -1,10 +1,19 @@ ---- OS/Makefile-FreeBSD.orig Mon Jun 11 12:04:05 2001 -+++ OS/Makefile-FreeBSD Mon Jun 11 12:04:33 2001 -@@ -5,6 +5,7 @@ +--- OS/Makefile-FreeBSD.orig Tue Aug 12 17:39:51 2003 ++++ OS/Makefile-FreeBSD Thu Aug 14 12:10:46 2003 +@@ -5,12 +5,16 @@ PORTOBJFORMAT!= test -x /usr/bin/objformat && /usr/bin/objformat || echo aout CHOWN_COMMAND=/usr/sbin/chown +STRIP_COMMAND=/usr/bin/strip + HAVE_ICONV=yes HAVE_SA_LEN=YES + # crypt() is in a separate library + LIBS=-lcrypt ++ ++# iconv() is in a separate 4rd party library ++LFLAGS+=-liconv -L${LOCALBASE}/lib + + # FreeBSD always ships with Berkeley DB + USE_DB=yes diff --git a/mail/exim/files/patch-src::host.c b/mail/exim/files/patch-src::host.c deleted file mode 100644 index b6e1e98e4207..000000000000 --- a/mail/exim/files/patch-src::host.c +++ /dev/null @@ -1,13 +0,0 @@ ---- src/host.c.orig Mon May 12 15:39:19 2003 -+++ src/host.c Fri Jun 20 14:54:12 2003 -@@ -817,8 +817,8 @@ - int rc; - uschar *save = deliver_domain; - deliver_domain = h->name; /* set $domain */ -- rc = match_isinlist(string_copylc(h->name), &hosts_treat_as_local, 0, NULL, -- NULL, MCL_DOMAIN, TRUE, NULL); -+ rc = match_isinlist(string_copylc(h->name), &hosts_treat_as_local, 0, -+ &domainlist_anchor, NULL, MCL_DOMAIN, TRUE, NULL); - deliver_domain = save; - if (rc == OK) goto FOUND_LOCAL; - } |