1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-07 11:02:12 +03:00

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
This commit is contained in:
Marc G. Fournier 1996-07-29 20:51:41 +00:00
parent 48cde8d83b
commit 496b937dca

View File

@ -7,7 +7,7 @@
# #
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.15 1996/07/25 20:43:35 scrappy Exp $ # $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.16 1996/07/29 20:51:41 scrappy Exp $
# #
# NOTES # NOTES
# This is seen by any Makefiles that include mk/postgres.mk. To # This is seen by any Makefiles that include mk/postgres.mk. To
@ -64,6 +64,11 @@ PORTNAME= BSD44_derived
# SRCDIR specifies where the source files are. # SRCDIR specifies where the source files are.
SRCDIR= /home/staff/scrappy/cvs/postgres95/src SRCDIR= /home/staff/scrappy/cvs/postgres95/src
# For convenience, POSTGRESDIR is where DATADIR, BINDIR, and LIBDIR
# and other target destinations are rooted. Of course, each of these is
# changable separately.
POSTGRESDIR= /home/staff/scrappy/cvs/postgres95
# POSTGRESLOGIN is the login name of the user who gets special # POSTGRESLOGIN is the login name of the user who gets special
# privileges within the database. By default it is "postgres", but # privileges within the database. By default it is "postgres", but
# you can change it to any existing login name (such as your own # you can change it to any existing login name (such as your own
@ -71,11 +76,6 @@ SRCDIR= /home/staff/scrappy/cvs/postgres95/src
# access). # access).
POSTGRESLOGIN= postgres POSTGRESLOGIN= postgres
# For convenience, POSTGRESDIR is where DATADIR, BINDIR, and LIBDIR
# and other target destinations are rooted. Of course, each of these is
# changable separately.
POSTGRESDIR= /home/staff/scrappy/cvs/postgres95
# DATADIR specifies where the postmaster expects to find its database. # DATADIR specifies where the postmaster expects to find its database.
# This may be overridden by command line options or the PGDATA environment # This may be overridden by command line options or the PGDATA environment
# variable. # variable.
@ -127,14 +127,14 @@ CFLAGS+= -DNAMEDATALEN=$(NAMEDATALEN) -DOIDNAMELEN=$(OIDNAMELEN)
# To disable a feature, comment out the entire definition # To disable a feature, comment out the entire definition
# (that is, prepend '#', don't set it to "0" or "no"). # (that is, prepend '#', don't set it to "0" or "no").
# Comment out ENFORCE_ALIGNMENT if you do NOT want unaligned access to
# multi-byte types to generate a bus error.
ENFORCE_ALIGNMENT= true
# Comment out CDEBUG to turn off debugging and sanity-checking. # Comment out CDEBUG to turn off debugging and sanity-checking.
# #
# XXX on MIPS, use -g3 if you want to compile with -O # XXX on MIPS, use -g3 if you want to compile with -O
CDEBUG= -g CDEBUG= #-g
# Comment out ENFORCE_ALIGNMENT if you do NOT want unaligned access to
# multi-byte types to generate a bus error.
ENFORCE_ALIGNMENT= true
# turn this on if you prefer European style dates instead of American # turn this on if you prefer European style dates instead of American
# style dates # style dates
@ -170,8 +170,6 @@ ifdef HBA
HBAFLAGS= -DHBA HBAFLAGS= -DHBA
endif endif
# If you plan to use Kerberos for authentication... # If you plan to use Kerberos for authentication...
# #
# Comment out KRBVERS if you do not use Kerberos. # Comment out KRBVERS if you do not use Kerberos.
@ -180,7 +178,6 @@ endif
# #
#KRBVERS= 5 #KRBVERS= 5
# Globally pass Kerberos file locations. # Globally pass Kerberos file locations.
# these are used in the postmaster and all libpq applications. # these are used in the postmaster and all libpq applications.
# #