Moved the intricacies of the perl interface build into its own makefile

Peter Eisentraut <peter_e@gmx.net>

Commit: 6de89c9ab78a557f98dc02dca97795d27a4112d2
Author: Peter Eisentraut <peter_e@gmx.net>
Date: 2000-06-10T18:02:12Z
Releases: 7.1.1
Moved the intricacies of the perl interface build into its own makefile
that now functions as a wrapper around the MakeMaker stuff. It might
even behave sensically when we have separate build dirs. Same for plperl,
which of course still doesn't work very well. Made sure that plperl
respects the choice of --libdir.

Added --with-python to automatically build and install the Python interface.
Works similarly to the Perl5 stuff.

Moved the burden of the distclean targets lower down into the source tree.
Eventually, each make file should have its own.

Added automatic remaking of makefiles and configure. Currently only for the
top-level because of a bug(?) in Autoconf. Use GNU `missing' to work around
missing autoconf and aclocal. Start factoring out macros into their own
config/*.m4 files to increase readability and organization.

Files

PathChange+/−
aclocal.m4 added +79 −0
config/missing added +265 −0
config/python.m4 added +50 −0
configure modified +586 −491
configure.in modified +40 −17
GNUmakefile.in modified +18 −2
Makefile modified +34 −14
src/bin/psql/Makefile.in modified +2 −1
src/GNUmakefile.in modified +20 −40
src/interfaces/Makefile deleted +0 −65
src/interfaces/Makefile.in added +65 −0
src/interfaces/perl5/GNUmakefile.in added +71 −0
src/interfaces/perl5/Makefile.PL modified +8 −8
src/interfaces/python/GNUmakefile.in added +74 −0
src/interfaces/python/pgmodule.c modified +1 −1
src/interfaces/python/Setup.in.raw added +3 −0
src/Makefile deleted +0 −16
src/Makefile.global.in modified +1 −14
src/pl/Makefile deleted +0 −30
src/pl/Makefile.in added +42 −0
src/pl/plperl/GNUmakefile.in added +40 −0
src/pl/plperl/Makefile.PL modified +9 −15