SHA256
1
0
forked from pool/postfix

- skip set -x and fix version update changes entry

OBS-URL: https://build.opensuse.org/package/show/server:mail/postfix?expand=0&rev=324
This commit is contained in:
Marcus Rückert 2019-03-04 14:46:59 +00:00 committed by Git OBS Bridge
parent 19d21ca307
commit 908421b24e
2 changed files with 16 additions and 3 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Mar 4 14:43:05 UTC 2019 - Marcus Rueckert <mrueckert@suse.de>
- skip set -x and fix version update changes entry
-------------------------------------------------------------------
Sat Mar 2 19:26:21 UTC 2019 - Michael Ströder <michael@stroeder.com>
@ -5,6 +10,15 @@ Sat Mar 2 19:26:21 UTC 2019 - Michael Ströder <michael@stroeder.com>
* When the master daemon runs with PID=1 (init mode), it will now
reap child processes from non-Postfix code running in the same
container, instead of terminating with a panic.
* Bugfix (introduced: postfix-2.11): with posttls-finger,
connections to unix-domain servers always resulted in "Failed
to establish session" even after a connection was established.
Jaroslav Skarva. File: posttls-finger/posttls-finger.c.
* Bugfix (introduced: Postfix 3.0): with smtputf8_enable=yes,
table lookups could casefold the search string when searching
a lookup table that does not use fixed-string keys (regexp,
pcre, tcp, etc.). Historically, Postfix would not case-fold
the search string with such tables. File: util/dict_utf8.c.
-------------------------------------------------------------------
Fri Mar 1 16:23:13 UTC 2019 - Reinhard Max <max@suse.com>

View File

@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
@ -207,11 +207,10 @@ else
export AUXLIBS="$AUXLIBS -lsasl2"
fi
#
set -x
export CCARGS="${CCARGS} -DHAS_MYSQL $(mysql_config --cflags)"
export AUXLIBS_MYSQL="$(mysql_config --libs)"
#
if pkg-config libpq ; then
if pkg-config --exists libpq ; then
export CCARGS="${CCARGS} -DHAS_PGSQL $(pkg-config libpq --cflags)"
export AUXLIBS_PGSQL="$(pkg-config libpq --libs)"
else