Hello community, here is the log from the commit of package sendmail for openSUSE:Factory checked in at 2013-06-17 11:10:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sendmail (Old) and /work/SRC/openSUSE:Factory/.sendmail.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sendmail" Changes: -------- --- /work/SRC/openSUSE:Factory/sendmail/sendmail.changes 2013-06-05 19:35:19.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.sendmail.new/sendmail.changes 2013-06-17 11:10:47.000000000 +0200 @@ -1,0 +2,11 @@ +Sun Jun 16 02:09:59 UTC 2013 - [email protected] + +- sendmail-8.14.7.dif forces the use of SSL and SASL libraries, + so make sure the BuildRequires are there + +------------------------------------------------------------------- +Fri Jun 14 01:19:51 UTC 2013 - [email protected] + +- Add sendmail-db6.diff to fix compile abort with db >= 5 + +------------------------------------------------------------------- New: ---- sendmail-db6.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sendmail.spec ++++++ --- /var/tmp/diff_new_pack.y3eZmX/_old 2013-06-17 11:10:48.000000000 +0200 +++ /var/tmp/diff_new_pack.y3eZmX/_new 2013-06-17 11:10:48.000000000 +0200 @@ -17,8 +17,10 @@ Name: sendmail +BuildRequires: cyrus-sasl-devel BuildRequires: db-devel BuildRequires: groff +BuildRequires: libopenssl-devel BuildRequires: mailx BuildRequires: netcfg BuildRequires: openldap2-devel @@ -74,6 +76,7 @@ Patch1: sendmail-8.14.7-select.dif # PATCH-FIX-OPENSUSE: Do not warn about unsued variable Patch2: sendmail-8.14.7-warning.patch +Patch3: sendmail-db6.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build %global _sysconfdir %{_sysconfdir} %global _mailcnfdir %{_sysconfdir}/mail @@ -140,6 +143,7 @@ %patch -P 1 -p 0 -b .select %patch -P 2 -p 0 -b .warning %patch -P 0 -p 0 -b .p0 +%patch -P 3 -p1 set -f cat <<-EOF > file-list %%defattr(-,root,root) ++++++ sendmail-db6.diff ++++++ From: Jan Engelhardt <[email protected]> Date: 2013-06-14 03:17:51.981537545 +0200 src: fix sloppy DB version >= 5 check --- include/sm/bdb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: sendmail-8.14.7/include/sm/bdb.h =================================================================== --- sendmail-8.14.7.orig/include/sm/bdb.h +++ sendmail-8.14.7/include/sm/bdb.h @@ -19,7 +19,7 @@ # define DB_VERSION_MAJOR 1 # endif /* ! DB_VERSION_MAJOR */ -# if DB_VERSION_MAJOR >= 4 && DB_VERSION_MINOR >= 1 +# if DB_VERSION_MAJOR > 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1) # define DBTXN NULL , -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
