diff options
| author | Peter Eisentraut | 2000-05-31 00:28:42 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2000-05-31 00:28:42 +0000 |
| commit | 6a68f42648f54690ad5b5ae6fb9104e86e15f0f1 (patch) | |
| tree | 4b6742f51fb2160dbe2ce090273fd430dc2b2499 /src/tools | |
| parent | 5e4d554bae6a7177903cdb99bf5d41b695519a45 (diff) | |
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/tools')
| -rwxr-xr-x | src/tools/release_prep | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tools/release_prep b/src/tools/release_prep index 7b33522659..58964f9a6f 100755 --- a/src/tools/release_prep +++ b/src/tools/release_prep @@ -45,6 +45,13 @@ rm -f bootstrap_tokens.h bootparse.c bootscanner.c $MAKE bootstrap_tokens.h bootparse.c bootscanner.c cd ../.. +# Generate configuration file scanner + +cd backend/utils/misc +rm -f guc-file.c lex.yy.c +$MAKE guc-file.c +cd ../../.. + # Generate ecpg preprocessor's yacc and lex files cd interfaces/ecpg/preproc |
