- update to 4.84
+ Re-add a 'return NULL' to silence complaints from static checkers that were complaining about end of non-void function with no return; (beo#1506); obsoletes silence-static-checkers.patch. + Fix parsing of quoted parameter values in MIME headers. This was a regression intruduced in 4.83 by another bugfix; (beo#1513). + Fix broken compilation when EXPERIMENTAL_DSN is enabled. + Fix exipick for enhanced spoolfile specification used when EXPERIMENTAL_DNS is enabled; (beo#1509). OBS-URL: https://build.opensuse.org/package/show/server:mail/exim?expand=0&rev=151
This commit is contained in:
parent
ff1c93e649
commit
4029445955
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:efa031b89ffb2ab844a4bf9d3a5d7ca4d587d82b62ae233d68c4f26e079a6a02
|
|
||||||
size 1761169
|
|
@ -1,7 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
Version: GnuPG v1.4.11 (GNU/Linux)
|
|
||||||
|
|
||||||
iEYEABECAAYFAlPNLg4ACgkQxPT5SATSnrpiSQCfVelBsGwYu5MrHF6F9JK77Vx0
|
|
||||||
d20AmwbNDqDWF+exEH7ARQOxJWPWlFjJ
|
|
||||||
=fdcr
|
|
||||||
-----END PGP SIGNATURE-----
|
|
3
exim-4.84.tar.bz2
Normal file
3
exim-4.84.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:78ea22be87fb6df880e7fd482f3bec9ef6ceca0c9dedd50f8a26cae0b38b9e9c
|
||||||
|
size 1761790
|
7
exim-4.84.tar.bz2.asc
Normal file
7
exim-4.84.tar.bz2.asc
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
Version: GnuPG v1.4.11 (GNU/Linux)
|
||||||
|
|
||||||
|
iEYEABECAAYFAlPowoIACgkQxPT5SATSnrpzGwCdEBRSfY/KxYzH2rGJHJ1wROZx
|
||||||
|
BQcAn1u16GyO8NsysIbwmKKyEMbSOQgo
|
||||||
|
=S0E2
|
||||||
|
-----END PGP SIGNATURE-----
|
13
exim.changes
13
exim.changes
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Nov 26 13:13:38 UTC 2014 - lmuelle@suse.com
|
||||||
|
|
||||||
|
- update to 4.84
|
||||||
|
+ Re-add a 'return NULL' to silence complaints from static checkers that
|
||||||
|
were complaining about end of non-void function with no return;
|
||||||
|
(beo#1506); obsoletes silence-static-checkers.patch.
|
||||||
|
+ Fix parsing of quoted parameter values in MIME headers.
|
||||||
|
This was a regression intruduced in 4.83 by another bugfix; (beo#1513).
|
||||||
|
+ Fix broken compilation when EXPERIMENTAL_DSN is enabled.
|
||||||
|
+ Fix exipick for enhanced spoolfile specification used when
|
||||||
|
EXPERIMENTAL_DNS is enabled; (beo#1509).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 12 13:46:29 UTC 2014 - p.drouand@gmail.com
|
Tue Aug 12 13:46:29 UTC 2014 - p.drouand@gmail.com
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ Requires(pre): %fillup_prereq
|
|||||||
Requires(pre): /usr/sbin/useradd
|
Requires(pre): /usr/sbin/useradd
|
||||||
Requires(pre): fileutils textutils
|
Requires(pre): fileutils textutils
|
||||||
%endif
|
%endif
|
||||||
Version: 4.83
|
Version: 4.84
|
||||||
Release: 0
|
Release: 0
|
||||||
%if %{?build_with_mysql:1}0
|
%if %{?build_with_mysql:1}0
|
||||||
BuildRequires: mysql-devel
|
BuildRequires: mysql-devel
|
||||||
@ -77,7 +77,6 @@ Source31: eximstats.conf
|
|||||||
Source32: exim.service
|
Source32: exim.service
|
||||||
Patch: exim-tail.patch
|
Patch: exim-tail.patch
|
||||||
Patch1: exim-enable_ecdh_openssl.patch
|
Patch1: exim-enable_ecdh_openssl.patch
|
||||||
Patch2: silence-static-checkers.patch
|
|
||||||
%if !%{?build_with_mysql:1}0 && !%{?build_with_pgsql:1}0
|
%if !%{?build_with_mysql:1}0 && !%{?build_with_pgsql:1}0
|
||||||
|
|
||||||
%package -n eximon
|
%package -n eximon
|
||||||
@ -131,7 +130,6 @@ once, if at all. The rest is done by logrotate / cron.)
|
|||||||
%setup -q -n exim-%{version}
|
%setup -q -n exim-%{version}
|
||||||
%patch
|
%patch
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
%patch2 -p1
|
|
||||||
# build with fPIE/pie on SUSE 10.0 or newer, or on any other platform
|
# build with fPIE/pie on SUSE 10.0 or newer, or on any other platform
|
||||||
%if %{?suse_version:%suse_version}%{?!suse_version:99999} > 930
|
%if %{?suse_version:%suse_version}%{?!suse_version:99999} > 930
|
||||||
fPIE="-fPIE"
|
fPIE="-fPIE"
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
Author: Lars Mueller <lmuelle@suse.com>
|
|
||||||
Date: Wed Jul 23 07:22:52 2014 -0700
|
|
||||||
|
|
||||||
Bug 1506: Silence static checkers.
|
|
||||||
····
|
|
||||||
Re-adds a return NULL which was removed because it was redundant. Static
|
|
||||||
checkers don't parse the logic, so adding it back to make them happy.
|
|
||||||
|
|
||||||
Index: exim-4.83/src/expand.c
|
|
||||||
===================================================================
|
|
||||||
--- exim-4.83.orig/src/expand.c
|
|
||||||
+++ exim-4.83/src/expand.c
|
|
||||||
@@ -1879,6 +1879,8 @@ switch (vp->type)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
}
|
|
||||||
+
|
|
||||||
+return NULL; /* Unknown variable. Silences static checkers. */
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user