Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit de2c665

Browse files
committed
Move -lpgport to the beginning of the library list for win32 linking.
1 parent 36ae5ef commit de2c665

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Makefile.global.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*-makefile-*-
2-
# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.188 2004/05/23 15:24:32 tgl Exp $
2+
# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.189 2004/06/02 21:05:52 momjian Exp $
33

44
#------------------------------------------------------------------------------
55
# All PostgreSQL makefiles include this file and use the variables it sets,
@@ -343,7 +343,7 @@ endif
343343
LIBOBJS = @LIBOBJS@ exec.o noblock.o path.o pipe.o pgsleep.o pgstrcasecmp.o sprompt.o thread.o
344344

345345
ifneq (,$(LIBOBJS))
346-
LIBS += -lpgport
346+
LIBS := -lpgport $(LIBS)
347347
LDFLAGS := -L$(top_builddir)/src/port $(LDFLAGS)
348348
endif
349349

0 commit comments

Comments
 (0)