We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent314cef0 commit2e8252dCopy full SHA for 2e8252d
src/bin/pg_dump/Makefile
@@ -5,7 +5,7 @@
5
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
6
# Portions Copyright (c) 1994, Regents of the University of California
7
#
8
-# $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.54 2004/10/0418:05:54 momjian Exp $
+# $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.55 2004/10/0420:32:58 momjian Exp $
9
10
#-------------------------------------------------------------------------
11
@@ -21,6 +21,10 @@ OBJS=pg_backup_archiver.o pg_backup_db.o pg_backup_custom.o \
21
22
EXTRA_OBJS =$(top_builddir)/src/backend/parser/keywords.o
23
24
+# not sure why MinGW needs this but it prevents a link failure
25
+ifeq ($(PORTNAME), win32)
26
+EXTRA_OBJS +=$(top_builddir)/src/port/exec.o
27
+endif
28
29
all: submake-libpq submake-libpgport submake-backend pg_dump pg_restore pg_dumpall
30