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

Commit 496b937

Browse files
committed
Change ordering of "user modified variables" so that they are at
the top of th efile instead of scattered throughout Turned off default behavior of compiling with -g enabled submitted by; bruce
1 parent 48cde8d commit 496b937

File tree

1 file changed

+11
-14
lines changed

1 file changed

+11
-14
lines changed

src/Makefile.global

+11-14
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.15 1996/07/25 20:43:35 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.16 1996/07/29 20:51:41 scrappy Exp $
1111
#
1212
# NOTES
1313
# This is seen by any Makefiles that include mk/postgres.mk. To
@@ -64,18 +64,18 @@ PORTNAME= BSD44_derived
6464
# SRCDIR specifies where the source files are.
6565
SRCDIR= /home/staff/scrappy/cvs/postgres95/src
6666

67+
# For convenience, POSTGRESDIR is where DATADIR, BINDIR, and LIBDIR
68+
# and other target destinations are rooted. Of course, each of these is
69+
# changable separately.
70+
POSTGRESDIR= /home/staff/scrappy/cvs/postgres95
71+
6772
# POSTGRESLOGIN is the login name of the user who gets special
6873
# privileges within the database. By default it is "postgres", but
6974
# you can change it to any existing login name (such as your own
7075
# login if you are compiling a private version or don't have root
7176
# access).
7277
POSTGRESLOGIN= postgres
7378

74-
# For convenience, POSTGRESDIR is where DATADIR, BINDIR, and LIBDIR
75-
# and other target destinations are rooted. Of course, each of these is
76-
# changable separately.
77-
POSTGRESDIR= /home/staff/scrappy/cvs/postgres95
78-
7979
# DATADIR specifies where the postmaster expects to find its database.
8080
# This may be overridden by command line options or the PGDATA environment
8181
# variable.
@@ -127,14 +127,14 @@ CFLAGS+= -DNAMEDATALEN=$(NAMEDATALEN) -DOIDNAMELEN=$(OIDNAMELEN)
127127
# To disable a feature, comment out the entire definition
128128
# (that is, prepend '#', don't set it to "0" or "no").
129129

130-
# Comment out ENFORCE_ALIGNMENT if you do NOT want unaligned access to
131-
# multi-byte types to generate a bus error.
132-
ENFORCE_ALIGNMENT= true
133-
134130
# Comment out CDEBUG to turn off debugging and sanity-checking.
135131
#
136132
# XXX on MIPS, use -g3 if you want to compile with -O
137-
CDEBUG= -g
133+
CDEBUG= #-g
134+
135+
# Comment out ENFORCE_ALIGNMENT if you do NOT want unaligned access to
136+
# multi-byte types to generate a bus error.
137+
ENFORCE_ALIGNMENT= true
138138

139139
# turn this on if you prefer European style dates instead of American
140140
# style dates
@@ -170,8 +170,6 @@ ifdef HBA
170170
HBAFLAGS= -DHBA
171171
endif
172172

173-
174-
175173
# If you plan to use Kerberos for authentication...
176174
#
177175
# Comment out KRBVERS if you do not use Kerberos.
@@ -180,7 +178,6 @@ endif
180178
#
181179
#KRBVERS= 5
182180

183-
184181
# Globally pass Kerberos file locations.
185182
# these are used in the postmaster and all libpq applications.
186183
#

0 commit comments

Comments
 (0)