]> granicus.if.org Git - postgresql/commitdiff
OK'ed by Peter.
authorBruce Momjian <bruce@momjian.us>
Sat, 23 Feb 2002 21:49:10 +0000 (21:49 +0000)
committerBruce Momjian <bruce@momjian.us>
Sat, 23 Feb 2002 21:49:10 +0000 (21:49 +0000)
The attached patch enables plperl to build under Cygwin.  It is
basically yet another BE_DLLLIBS patch with a perl MakeMaker twist.  I
tried the patch under Red Hat 7.1 Linux too and I did not observe any
ill effects.

Jason Tishler

src/pl/plperl/GNUmakefile

index f17c65799ae30e71b5f44f69f981f9d058a6a88c..0c37bbe6fc33f75dac8ae2a3f7df8f7cf8a19bbd 100644 (file)
@@ -1,4 +1,4 @@
-# $Header: /cvsroot/pgsql/src/pl/plperl/GNUmakefile,v 1.8 2001/09/16 16:11:11 petere Exp $
+# $Header: /cvsroot/pgsql/src/pl/plperl/GNUmakefile,v 1.9 2002/02/23 21:49:10 momjian Exp $
 
 subdir = src/pl/plperl
 top_builddir = ../../..
@@ -14,7 +14,8 @@ all: Makefile
 
 Makefile: Makefile.PL
        plperl_installdir='$$(DESTDIR)$(pkglibdir)' \
-       $(PERL) $< $(makefile_pl_flags) INC='-I$(srcdir) $(filter -I%, $(CPPFLAGS))'
+       $(PERL) $< $(makefile_pl_flags) LIBS='$(BE_DLLLIBS)' \
+       INC='-I$(srcdir) $(filter -I%, $(CPPFLAGS))'
 
 install: all installdirs
        $(MAKE) -f Makefile install DESTDIR='$(DESTDIR)'