summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier1996-07-31 18:59:00 +0000
committerMarc G. Fournier1996-07-31 18:59:00 +0000
commitcb34902cbdef28d7b7600bf6553202e4d4e7abd4 (patch)
treeff48bc7c43f67cb91d01c67f8f246cbe7af00465
parentdb174707bae7c23851f21d29ced1e96b135fb292 (diff)
Move port includes from bin/pg_dump/Makefile to Makefile.global
-rw-r--r--src/Makefile.global5
-rw-r--r--src/bin/pg_dump/Makefile4
2 files changed, 5 insertions, 4 deletions
diff --git a/src/Makefile.global b/src/Makefile.global
index 3d15b4efdf9..e22ebeaf318 100644
--- a/src/Makefile.global
+++ b/src/Makefile.global
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.18 1996/07/31 18:52:38 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19 1996/07/31 18:55:49 scrappy Exp $
#
# NOTES
# This is seen by any Makefiles that include mk/postgres.mk. To
@@ -273,6 +273,7 @@ endif
# Globally pass PORTNAME
CFLAGS+= -DPORTNAME_$(PORTNAME)
+CFLAGS += -I ../../backend/port/$(PORTNAME)
# Globally pass the default TCP port for postmaster(1).
CFLAGS+= -DPOSTPORT='"5432"'
@@ -290,7 +291,7 @@ CFLAGS += -DNULL_PATCH
CFLAGS += -DESCAPE_PATCH
# enable patches for varchar and fsync
CFLAGS += -DOPENLINK_PATCHES
-
+
##############################################################################
#
# Miscellaneous configuration
diff --git a/src/bin/pg_dump/Makefile b/src/bin/pg_dump/Makefile
index 91f0ce0dadb..441c4137ee3 100644
--- a/src/bin/pg_dump/Makefile
+++ b/src/bin/pg_dump/Makefile
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/bin/pg_dump/Makefile,v 1.4 1996/07/31 17:35:13 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/bin/pg_dump/Makefile,v 1.5 1996/07/31 18:59:00 scrappy Exp $
#
#-------------------------------------------------------------------------
@@ -16,7 +16,7 @@ PROG= pg_dump
MKDIR= ../../mk
include $(MKDIR)/postgres.mk
include ../Makefile.global
-CFLAGS += -I ../../backend/port/$(PORTNAME)
+
SRCS= pg_dump.c common.c
include $(MKDIR)/postgres.prog.mk