77#
88#
99# IDENTIFICATION
10- # $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.54 1998/11/29 05:30:14 tgl Exp $
10+ # $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.55 1999/02/02 03:43:56 momjian Exp $
1111#
1212# NOTES
13- # Essentially all Postgres make files include this file and use the
14- # variables it sets.
13+ # Essentially all Postgres make files include this file and use the
14+ # variables it sets.
1515#
1616# To override the default setting, create a Makefile.custom in this
1717# directory and put your defines there. (Makefile.custom is included
1818# near the end of this file). Sometimes, a variable gets set in
1919# Makefile.global after Makefile.custom has been included, so you can't
2020# simply set that variable in Makefile.custom. In those cases, there is
21- # often another variable (like CUSTOM_COPT) that you can set in
21+ # often another variable (like CUSTOM_COPT) that you can set in
2222# Makefile.custom that influences the later setting of the true variable
2323# of interest (like CFLAGS) by Makefile.global.
2424#
2525#
26- # If you change any of these defines you probably have to
26+ # If you change any of these defines you probably have to
2727# make clean; make
28- # since no dependencies are created for these. (of course you can
28+ # since no dependencies are created for these. (of course you can
2929# be crafty and check what files really depend on them and just remake
3030# those).
31- #
32- # Before including this file, you must set the SRCDIR variable to the
33- # path of the top of the Postgres source tree (the directory that
34- # contains this file).
31+ #
32+ # Before including this file, you must set the SRCDIR variable to the
33+ # path of the top of the Postgres source tree (the directory that
34+ # contains this file).
3535#
3636#-------------------------------------------------------------------------
3737
4040#
4141# CONFIGURATION SECTION
4242#
43- # Following are settings pertaining to the postgres build and
44- # installation.
43+ # Following are settings pertaining to the postgres build and
44+ # installation.
4545# of the port.
4646#
4747# Ignore BSD_SHLIB if you're not using one of the BSD ports. But if you
@@ -55,8 +55,8 @@ ELF_SYSTEM= @ELF_SYS@
5555
5656LIBPQDIR:= $(SRCDIR)/interfaces/libpq
5757
58- # For convenience, POSTGRESDIR is where BINDIR, and LIBDIR
59- # and other target destinations are rooted. Of course, each of these is
58+ # For convenience, POSTGRESDIR is where BINDIR, and LIBDIR
59+ # and other target destinations are rooted. Of course, each of these is
6060# changable separately.
6161POSTGRESDIR= @prefix@
6262
@@ -73,7 +73,7 @@ LIBDIR= $(POSTGRESDIR)/lib
7373# This is the directory where IPC utilities ipcs and ipcrm are located
7474#
7575IPCS=@ipcs@
76- IPCRM=@ipcrm@
76+ IPCRM=@ipcrm@
7777
7878# Where the man pages (suitable for use with "man") get installed.
7979POSTMANDIR= $(POSTGRESDIR)/man
@@ -91,7 +91,7 @@ ODBCINST= $(POSTGRESDIR)
9191
9292##############################################################################
9393#
94- # FEATURES
94+ # FEATURES
9595#
9696# To disable a feature, comment out the entire definition
9797# (that is, prepend '#', don't set it to "0" or "no").
@@ -167,7 +167,7 @@ endif
167167
168168##############################################################################
169169#
170- # Installation.
170+ # Installation.
171171#
172172# For many ports, INSTALL is overridden below.
173173INSTALL= @INSTALL@
@@ -181,7 +181,7 @@ INSTL_SHLIB_OPTS= @INSTL_SHLIB_OPTS@
181181##############################################################################
182182#
183183# For building shell scripts:
184- #
184+ #
185185# For many ports, these are overridden below.
186186
187187# DASH_N is what we put before the text on an echo command when we don't
@@ -191,7 +191,7 @@ INSTL_SHLIB_OPTS= @INSTL_SHLIB_OPTS@
191191# you do echo "no newline after this\c".
192192
193193DASH_N= @DASH_N@
194- BACKSLASH_C= @BACKSLASH_C@
194+ BACKSLASH_C= @BACKSLASH_C@
195195
196196
197197
@@ -204,7 +204,7 @@ YFLAGS= @YFLAGS@
204204YACC= @YACC@
205205LEX= @LEX@
206206AROPT= @AROPT@
207- CFLAGS= -I$(SRCDIR)/include -I$(SRCDIR)/backend @CPPFLAGS@ @CFLAGS@
207+ CFLAGS= -I$(SRCDIR)/include -I$(SRCDIR)/backend @CPPFLAGS@ @CFLAGS@
208208CFLAGS_SL= @SHARED_LIB@
209209LDFLAGS= @LDFLAGS@ @LIBS@
210210DLSUFFIX= @DLSUFFIX@
@@ -245,25 +245,25 @@ INSTALL= $(CUSTOM_INSTALL)
245245endif
246246
247247#
248- # Flags for CC and LD.
248+ # Flags for CC and LD.
249249
250250##############################################################################
251251# COPT
252252#
253- # COPT is for options that the sophisticated builder might want to vary
253+ # COPT is for options that the sophisticated builder might want to vary
254254# from one build to the next, like options to build Postgres with debugging
255- # information included. COPT is meant to be set on the make command line,
255+ # information included. COPT is meant to be set on the make command line,
256256# for example with the command "make COPT=-g". The value you see set here
257257# is the default that gets used if the builder does not give a value for
258258# COPT on his make command.
259259#
260- # There is a nonobvious relationship between -O (optimization) and
260+ # There is a nonobvious relationship between -O (optimization) and
261261# -Werror (consider all warnings fatal). On some systems, if you don't
262262# optimize, you will always get some warnings because the system header
263263# files will include some unreferenced functions in the code. These are
264264# functions that are supposed to be inline, so there wouldn't ordinarily
265265# be an "unreferenced" problem, but if you don't enable optimization, no
266- # inlining can happen, and hence the problem. Therefore, we include
266+ # inlining can happen, and hence the problem. Therefore, we include
267267# if you override -O, you override -Werror as well.
268268#
269269# CUSTOM_COPT is something the user may set in Makefile.custom