Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
fba75d0f
Commit
fba75d0f
authored
Nov 01, 1996
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Decoupled ASSERT and DEBUG options.
parent
c3b9c520
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
13 deletions
+12
-13
src/Makefile.global
src/Makefile.global
+12
-13
No files found.
src/Makefile.global
View file @
fba75d0f
X
=
$(
shell
sleep
4
)
#----------------------------------------------------------------------------
#----------------------------------------------------------------------------
#
#
# Makefile.global--
# Makefile.global--
...
@@ -8,7 +7,7 @@ X=$(shell sleep 4)
...
@@ -8,7 +7,7 @@ X=$(shell sleep 4)
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.4
6 1996/11/01 02:21:15
momjian Exp $
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.4
7 1996/11/01 02:32:16
momjian 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
...
@@ -144,18 +143,19 @@ OIDNAMELEN = 36
...
@@ -144,18 +143,19 @@ OIDNAMELEN = 36
#HAVE_Cplusplus= true
#HAVE_Cplusplus= true
#
Comment out CDEBUG to turn off debugging and sanity-checking.
#
Set CDEBUG to -O for optimization, or -g for debuggable binaries
#
#
# XXX on MIPS, use -g3 if you want to compile with -O
CDEBUG
=
-O
CDEBUG
=
-O
# Commenting out CASSERT will make things go a LOT faster, but you will
# also lose a lot of useful error-checking.
CASSERT
=
true
# Comment out ENFORCE_ALIGNMENT if you do NOT want unaligned access to
# Comment out ENFORCE_ALIGNMENT if you do NOT want unaligned access to
# multi-byte types to generate a bus error.
# multi-byte types to generate a bus error.
ENFORCE_ALIGNMENT
=
true
ENFORCE_ALIGNMENT
=
true
#
# Comment out PROFILE to generate a profile version of the binaries
# XXX define on MIPS if you want to be able to use pixie.
# note that this disables dynamic loading!
#PROFILE= -p -non_shared
#PROFILE= -p -non_shared
# About the use of readline in psql:
# About the use of readline in psql:
...
@@ -869,16 +869,15 @@ else
...
@@ -869,16 +869,15 @@ else
CFLAGS_OPT
=
-O
CFLAGS_OPT
=
-O
endif
endif
CFLAGS
+=
$(CFLAGS_OPT)
CFLAGS
+=
$(CFLAGS_OPT)
#
endif
# Uncommenting this will make things go a LOT faster, but you will
# also lose a lot of useful error-checking.
ifndef
CASSERT
#
CFLAGS
+=
-DNO_ASSERT_CHECKING
CFLAGS
+=
-DNO_ASSERT_CHECKING
endif
endif
ifdef
PROFILE
ifdef
PROFILE
CFLAGS
+=
$(PROFILE)
CFLAGS
+=
$(PROFILE)
LDFLAGS
+=
$(PROFILE)
LDFLAGS
+=
$(PROFILE)
endif
endif
# Globally pass PORTNAME
# Globally pass PORTNAME
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment