summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-09-21 06:20:19 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-09-21 06:20:19 +0000
commitcd2f4476f079f7b8c8e4a40ab42e28c32a0ab7b3 (patch)
treeb0719b9a750a10993ccbeca36129409070dfdc20
parentdf79870a825ed1da71a24c418fc05e3d54b4d6aa (diff)
downloadpostgresql-cd2f4476f079f7b8c8e4a40ab42e28c32a0ab7b3.tar.gz
POSTPORT should be 5432, not 6543
-rw-r--r--src/Makefile.global6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.global b/src/Makefile.global
index b62a50ac94..e02dfdb9b8 100644
--- a/src/Makefile.global
+++ b/src/Makefile.global
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19.2.6 1996/09/21 06:16:09 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19.2.7 1996/09/21 06:20:19 scrappy Exp $
#
# NOTES
# This is seen by any Makefiles that include mk/postgres.mk. To
@@ -106,7 +106,7 @@ POSTDOCDIR= $(POSTGRESDIR)/doc
HEADERDIR= $(POSTGRESDIR)/include
# The port to run the postmaster on
-POSTPORT= 6543
+POSTPORT= 5432
# NAMEDATALEN is the max length for system identifiers (e.g. table names,
# attribute names, function names, etc.)
@@ -282,7 +282,7 @@ CFLAGS+= -DPORTNAME_$(PORTNAME)
CFLAGS += -I ../../backend/port/$(PORTNAME)
# Globally pass the default TCP port for postmaster(1).
-CFLAGS+= -DPOSTPORT='"5432"'
+CFLAGS+= -DPOSTPORT='"$(POSTPORT)"'
# include flags from mk/port/postgres.mk.$(PORTNAME)
CFLAGS+= $(CFLAGS_BE)