summaryrefslogtreecommitdiff
path: root/src/interfaces/python/GNUmakefile
Commit message (Collapse)AuthorAgeFilesLines
* remove python module, as its moved to http://www.pygresql.orgMarc G. Fournier2003-08-011-59/+0
|
* Make "win" a separate port from "cygwin". This means you can nowPeter Eisentraut2003-03-211-2/+2
| | | | | configure under native Windows (MinGW that is), but you won't get very far compiling yet. The dynaloader files are from Jan Wieck's patch set.
* Bump version for 7.3 and 7.4.Bruce Momjian2002-12-111-2/+2
|
* Stamp minor version numbers for 7.4 release.Bruce Momjian2002-12-041-3/+3
|
* revert last changePeter Eisentraut2001-12-131-19/+7
|
* Bump version to 3.3. Mostly this is because there is some confusion aboutD'Arcy J.M. Cain2001-12-031-7/+19
| | | | | | | the latest version and I wanted to make sure that there was a clean release. I also change the build files as I discussed in my letter of Nov 6, 2001. At the time I was asked to hold off until after the release.
* Rename config.h to pg_config.h and os.h to pg_config_os.h, fix a number ofPeter Eisentraut2001-08-241-2/+1
| | | | places that were including the wrong files.
* Support fake root install, separate build dir, dependency tracking, ourPeter Eisentraut2001-07-101-44/+46
| | | | | | choice of compiler and flags, uninstall, and peculiar Python installation layouts for PyGreSql. Also install into site-packages now, as officially recommended. And pgdb.py is also installed now, used to be forgotten.
* Back out, per Peter E.Bruce Momjian2001-05-251-7/+4
| | | | | | | > > The attached patch changes src/interfaces/python/GNUmakefile to use the > > value of DESTDIR like the rest (or at least most) of the PostgreSQL > > makefiles. I found this problem when trying to package a pre-built > > Cygwin PostgreSQL distribution, but this problem is platform independent.
* The attached patch changes src/interfaces/python/GNUmakefile to use theBruce Momjian2001-05-251-4/+7
| | | | | | | | | | | | | | | | | | | | value of DESTDIR like the rest (or at least most) of the PostgreSQL makefiles. I found this problem when trying to package a pre-built Cygwin PostgreSQL distribution, but this problem is platform independent. The problem manifests itself when one tries to install into a stagging area (e.g., to build a tarball) instead of a real install. In this case, pg.py and _pgmodule$(SO) still end up being installed in the configured prefix directory ignoring the value of DESTDIR. Unfortunately, this patch does not handle the case where PostgreSQL and Python are configured with different prefixes. Since the Python Makefile is automatically generated and does not use DESTDIR, I believe that this issue will be difficult to correct. If anyone has ideas on how to fix this issue, then I'm quite willing to rework the patch to take the suggestion into account. Jason Tishler
* PL/Python should build portably now, if you can get over the fact thatPeter Eisentraut2001-05-121-2/+2
| | | | | there's no shared libpython. Test suite works as well. Also, add some documentation.
* Pick up any extra -I options for Python build.Peter Eisentraut2001-03-251-2/+2
|
* Only pass the -L* portions of LDFLAGS to the Python build environment.Peter Eisentraut2001-02-071-2/+2
| | | | | Other flags can have unpredictable effects when Python uses different commands to build than we do.
* Pass LDFLAGS along with LIBS to the Python build stuff, especially to pickPeter Eisentraut2001-02-041-2/+2
| | | | up -L options.
* Fix unportable use of '!' in shell commands.Peter Eisentraut2000-12-301-3/+3
|
* Fix relative path references so that make knowns which dependencies referPeter Eisentraut2000-08-311-7/+8
| | | | | to one another. Sort out builddir vs srcdir variable namings. Remove some now obsoleted make variables.
* Makefile cleanup for interface tree. Now essentially with all thePeter Eisentraut2000-06-281-0/+57
standard targets and behaviour. Replaced Makefile.in's with Makefile's and declared the respective variables in Makefile.global. maintainer-clean target now available at top level, although it does not work in the backend tree yet. Cleanup pass over Makefile.shlib, renamed some targets and variables. The shared library symlink tests are now done by make, not the shell. ecpg: Remove one warning in sloppy flex output. PL/Perl and Perl interface: the MakeMaker documentation is confusing, the realclean target *does* "delete derived files", but it also uninstalls them. Don't use that. The submake targets in the various bin directories that update libpq should `make all', not `make libpq.a'. That is a) unportable, and b) doesn't build the shared library.