Skip to content

Commit cd2f447

Browse files
committed
POSTPORT should be 5432, not 6543
1 parent df79870 commit cd2f447

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Makefile.global

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19.2.6 1996/09/21 06:16:09 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19.2.7 1996/09/21 06:20:19 scrappy Exp $
1111
#
1212
# NOTES
1313
# This is seen by any Makefiles that include mk/postgres.mk. To
@@ -106,7 +106,7 @@ POSTDOCDIR= $(POSTGRESDIR)/doc
106106
HEADERDIR= $(POSTGRESDIR)/include
107107

108108
# The port to run the postmaster on
109-
POSTPORT= 6543
109+
POSTPORT= 5432
110110

111111
# NAMEDATALEN is the max length for system identifiers (e.g. table names,
112112
# attribute names, function names, etc.)
@@ -282,7 +282,7 @@ CFLAGS+= -DPORTNAME_$(PORTNAME)
282282
CFLAGS += -I ../../backend/port/$(PORTNAME)
283283

284284
# Globally pass the default TCP port for postmaster(1).
285-
CFLAGS+= -DPOSTPORT='"5432"'
285+
CFLAGS+= -DPOSTPORT='"$(POSTPORT)"'
286286

287287
# include flags from mk/port/postgres.mk.$(PORTNAME)
288288
CFLAGS+= $(CFLAGS_BE)

0 commit comments

Comments
 (0)