diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2001-01-09 18:45:41 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2001-01-09 18:45:41 +0000 |
commit | 8eed998a6515395192247ef6d9ed330df20e0179 (patch) | |
tree | f815e52cfc5d1497f61ce50f5c8ceb7ee8c7ff9b | |
parent | c3f93719569d87e05bef751c30db49c187bd5946 (diff) | |
download | postgresql-8eed998a6515395192247ef6d9ed330df20e0179.tar.gz postgresql-8eed998a6515395192247ef6d9ed330df20e0179.zip |
Remove -L$(libdir) from DLLLIBS to prevent linking with an old version
(i.e., 7.0.3) of libpostgres.a. From Jason Tishler <jt@dothill.com>.
-rw-r--r-- | src/makefiles/Makefile.win | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefiles/Makefile.win b/src/makefiles/Makefile.win index bcc01c747af..3f2c0f6e772 100644 --- a/src/makefiles/Makefile.win +++ b/src/makefiles/Makefile.win @@ -1,8 +1,8 @@ -# $Header: /cvsroot/pgsql/src/makefiles/Attic/Makefile.win,v 1.7 2000/10/21 22:36:13 petere Exp $ +# $Header: /cvsroot/pgsql/src/makefiles/Attic/Makefile.win,v 1.8 2001/01/09 18:45:41 petere Exp $ LDFLAGS+= -g DLLTOOL= dlltool DLLWRAP= dllwrap -DLLLIBS=-L/usr/local/lib -L$(libdir) -L$(top_builddir)/src/backend -lpostgres -lcygipc -lcygwin -lcrypt -lkernel32 +DLLLIBS=-L/usr/local/lib -L$(top_builddir)/src/backend -lpostgres -lcygipc -lcygwin -lcrypt -lkernel32 MK_NO_LORDER=true MAKE_DLL=true #MAKE_DLL=false |