aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-01-19 20:01:01 +0000
committerBruce Momjian <bruce@momjian.us>2006-01-19 20:01:01 +0000
commitb5dc7165fe81deb51d8721bd7088e47999004d01 (patch)
tree25f8fd114b24e0d938710ec30a9a5c5029612196 /src
parent7618330c6d205021a118c1994505be2ceaec25d6 (diff)
downloadpostgresql-b5dc7165fe81deb51d8721bd7088e47999004d01.tar.gz
postgresql-b5dc7165fe81deb51d8721bd7088e47999004d01.zip
Fix pgxs -L library path specification for Win32 and Cygwin, was /bin,
now /lib.
Diffstat (limited to 'src')
-rw-r--r--src/makefiles/Makefile.cygwin4
-rw-r--r--src/makefiles/Makefile.win324
2 files changed, 4 insertions, 4 deletions
diff --git a/src/makefiles/Makefile.cygwin b/src/makefiles/Makefile.cygwin
index a441d78a60e..6d172619287 100644
--- a/src/makefiles/Makefile.cygwin
+++ b/src/makefiles/Makefile.cygwin
@@ -1,8 +1,8 @@
-# $PostgreSQL: pgsql/src/makefiles/Makefile.cygwin,v 1.6 2004/12/17 03:52:48 tgl Exp $
+# $PostgreSQL: pgsql/src/makefiles/Makefile.cygwin,v 1.6.6.1 2006/01/19 20:01:01 momjian Exp $
DLLTOOL= dlltool
DLLWRAP= dllwrap
ifdef PGXS
-BE_DLLLIBS= -L$(DESTDIR)$(bindir) -lpostgres
+BE_DLLLIBS= -L$(DESTDIR)$(libdir) -lpostgres
else
BE_DLLLIBS= -L$(top_builddir)/src/backend -lpostgres
endif
diff --git a/src/makefiles/Makefile.win32 b/src/makefiles/Makefile.win32
index ae431b5a280..d1819b39953 100644
--- a/src/makefiles/Makefile.win32
+++ b/src/makefiles/Makefile.win32
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.7 2004/12/17 03:52:49 tgl Exp $
+# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.7.6.1 2006/01/19 20:01:01 momjian Exp $
# Use replacement include files for those missing on Win32
override CPPFLAGS+="-I$(top_srcdir)/src/include/port/win32"
@@ -6,7 +6,7 @@ override CPPFLAGS+="-I$(top_srcdir)/src/include/port/win32"
DLLTOOL= dlltool
DLLWRAP= dllwrap
ifdef PGXS
-BE_DLLLIBS= -L$(DESTDIR)$(bindir) -lpostgres
+BE_DLLLIBS= -L$(DESTDIR)$(libdir) -lpostgres
else
BE_DLLLIBS= -L$(top_builddir)/src/backend -lpostgres
endif