7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.35 1996/09/23 18:17:42 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.36 1996/10/08 00:08:56 scrappy Exp $
11
11
#
12
12
# NOTES
13
13
# This is seen by any Makefiles that include mk/postgres.mk. To
@@ -107,22 +107,6 @@ HEADERDIR= $(POSTGRESDIR)/include
107
107
# The port to run the postmaster on
108
108
POSTPORT= 5432
109
109
110
- # NAMEDATALEN is the max length for system identifiers (e.g. table names,
111
- # attribute names, function names, etc.)
112
- #
113
- # These MUST be set here. DO NOT COMMENT THESE OUT
114
- # Setting these too high will result in excess space usage for system catalogs
115
- # Setting them too low will make the system unusable.
116
- # values between 16 and 64 that are multiples of four are recommended.
117
- #
118
- # NOTE also that databases with different NAMEDATALEN's cannot interoperate!
119
- #
120
- NAMEDATALEN = 32
121
- # OIDNAMELEN should be set to NAMEDATALEN + sizeof(Oid)
122
- OIDNAMELEN = 36
123
-
124
- CFLAGS+= -DNAMEDATALEN=$(NAMEDATALEN) -DOIDNAMELEN=$(OIDNAMELEN)
125
-
126
110
##############################################################################
127
111
#
128
112
# FEATURES
@@ -139,11 +123,6 @@ CDEBUG= -O
139
123
# multi-byte types to generate a bus error.
140
124
ENFORCE_ALIGNMENT= true
141
125
142
- # turn this on if you prefer European style dates instead of American
143
- # style dates
144
- #EUROPEAN_DATES = true
145
-
146
- # Comment out PROFILE to disable profiling.
147
126
#
148
127
# XXX define on MIPS if you want to be able to use pixie.
149
128
# note that this disables dynamic loading!
@@ -167,14 +146,6 @@ READLINE_LIB= -L/home/tools/lib -lreadline
167
146
#HISTORY_INC= -I/home/tools/include -I/home/tools/include/readline
168
147
#HISTORY_LIB= -L/home/tools/lib -lhistory
169
148
170
- # If you do not plan to use Host based authentication,
171
- # comment out the following line
172
- HBA = 1
173
-
174
- ifdef HBA
175
- HBAFLAGS= -DHBA
176
- endif
177
-
178
149
# If you plan to use Kerberos for authentication...
179
150
#
180
151
# Comment out KRBVERS if you do not use Kerberos.
@@ -288,26 +259,11 @@ CFLAGS+= $(CFLAGS_BE)
288
259
LDADD+= $(LDADD_BE)
289
260
LDFLAGS+= $(LDFLAGS_BE)
290
261
291
- # enable patches to array update code (moved to config.h)
292
- #CFLAGS += -DARRAY_PATCH
293
- # enable patches to null insert/update code
294
- CFLAGS += -DNULL_PATCH
295
- # enable patches for varchar and fsync
296
- CFLAGS += -DOPENLINK_PATCHES
297
-
298
262
##############################################################################
299
263
#
300
264
# Miscellaneous configuration
301
265
#
302
266
303
- # This is the time, in seconds, at which a given backend server
304
- # will wait on a lock before deciding to abort the transaction
305
- # (this is what we do in lieu of deadlock detection).
306
- #
307
- # Low numbers are not recommended as they will tend to cause
308
- # false aborts if many transactions are long-lived.
309
- CFLAGS+= -DDEADLOCK_TIMEOUT=60
310
-
311
267
srcdir= $(SRCDIR)
312
268
includedir= $(HEADERDIR)
313
269
objdir= obj
0 commit comments