diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-02-23 21:49:10 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-02-23 21:49:10 +0000 |
commit | b3199bc9fa2169613c29f5aaeb5d62e85657cbd3 (patch) | |
tree | 4f317b5d4aac25aa785eab2439af6c0ac267f6e6 /src | |
parent | 5f644ea699ae17dcb50a82122a2172154247f267 (diff) | |
download | postgresql-b3199bc9fa2169613c29f5aaeb5d62e85657cbd3.tar.gz postgresql-b3199bc9fa2169613c29f5aaeb5d62e85657cbd3.zip |
OK'ed by Peter.
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
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/plperl/GNUmakefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pl/plperl/GNUmakefile b/src/pl/plperl/GNUmakefile index f17c65799ae..0c37bbe6fc3 100644 --- a/src/pl/plperl/GNUmakefile +++ b/src/pl/plperl/GNUmakefile @@ -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)' |