diff options
author | Peter Eisentraut | 2003-03-21 17:18:34 +0000 |
---|---|---|
committer | Peter Eisentraut | 2003-03-21 17:18:34 +0000 |
commit | 1a7f4ed5252dd08d9bbf26a67ddf22c38528c636 (patch) | |
tree | 4daa4d5d3dcc8d050bf8d8afbe2d4fc568455a3c /src/interfaces/python | |
parent | 93331d8318325305cad9c5224eb4b86663214846 (diff) |
Make "win" a separate port from "cygwin". This means you can now
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.
Diffstat (limited to 'src/interfaces/python')
-rw-r--r-- | src/interfaces/python/GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/python/GNUmakefile b/src/interfaces/python/GNUmakefile index 7576372c602..a4162d472ab 100644 --- a/src/interfaces/python/GNUmakefile +++ b/src/interfaces/python/GNUmakefile @@ -1,4 +1,4 @@ -# $Header: /cvsroot/pgsql/src/interfaces/python/Attic/GNUmakefile,v 1.15 2002/12/11 04:07:39 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/python/Attic/GNUmakefile,v 1.16 2003/03/21 17:18:34 petere Exp $ subdir = src/interfaces/python top_builddir = ../../.. @@ -9,7 +9,7 @@ SO_MAJOR_VERSION = 2 SO_MINOR_VERSION = 4 OBJS = pgmodule.o SHLIB_LINK = $(libpq) -ifeq ($(PORTNAME), win) +ifeq ($(PORTNAME), cygwin) override CPPFLAGS += -DUSE_DL_IMPORT SHLIB_LINK += $(python_libspec) endif |