diff options
author | Juergen Daubert <jue@jue.li> | 2007-04-17 16:43:47 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2007-04-17 16:43:47 +0200 |
commit | 36ec8122cc50494b0612702833d77ab4a479f5c4 (patch) | |
tree | f90a9ead4685da4e073fc028494b881ba6a20008 /exim | |
parent | d59d8edb68fd988c4fa2b7a32aa9f2fd310602b5 (diff) | |
download | core-36ec8122cc50494b0612702833d77ab4a479f5c4.tar.gz core-36ec8122cc50494b0612702833d77ab4a479f5c4.tar.xz |
exim: update to 4.67
Diffstat (limited to 'exim')
-rw-r--r-- | exim/.footprint | 8 | ||||
-rw-r--r-- | exim/.md5sum | 3 | ||||
-rw-r--r-- | exim/Pkgfile | 7 | ||||
-rw-r--r-- | exim/exim-openssl.patch | 17 |
4 files changed, 8 insertions, 27 deletions
diff --git a/exim/.footprint b/exim/.footprint index ceb0b856..d6352538 100644 --- a/exim/.footprint +++ b/exim/.footprint @@ -6,15 +6,15 @@ drwxr-xr-x root/root etc/rc.d/ -rwxr-xr-x root/root etc/rc.d/exim drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -lrwxrwxrwx root/root usr/bin/mailq -> ../sbin/exim-4.66-1 +lrwxrwxrwx root/root usr/bin/mailq -> ../sbin/exim-4.67-1 drwxr-xr-x root/root usr/man/ drwxr-xr-x root/root usr/man/man8/ -rw-r--r-- root/root usr/man/man8/exim.8.gz drwxr-xr-x root/root usr/sbin/ -rwxr-xr-x root/root usr/sbin/exicyclog -rwxr-xr-x root/root usr/sbin/exigrep -lrwxrwxrwx root/root usr/sbin/exim -> exim-4.66-1 --rwsr-xr-x root/root usr/sbin/exim-4.66-1 +lrwxrwxrwx root/root usr/sbin/exim -> exim-4.67-1 +-rwsr-xr-x root/root usr/sbin/exim-4.67-1 -rwxr-xr-x root/root usr/sbin/exim_checkaccess -rwxr-xr-x root/root usr/sbin/exim_dbmbuild -rwxr-xr-x root/root usr/sbin/exim_dumpdb @@ -27,7 +27,7 @@ lrwxrwxrwx root/root usr/sbin/exim -> exim-4.66-1 -rwxr-xr-x root/root usr/sbin/exiqgrep -rwxr-xr-x root/root usr/sbin/exiqsumm -rwxr-xr-x root/root usr/sbin/exiwhat -lrwxrwxrwx root/root usr/sbin/sendmail -> exim-4.66-1 +lrwxrwxrwx root/root usr/sbin/sendmail -> exim-4.67-1 drwxr-xr-x root/root var/ drwxr-xr-x root/root var/log/ drwxr-x--- mail/mail var/log/exim/ diff --git a/exim/.md5sum b/exim/.md5sum index fb0cd187..28b387e5 100644 --- a/exim/.md5sum +++ b/exim/.md5sum @@ -1,4 +1,3 @@ f1682811a7fd2897153c5b0e33177509 exim -01288e44919d8abdde5a7bd2c200449b exim-4.66.tar.bz2 +9ee83186d9ac99e5ff297112aa6fddf0 exim-4.67.tar.bz2 f9edb79bd90e2b6e8233b2ef26e95aa9 exim-config.patch -600d6448d11289c479da7a7ce600ce31 exim-openssl.patch diff --git a/exim/Pkgfile b/exim/Pkgfile index befb31b8..b18d9faf 100644 --- a/exim/Pkgfile +++ b/exim/Pkgfile @@ -4,15 +4,14 @@ # Depends on: db, openssl name=exim -version=4.66 -release=2 +version=4.67 +release=1 source=(ftp://ftp.exim.org/pub/exim/exim4/$name-$version.tar.bz2 \ - $name $name-config.patch $name-openssl.patch) + $name $name-config.patch) build() { cd $name-$version - patch -p1 < ../$name-openssl.patch sed "s/#CFLAGS#/$CFLAGS/" $SRC/$name-config.patch | patch -p1 cp src/EDITME Local/Makefile diff --git a/exim/exim-openssl.patch b/exim/exim-openssl.patch deleted file mode 100644 index 5d7e2098..00000000 --- a/exim/exim-openssl.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff -Nru exim-4.66.orig/src/tls-openssl.c exim-4.66/src/tls-openssl.c ---- exim-4.66.orig/src/tls-openssl.c 2007-02-28 20:33:35.527246099 +0000 -+++ exim-4.66/src/tls-openssl.c 2007-02-28 20:34:47.751361917 +0000 -@@ -343,8 +343,11 @@ - /* Set up the information callback, which outputs if debugging is at a suitable - level. */ - --if (!(SSL_CTX_set_info_callback(ctx, (void (*)())info_callback))) -- return tls_error(US"SSL_CTX_set_info_callback", host); -+/* if (!(SSL_CTX_set_info_callback(ctx, (void (*)())info_callback))) -+ return tls_error(US"SSL_CTX_set_info_callback", host); */ -+ -+SSL_CTX_set_info_callback(ctx, (void (*)())info_callback); -+ - - /* The following patch was supplied by Robert Roselius */ - |