diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2013-01-09 17:49:23 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2013-01-09 17:49:23 -0500 |
commit | 7fb97ecd137a879831ec6e3dce14c9f2e2a3d6b5 (patch) | |
tree | 6532464f2b19759ceeb32030b0886ca84fff6d51 /src | |
parent | 6e650a55cda9291bbeebd6b1aa6aedbd3d15e622 (diff) | |
download | postgresql-7fb97ecd137a879831ec6e3dce14c9f2e2a3d6b5.tar.gz postgresql-7fb97ecd137a879831ec6e3dce14c9f2e2a3d6b5.zip |
Detect Windows perl linkage parameters in configure script.
This means we can now construct a configure test for the library
presence. Previously these parameters were only figured out at
build time in plperl's GnuMakefile.
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/plperl/GNUmakefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pl/plperl/GNUmakefile b/src/pl/plperl/GNUmakefile index e1f94937f6f..e0e31ecfbf8 100644 --- a/src/pl/plperl/GNUmakefile +++ b/src/pl/plperl/GNUmakefile @@ -16,10 +16,6 @@ endif ifeq ($(shared_libperl),yes) ifeq ($(PORTNAME), win32) -perl_archlibexp := $(subst \,/,$(perl_archlibexp)) -perl_privlibexp := $(subst \,/,$(perl_privlibexp)) -perl_lib := $(basename $(notdir $(wildcard $(perl_archlibexp)/CORE/perl[5-9]*.lib))) -perl_embed_ldflags = -L$(perl_archlibexp)/CORE -l$(perl_lib) override CPPFLAGS += -DPLPERL_HAVE_UID_GID # Perl on win32 contains /* within comment all over the header file, # so disable this warning. |