pgsql: Try to fix python shlib probe for MinGW.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Try to fix python shlib probe for MinGW.
Date: 2016-10-06 02:47:32
Message-ID: E1bryia-0003Pr-Q7@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Try to fix python shlib probe for MinGW.

Per discussion with Andrew Dunstan, it seems there are three peculiarities
of the Python installation on MinGW (or at least, of the instance on
buildfarm member frogmouth). First, the library name doesn't contain
"2.7" but just "27". It looks like we can deal with that by consulting
get_config_vars('VERSION') to see whether a dot should be used or not.
Second, the library might be in c:/Windows/System32, analogously to it
possibly being in /usr/lib on Unix-oid platforms. Third, it's apparently
not standard to use the prefix "lib" on the file name. This patch will
accept files with or without "lib", but the first part of that may well
be dead code.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/11c0e743b67acc9a0406b6058ed24de5e5527cf0

Modified Files
--------------
config/python.m4 | 25 +++++++++++++++++++++++--
configure | 25 +++++++++++++++++++++++--
2 files changed, 46 insertions(+), 4 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2016-10-06 03:04:50 pgsql: Remove -Wl,-undefined,dynamic_lookup in macOS build.
Previous Message Peter Geoghegan 2016-10-06 01:23:16 Re: pgsql: Change the way pre-reading in external sort's merge phase works.