diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2000-05-31 00:28:42 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2000-05-31 00:28:42 +0000 |
| commit | 6a68f42648f54690ad5b5ae6fb9104e86e15f0f1 (patch) | |
| tree | 4b6742f51fb2160dbe2ce090273fd430dc2b2499 /src/backend/utils/misc/Makefile | |
| parent | 5e4d554bae6a7177903cdb99bf5d41b695519a45 (diff) | |
| download | postgresql-6a68f42648f54690ad5b5ae6fb9104e86e15f0f1.tar.gz | |
The heralded `Grand Unified Configuration scheme' (GUC)
That means you can now set your options in either or all of $PGDATA/configuration,
some postmaster option (--enable-fsync=off), or set a SET command. The list of
options is in backend/utils/misc/guc.c, documentation will be written post haste.
pg_options is gone, so is that pq_geqo config file. Also removed were backend -K,
-Q, and -T options (no longer applicable, although -d0 does the same as -Q).
Added to configure an --enable-syslog option.
changed all callers from TPRINTF to elog(DEBUG)
Diffstat (limited to 'src/backend/utils/misc/Makefile')
| -rw-r--r-- | src/backend/utils/misc/Makefile | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/src/backend/utils/misc/Makefile b/src/backend/utils/misc/Makefile index 0afdb0a63b..de0a048735 100644 --- a/src/backend/utils/misc/Makefile +++ b/src/backend/utils/misc/Makefile @@ -4,27 +4,38 @@ # Makefile for utils/misc # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/utils/misc/Makefile,v 1.13 2000/05/29 05:45:37 tgl Exp $ +# $Header: /cvsroot/pgsql/src/backend/utils/misc/Makefile,v 1.14 2000/05/31 00:28:34 petere Exp $ # #------------------------------------------------------------------------- SRCDIR = ../../.. include ../../../Makefile.global -OBJS = database.o superuser.o trace.o +OBJS = database.o superuser.o guc.o guc-file.o all: SUBSYS.o SUBSYS.o: $(OBJS) $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS) +.SECONDARY: guc-file.c +.INTERMEDIATE: lex.yy.c + +guc-file.c: lex.yy.c + sed -e 's/lex\.yy\.c/guc-file\.c/g' \ + -e 's/^yy/GUC_yy/g' \ + -e 's/\([^a-zA-Z0-9_]\)yy/\1GUC_yy/g' < $< > $@ + +lex.yy.c: guc-file.l + $(LEX) $(LFLAGS) $< + + depend dep: $(CC) -MM $(CFLAGS) *.c >depend clean: - rm -f SUBSYS.o $(OBJS) + rm -f SUBSYS.o $(OBJS) lex.yy.c ifeq (depend,$(wildcard depend)) include depend endif - |
