Tue Nov 17 06:39:33 2009 UTC ()
Changes 4.70:
* Added patch by Johannes Berg that expands the main option
  "spamd_servers" if it starts with a dollar sign.
* Write list of recipients to X-Envelope-Sender header when building
  the mbox-format spool file for content scanning.
* Added patch by Wolfgang Breyha that adds experimental DCC
  (http://www.dcc-servers.net/) support via dccifd. Activated by
  setting EXPERIMENTAL_DCC=yes in Local/Makefile. Check out
  experimental_spec.txt for more documentation.
* Bugzilla 673: Add f-protd malware scanner support.
* Bugzilla 657: Embedded PCRE removed from the exim source tree.
  When building exim an external PCRE library is now needed -
  PCRE is a system library on the majority of modern systems.
  See entry on PCRE_LIBS in EDITME file.
* Bugzilla 646: Removed unwanted C/R in Dovecot authenticator
  conversation.  Added nologin parameter to request.
* Do not log submission mode rewrites if they do not change the address.
* Bugzilla 662: Fix stack corruption before exec() in daemon.c.
* Bugzilla 602: exicyclog now handles panic log, and creates empty
  log files in place.  Contributed by Roberto Lima
* Bugzilla 667: close socket used by dovecot authenticator
* Bugzilla 615: When checking the local_parts router precondition
  after a local_part_suffix or local_part_prefix option, Exim now
  does not use the address's named list lookup cache, since this
  contains cached lookups for the whole local part.
* Bugzilla 521: Integrated SPF Best Guess support contributed by
  Robert Millan.  Documentation is in experimental-spec.txt
* Bugzilla 668: Fix parallel build (make -j).
* Bugzilla 437: Prevent Maildir aux files being created with mode 000
* Bugzilla 598: Improvement to Dovecot authenticator handling.
* Leading white space used to be stripped from $spam_report which
  wrecked the formatting. Now it is preserved.
* Save $spam_score, $spam_bar, and $spam_report in spool files, so
  that they are available at delivery time.
* Fix the way ${extract is skipped in the untaken branch of a conditional.
* TLS error reporting now respects the incoming_interface and
  incoming_port log selectors.
* more...


(adam)
diff -r1.95 -r1.96 pkgsrc/mail/exim/Makefile
diff -r1.41 -r1.42 pkgsrc/mail/exim/distinfo
diff -r1.19 -r1.20 pkgsrc/mail/exim/patches/patch-aa
diff -r1.13 -r1.14 pkgsrc/mail/exim/patches/patch-ab
diff -r1.12 -r0 pkgsrc/mail/exim/patches/patch-ac
diff -r1.11 -r0 pkgsrc/mail/exim/patches/patch-ad

cvs diff -r1.95 -r1.96 pkgsrc/mail/exim/Makefile (expand / switch to unified diff)

--- pkgsrc/mail/exim/Makefile 2009/02/13 15:28:03 1.95
+++ pkgsrc/mail/exim/Makefile 2009/11/17 06:39:32 1.96
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.95 2009/02/13 15:28:03 abs Exp $ 1# $NetBSD: Makefile,v 1.96 2009/11/17 06:39:32 adam Exp $
2 2
3DISTNAME= exim-4.69 3DISTNAME= exim-4.70
4PKGREVISION= 4 
5CATEGORIES= mail net 4CATEGORIES= mail net
6MASTER_SITES= ftp://ftp.exim.org/pub/exim/exim4/ \ 5MASTER_SITES= ftp://ftp.exim.org/pub/exim/exim4/ \
7 ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/exim4/ \ 6 ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/exim4/ \
8 ftp://ftp.esat.net/pub/networking/mail/mta/exim/exim4/ 7 ftp://ftp.esat.net/pub/networking/mail/mta/exim/exim4/
9EXTRACT_SUFX= .tar.bz2 8EXTRACT_SUFX= .tar.bz2
10 9
11MAINTAINER= abs@NetBSD.org 10MAINTAINER= abs@NetBSD.org
12HOMEPAGE= http://www.exim.org/ 11HOMEPAGE= http://www.exim.org/
13COMMENT= The Exim mail transfer agent, a replacement for sendmail 12COMMENT= The Exim mail transfer agent, a replacement for sendmail
14 13
15CONFLICTS+= exim-exiscan-[0-9]* 14CONFLICTS+= exim-exiscan-[0-9]*
16 15
17USE_TOOLS+= perl:run 16USE_TOOLS+= perl:run
@@ -49,50 +48,48 @@ PLIST_SUBST+= DISTNAME=${DISTNAME} @@ -49,50 +48,48 @@ PLIST_SUBST+= DISTNAME=${DISTNAME}
49RCD_SCRIPTS= exim 48RCD_SCRIPTS= exim
50 49
51OWN_DIRS_PERMS= ${VARBASE}/log/exim ${EXIM_USER} ${EXIM_GROUP} 0750 50OWN_DIRS_PERMS= ${VARBASE}/log/exim ${EXIM_USER} ${EXIM_GROUP} 0750
52OWN_DIRS_PERMS+= ${VARBASE}/spool/exim ${EXIM_USER} ${EXIM_GROUP} 0750 51OWN_DIRS_PERMS+= ${VARBASE}/spool/exim ${EXIM_USER} ${EXIM_GROUP} 0750
53 52
54# XXX: The following will be handled by buildlink3 at some point. 53# XXX: The following will be handled by buildlink3 at some point.
55CFLAGS+= ${_STRIPFLAG_CC} 54CFLAGS+= ${_STRIPFLAG_CC}
56 55
57# pay attention to CPPFLAGS as well 56# pay attention to CPPFLAGS as well
58CFLAGS+= ${CPPFLAGS} 57CFLAGS+= ${CPPFLAGS}
59 58
60.include "options.mk" 59.include "options.mk"
61 60
62# BDB_TYPE gets set to "db1" if USE_DB185=="yes" 
63USE_DB185?= no 
64BDB_ACCEPTED?= db1 db2 db3 db4 
65 
66post-extract: 61post-extract:
67 mkdir ${WRKSRC}/Local 62 mkdir ${WRKSRC}/Local
68 cp ${WRKSRC}/src/EDITME ${WRKSRC}/Local/Makefile.pkgsrc 63 cp ${WRKSRC}/src/EDITME ${WRKSRC}/Local/Makefile.pkgsrc
69 cp ${WRKSRC}/exim_monitor/EDITME ${WRKSRC}/Local/eximon.conf.pkgsrc 64 cp ${WRKSRC}/exim_monitor/EDITME ${WRKSRC}/Local/eximon.conf.pkgsrc
70 cp ${FILESDIR}/Makefile-DragonFly ${FILESDIR}/os.h-DragonFly \ 65 cp ${FILESDIR}/Makefile-DragonFly ${FILESDIR}/os.h-DragonFly \
71 ${WRKSRC}/OS/ 66 ${WRKSRC}/OS/
72 67
73pre-configure: 68pre-configure:
74 sed -e 's:@PREFIX@:${PREFIX}:' \ 69 sed -e 's:@PREFIX@:${PREFIX}:' \
75 -e 's:@PKG_SYSCONFDIR@:${PKG_SYSCONFDIR}:' \ 70 -e 's:@PKG_SYSCONFDIR@:${PKG_SYSCONFDIR}:' \
76 -e 's:@EXIM_USER@:${EXIM_USER}:' \ 71 -e 's:@EXIM_USER@:${EXIM_USER}:' \
77 -e 's:@EXIM_GROUP@:${EXIM_GROUP}:' \ 72 -e 's:@EXIM_GROUP@:${EXIM_GROUP}:' \
78 -e 's:@EXIM_USE_DB_CONFIG@:${EXIM_USE_DB_CONFIG}:' \ 73 -e 's:@EXIM_USE_DB_CONFIG@:${EXIM_USE_DB_CONFIG}:' \
79 -e 's:@EXIM_DBMLIB@:${EXIM_DBMLIB}:' \ 74 -e 's:@EXIM_DBMLIB@:${EXIM_DBMLIB}:' \
80 -e 's:@EXIM_INCLUDE@:${EXIM_INCLUDE}:' \ 75 -e 's:@EXIM_INCLUDE@:${EXIM_INCLUDE}:' \
81 -e 's:@LOOKUP_LIBS@:${LOOKUP_LIBS}:' \ 76 -e 's:@LOOKUP_LIBS@:${LOOKUP_LIBS}:' \
82 -e 's:@CHOWN@:${CHOWN}:' \ 77 -e 's:@CHOWN@:${CHOWN}:' \
83 -e 's:@CHGRP@:${CHGRP}:' \ 78 -e 's:@CHGRP@:${CHGRP}:' \
 79 -e 's:@CHMOD@:${CHMOD}:' \
84 -e 's:@MV@:${MV}:' \ 80 -e 's:@MV@:${MV}:' \
85 -e 's:@RM@:${RM}:' \ 81 -e 's:@RM@:${RM}:' \
 82 -e 's:@TOUCH@:${TOUCH}:' \
86 -e 's:@PERL5@:${PERL5}:' \ 83 -e 's:@PERL5@:${PERL5}:' \
87 -e 's:@VARBASE@:${VARBASE}:' \ 84 -e 's:@VARBASE@:${VARBASE}:' \
88 < ${WRKSRC}/Local/Makefile.pkgsrc \ 85 < ${WRKSRC}/Local/Makefile.pkgsrc \
89 > ${WRKSRC}/Local/Makefile 86 > ${WRKSRC}/Local/Makefile
90.for opt in ${LOCAL_MAKEFILE_OPTIONS} 87.for opt in ${LOCAL_MAKEFILE_OPTIONS}
91 ${ECHO} ${opt} >> ${WRKSRC}/Local/Makefile 88 ${ECHO} ${opt} >> ${WRKSRC}/Local/Makefile
92.endfor 89.endfor
93.if !empty(EXIM_MAX_INCLUDE_SIZE) 90.if !empty(EXIM_MAX_INCLUDE_SIZE)
94 ${ECHO} MAX_INCLUDE_SIZE=${EXIM_MAX_INCLUDE_SIZE} >> ${WRKSRC}/Local/Makefile 91 ${ECHO} MAX_INCLUDE_SIZE=${EXIM_MAX_INCLUDE_SIZE} >> ${WRKSRC}/Local/Makefile
95.endif 92.endif
96 sed -e 's:@PREFIX@:${PREFIX}:' \ 93 sed -e 's:@PREFIX@:${PREFIX}:' \
97 -e 's:@PKG_SYSCONFDIR@:${PKG_SYSCONFDIR}:' \ 94 -e 's:@PKG_SYSCONFDIR@:${PKG_SYSCONFDIR}:' \
98 < ${WRKSRC}/Local/eximon.conf.pkgsrc \ 95 < ${WRKSRC}/Local/eximon.conf.pkgsrc \
@@ -105,14 +102,15 @@ pre-configure: @@ -105,14 +102,15 @@ pre-configure:
105 102
106post-build: 103post-build:
107 sed -e 's:@PREFIX@:${PREFIX}:' \ 104 sed -e 's:@PREFIX@:${PREFIX}:' \
108 ${FILESDIR}/mailer.conf.exim \ 105 ${FILESDIR}/mailer.conf.exim \
109 > ${WRKDIR}/mailer.conf 106 > ${WRKDIR}/mailer.conf
110 107
111INSTALLATION_DIRS = ${PKGMANDIR}/man8 sbin share/examples/exim 108INSTALLATION_DIRS = ${PKGMANDIR}/man8 sbin share/examples/exim
112 109
113post-install: 110post-install:
114 ${INSTALL_DATA} ${WRKDIR}/mailer.conf ${DESTDIR}${EXAMPLESDIR} 111 ${INSTALL_DATA} ${WRKDIR}/mailer.conf ${DESTDIR}${EXAMPLESDIR}
115 ${INSTALL_DATA} ${WRKSRC}/doc/exim.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/exim.8 112 ${INSTALL_DATA} ${WRKSRC}/doc/exim.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/exim.8
116 113
117.include "../../converters/libiconv/buildlink3.mk" 114.include "../../converters/libiconv/buildlink3.mk"
 115.include "../../devel/pcre/buildlink3.mk"
118.include "../../mk/bsd.pkg.mk" 116.include "../../mk/bsd.pkg.mk"

cvs diff -r1.41 -r1.42 pkgsrc/mail/exim/distinfo (expand / switch to unified diff)

--- pkgsrc/mail/exim/distinfo 2009/02/13 15:28:03 1.41
+++ pkgsrc/mail/exim/distinfo 2009/11/17 06:39:32 1.42
@@ -1,11 +1,9 @@ @@ -1,11 +1,9 @@
1$NetBSD: distinfo,v 1.41 2009/02/13 15:28:03 abs Exp $ 1$NetBSD: distinfo,v 1.42 2009/11/17 06:39:32 adam Exp $
2 2
3SHA1 (exim-4.69.tar.bz2) = 321e238b6e6b32498110511ce72a911538305a39 3SHA1 (exim-4.70.tar.bz2) = 012d32acb63342f60d50f8905e20acb2f73f59b0
4RMD160 (exim-4.69.tar.bz2) = ae97c807c63f858ba4a0ab402677225da9337d05 4RMD160 (exim-4.70.tar.bz2) = 4b216099bb4a3c9ba084729a47611d1df09344e0
5Size (exim-4.69.tar.bz2) = 1658939 bytes 5Size (exim-4.70.tar.bz2) = 1560329 bytes
6SHA1 (patch-aa) = 93dca43408fb837deb95d2b22502c64559780f7c 6SHA1 (patch-aa) = cf514f31626cde31747342a2d50edd1dbf7f195f
7SHA1 (patch-ab) = 1c6e7882346974390c22e7b9e09a76c5ed670d1d 7SHA1 (patch-ab) = f5be62c134b1a2d0870a14546ec0bb62090d498a
8SHA1 (patch-ac) = de96032a9cf5450101cc73d615d374ddf6817fee 
9SHA1 (patch-ad) = 804ab58f454f7e100c117f2cec9cf478375c1752 
10SHA1 (patch-ae) = 33573e3d02edbca0c44ed54d1aadd2db50fa1fe6 8SHA1 (patch-ae) = 33573e3d02edbca0c44ed54d1aadd2db50fa1fe6
11SHA1 (patch-ag) = 8512795060ad913f4699c277867fd24e7a785519 9SHA1 (patch-ag) = 8512795060ad913f4699c277867fd24e7a785519

cvs diff -r1.19 -r1.20 pkgsrc/mail/exim/patches/Attic/patch-aa (expand / switch to unified diff)

--- pkgsrc/mail/exim/patches/Attic/patch-aa 2007/06/24 10:55:41 1.19
+++ pkgsrc/mail/exim/patches/Attic/patch-aa 2009/11/17 06:39:32 1.20
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1$NetBSD: patch-aa,v 1.19 2007/06/24 10:55:41 abs Exp $ 1$NetBSD: patch-aa,v 1.20 2009/11/17 06:39:32 adam Exp $
2 2
3--- Local/Makefile.pkgsrc.orig 2007-06-24 11:43:28.000000000 +0100 3--- Local/Makefile.pkgsrc.orig 2009-11-16 07:56:01.000000000 +0100
4+++ Local/Makefile.pkgsrc 4+++ Local/Makefile.pkgsrc
5@@ -100,7 +100,7 @@ 5@@ -100,7 +100,7 @@
6 # /usr/local/sbin. The installation script will try to create this directory, 6 # /usr/local/sbin. The installation script will try to create this directory,
7 # and any superior directories, if they do not exist. 7 # and any superior directories, if they do not exist.
8  8
9-BIN_DIRECTORY=/usr/exim/bin 9-BIN_DIRECTORY=/usr/exim/bin
10+BIN_DIRECTORY=@PREFIX@/sbin 10+BIN_DIRECTORY=@PREFIX@/sbin
11  11
12  12
13 #------------------------------------------------------------------------------ 13 #------------------------------------------------------------------------------
14@@ -116,7 +116,7 @@ BIN_DIRECTORY=/usr/exim/bin 14@@ -116,7 +116,7 @@ BIN_DIRECTORY=/usr/exim/bin
15 # don't exist. It will also install a default runtime configuration if this 15 # don't exist. It will also install a default runtime configuration if this
16 # file does not exist. 16 # file does not exist.
@@ -37,83 +37,87 @@ $NetBSD: patch-aa,v 1.19 2007/06/24 10:5 @@ -37,83 +37,87 @@ $NetBSD: patch-aa,v 1.19 2007/06/24 10:5
37+EXIM_GROUP=ref:@EXIM_GROUP@ 37+EXIM_GROUP=ref:@EXIM_GROUP@
38  38
39 # Many sites define a user called "exim", with an appropriate default group, 39 # Many sites define a user called "exim", with an appropriate default group,
40 # and use 40 # and use
41@@ -176,7 +176,7 @@ EXIM_USER= 41@@ -176,7 +176,7 @@ EXIM_USER=
42  42
43 # Almost all installations choose this: 43 # Almost all installations choose this:
44  44
45-SPOOL_DIRECTORY=/var/spool/exim 45-SPOOL_DIRECTORY=/var/spool/exim
46+SPOOL_DIRECTORY=@VARBASE@/spool/exim 46+SPOOL_DIRECTORY=@VARBASE@/spool/exim
47  47
48  48
49  49
50@@ -320,7 +320,7 @@ LOOKUP_LSEARCH=yes 50@@ -333,7 +333,7 @@ PCRE_LIBS=-lpcre
51 # files are defaulted in the OS/Makefile-Default file, but can be overridden in 51 # files are defaulted in the OS/Makefile-Default file, but can be overridden in
52 # local OS-specific make files. 52 # local OS-specific make files.
53  53
54-EXIM_MONITOR=eximon.bin 54-EXIM_MONITOR=eximon.bin
55+# EXIM_MONITOR=eximon.bin 55+# EXIM_MONITOR=eximon.bin
56  56
57  57
58 #------------------------------------------------------------------------------ 58 #------------------------------------------------------------------------------
59@@ -473,11 +473,11 @@ FIXED_NEVER_USERS=root 59@@ -486,11 +486,11 @@ FIXED_NEVER_USERS=root
60 # included in the Exim binary. You will then need to set up the run time 60 # included in the Exim binary. You will then need to set up the run time
61 # configuration to make use of the mechanism(s) selected. 61 # configuration to make use of the mechanism(s) selected.
62  62
63-# AUTH_CRAM_MD5=yes 63-# AUTH_CRAM_MD5=yes
64+AUTH_CRAM_MD5=yes 64+AUTH_CRAM_MD5=yes
65 # AUTH_CYRUS_SASL=yes 65 # AUTH_CYRUS_SASL=yes
66 # AUTH_DOVECOT=yes 66 # AUTH_DOVECOT=yes
67-# AUTH_PLAINTEXT=yes 67-# AUTH_PLAINTEXT=yes
68-# AUTH_SPA=yes 68-# AUTH_SPA=yes
69+AUTH_PLAINTEXT=yes 69+AUTH_PLAINTEXT=yes
70+AUTH_SPA=yes 70+AUTH_SPA=yes
71  71
72  72
73 #------------------------------------------------------------------------------ 73 #------------------------------------------------------------------------------
74@@ -643,7 +643,7 @@ HEADERS_CHARSET="ISO-8859-1" 74@@ -656,7 +656,7 @@ HEADERS_CHARSET="ISO-8859-1"
75 # %s. This will be replaced by one of the strings "main", "panic", or "reject" 75 # %s. This will be replaced by one of the strings "main", "panic", or "reject"
76 # to form the final file names. Some installations may want something like this: 76 # to form the final file names. Some installations may want something like this:
77  77
78-# LOG_FILE_PATH=/var/log/exim_%slog 78-# LOG_FILE_PATH=/var/log/exim_%slog
79+LOG_FILE_PATH=@VARBASE@/log/exim/%s 79+LOG_FILE_PATH=@VARBASE@/log/exim/%s
80  80
81 # which results in files with names /var/log/exim_mainlog, etc. The directory 81 # which results in files with names /var/log/exim_mainlog, etc. The directory
82 # in which the log files are placed must exist; Exim does not try to create 82 # in which the log files are placed must exist; Exim does not try to create
83@@ -884,11 +884,11 @@ SYSTEM_ALIASES_FILE=/etc/aliases 83@@ -897,13 +897,13 @@ SYSTEM_ALIASES_FILE=/etc/aliases
84 # haven't got Perl, Exim will still build and run; you just won't be able to 84 # haven't got Perl, Exim will still build and run; you just won't be able to
85 # use those utilities. 85 # use those utilities.
86  86
87-# CHOWN_COMMAND=/usr/bin/chown 87-# CHOWN_COMMAND=/usr/bin/chown
88-# CHGRP_COMMAND=/usr/bin/chgrp 88-# CHGRP_COMMAND=/usr/bin/chgrp
 89-# CHMOD_COMMAND=/usr/bin/chmod
89-# MV_COMMAND=/bin/mv 90-# MV_COMMAND=/bin/mv
90-# RM_COMMAND=/bin/rm 91-# RM_COMMAND=/bin/rm
 92-# TOUCH_COMMAND=/usr/bin/touch
91-# PERL_COMMAND=/usr/bin/perl 93-# PERL_COMMAND=/usr/bin/perl
92+CHOWN_COMMAND=@CHOWN@ 94+CHOWN_COMMAND=@CHOWN@
93+CHGRP_COMMAND=@CHGRP@ 95+CHGRP_COMMAND=@CHGRP@
 96+CHMOD_COMMAND=@CHMOD@
94+MV_COMMAND=@MV@ 97+MV_COMMAND=@MV@
95+RM_COMMAND=@RM@ 98+RM_COMMAND=@RM@
 99+TOUCH_COMMAND=@TOUCH@
96+PERL_COMMAND=@PERL5@ 100+PERL_COMMAND=@PERL5@
97  101
98  102
99 #------------------------------------------------------------------------------ 103 #------------------------------------------------------------------------------
100@@ -1082,7 +1082,7 @@ TMPDIR="/tmp" 104@@ -1097,7 +1097,7 @@ TMPDIR="/tmp"
101 # (process id) to a file so that it can easily be identified. The path of the 105 # (process id) to a file so that it can easily be identified. The path of the
102 # file can be specified here. Some installations may want something like this: 106 # file can be specified here. Some installations may want something like this:
103  107
104-# PID_FILE_PATH=/var/lock/exim.pid 108-# PID_FILE_PATH=/var/lock/exim.pid
105+PID_FILE_PATH=/var/run/exim.pid 109+PID_FILE_PATH=/var/run/exim.pid
106  110
107 # If PID_FILE_PATH is not defined, Exim writes a file in its spool directory 111 # If PID_FILE_PATH is not defined, Exim writes a file in its spool directory
108 # using the name "exim-daemon.pid". 112 # using the name "exim-daemon.pid".
109@@ -1134,3 +1134,10 @@ TMPDIR="/tmp" 113@@ -1149,3 +1149,10 @@ TMPDIR="/tmp"
110 # ENABLE_DISABLE_FSYNC=yes 114 # ENABLE_DISABLE_FSYNC=yes
111  115
112 # End of EDITME for Exim 4. 116 # End of EDITME for Exim 4.
113+ 117+
114+EXTRALIBS_EXIM=-liconv 118+EXTRALIBS_EXIM=-liconv
115+ 119+
116+@EXIM_USE_DB_CONFIG@ 120+@EXIM_USE_DB_CONFIG@
117+@EXIM_DBMLIB@ 121+@EXIM_DBMLIB@
118+INCLUDE=@EXIM_INCLUDE@ 122+INCLUDE=@EXIM_INCLUDE@
119+LOOKUP_LIBS=@LOOKUP_LIBS@ 123+LOOKUP_LIBS=@LOOKUP_LIBS@

cvs diff -r1.13 -r1.14 pkgsrc/mail/exim/patches/Attic/patch-ab (expand / switch to unified diff)

--- pkgsrc/mail/exim/patches/Attic/patch-ab 2006/08/08 15:24:01 1.13
+++ pkgsrc/mail/exim/patches/Attic/patch-ab 2009/11/17 06:39:32 1.14
@@ -1,13 +1,13 @@ @@ -1,13 +1,13 @@
1$NetBSD: patch-ab,v 1.13 2006/08/08 15:24:01 abs Exp $ 1$NetBSD: patch-ab,v 1.14 2009/11/17 06:39:32 adam Exp $
2 2
3--- OS/Makefile-Default.orig 2006-04-28 11:32:21.000000000 +0100 3--- OS/Makefile-Default.orig 2009-10-16 09:30:54.000000000 +0200
4+++ OS/Makefile-Default 4+++ OS/Makefile-Default
5@@ -71,7 +71,7 @@ PERL_COMMAND=/usr/bin/perl 5@@ -73,7 +73,7 @@ PERL_COMMAND=/usr/bin/perl
6  6
7 # CC contains the name of the C compiler to be used. 7 # CC contains the name of the C compiler to be used.
8  8
9-CC=gcc 9-CC=gcc
10+# CC=gcc 10+# CC=gcc
11  11
12  12
13 # CFLAGS contains flags to be passed to the compiler. Nothing is defaulted 13 # CFLAGS contains flags to be passed to the compiler. Nothing is defaulted

File Deleted: pkgsrc/mail/exim/patches/Attic/patch-ac

File Deleted: pkgsrc/mail/exim/patches/Attic/patch-ad