pgsql: Replace our hacked version of ax_pthread.m4 with latest upstream

From: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Replace our hacked version of ax_pthread.m4 with latest upstream
Date: 2015-07-08 17:42:24
Message-ID: E1ZCtMW-0001iM-BK@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Replace our hacked version of ax_pthread.m4 with latest upstream version.

Our version was different from the upstream version in that we tried to use
all possible pthread-related flags that the compiler accepts, rather than
just the first one that works. That change was made in commit
e48322a6d6cfce1ec52ab303441df329ddbc04d1, to work-around a bug affecting GCC
versions 3.2 and below (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=8888)
although we didn't realize that it was a GCC bug at the time. We hardly care
about that old GCC versions anymore, so we no longer need that workaround.

This fixes the macro for compilers that print warnings with the chosen
flags. That's pretty annoying on its own right, but it also inconspicuously
disabled thread-safety, because we refused to use any pthread-related flags
if the compiler produced warnings. Max Filippov reported that problem when
linking with uClibc and OpenSSL. The warnings-check was added because the
workaround for the GCC bug caused warnings otherwise, so it's no longer
needed either. We can just use the upstream version as is.

If you really want to compile with GCC version 3.2 or older, you can still
work-around it manually by setting PTHREAD_CFLAGS="-pthread -lpthread"
manually on the configure command line.

Backpatch to 9.5. I don't want to unnecessarily rock the boat on stable
branches, but 9.5 seems like fair game.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/e97af6c8bfc80d084bca5bf41f036de944b63efe

Modified Files
--------------
aclocal.m4 | 2 +-
config/acx_pthread.m4 | 170 -------------------------
config/ax_pthread.m4 | 332 +++++++++++++++++++++++++++++++++++++++++++++++++
configure | 310 ++++++++++++++++++++++++++++++++++++---------
configure.in | 2 +-
5 files changed, 583 insertions(+), 233 deletions(-)

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2015-07-08 20:12:12 Re: pgsql: Replace our hacked version of ax_pthread.m4 with latest upstream
Previous Message Joe Conway 2015-07-07 21:36:55 pgsql: Improve regression test coverage of table lock modes vs permissi