diff options
author | Noah Misch <noah@leadboat.com> | 2015-07-15 21:00:26 -0400 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2015-07-15 21:00:30 -0400 |
commit | 21a101848b269e4fff9ccd3a5b5f777911399091 (patch) | |
tree | 58dc428ada4c819ffff22774a54814e45b395525 /contrib/ltree_plpython | |
parent | 8bc8dd81ed215130ab88f12e8ea736d042692630 (diff) | |
download | postgresql-21a101848b269e4fff9ccd3a5b5f777911399091.tar.gz postgresql-21a101848b269e4fff9ccd3a5b5f777911399091.zip |
MinGW: Link ltree_plpython with plpython.
The MSVC build system already did this, and building against Python 3
requires it. Back-patch to 9.5, where the module was introduced.
Diffstat (limited to 'contrib/ltree_plpython')
-rw-r--r-- | contrib/ltree_plpython/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/ltree_plpython/Makefile b/contrib/ltree_plpython/Makefile index 64ca1275f1c..0eeb9b83eb3 100644 --- a/contrib/ltree_plpython/Makefile +++ b/contrib/ltree_plpython/Makefile @@ -25,7 +25,7 @@ endif ifeq ($(PORTNAME), win32) # This means we need an in-tree build on Windows, not a pgxs build -SHLIB_LINK += $(wildcard ../../src/pl/plpython/libpython*.a) +SHLIB_LINK += $(wildcard ../../src/pl/plpython/libpython*.a) $(wildcard ../../src/pl/plpython/libplpython*.a) endif REGRESS_OPTS += --load-extension=ltree |