summaryrefslogtreecommitdiff
path: root/src/pl
diff options
context:
space:
mode:
authorAndrew Dunstan2013-01-09 22:49:23 +0000
committerAndrew Dunstan2013-01-09 22:49:23 +0000
commit7fb97ecd137a879831ec6e3dce14c9f2e2a3d6b5 (patch)
tree6532464f2b19759ceeb32030b0886ca84fff6d51 /src/pl
parent6e650a55cda9291bbeebd6b1aa6aedbd3d15e622 (diff)
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/pl')
-rw-r--r--src/pl/plperl/GNUmakefile4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pl/plperl/GNUmakefile b/src/pl/plperl/GNUmakefile
index e1f94937f6..e0e31ecfbf 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.