pgsql: Move interpreter shared library detection to configure

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема pgsql: Move interpreter shared library detection to configure
Дата
Msg-id E1YoMPE-0005FI-Gq@gemulon.postgresql.org
обсуждение исходный текст
Ответы Re: pgsql: Move interpreter shared library detection to configure  (Michael Paquier <michael.paquier@gmail.com>)
Re: pgsql: Move interpreter shared library detection to configure  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-committers
Move interpreter shared library detection to configure

For building PL/Perl, PL/Python, and PL/Tcl, we need a shared library of
libperl, libpython, and libtcl, respectively.  Previously, this was
checked in the makefiles, skipping the PL build with a warning if no
shared library was available.  Now this is checked in configure, with an
error if no shared library is available.

The previous situation arose because in the olden days, the configure
options --with-perl, --with-python, and --with-tcl controlled whether
frontend interfaces for those languages would be built.  The procedural
languages were added later, and shared libraries were often not
available in the beginning.  So it was decided skip the builds of the
procedural languages in those cases.  The frontend interfaces have since
been removed from the tree, and shared libraries are now available most
of the time, so that setup makes much less sense now.

Also, the new setup allows contrib modules and pgxs users to rely on the
respective PLs being available based on configure flags.

Branch
------
master

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

Modified Files
--------------
config/python.m4          |    1 -
configure                 |   41 +++++++++++++++++++++++++++++++++++++----
configure.in              |   38 +++++++++++++++++++++++++++++++++++++-
src/Makefile.global.in    |    3 ---
src/pl/plperl/GNUmakefile |   21 ---------------------
src/pl/plpython/Makefile  |   32 --------------------------------
src/pl/tcl/Makefile       |   26 --------------------------
7 files changed, 74 insertions(+), 88 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Andrew Dunstan
Дата:
Сообщение: pgsql: Make hstore_plperl's build more like plperl's
Следующее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Make hstore_plperl's build even more like plperl's