CVSROOT: /cvsroot
Module name: pgsql-server
Changes by: [email protected] 02/11/01 17:52:34
Modified files:
contrib/cube : Makefile cubeparse.y
contrib/seg : Makefile segparse.y
contrib/tsearch: Makefile query.c
src/backend/bootstrap: Makefile bootparse.y bootscanner.l
src/backend/parser: Makefile gram.y
src/backend/utils/misc: Makefile guc.c
src/interfaces/ecpg/preproc: Makefile preproc.y
src/pl/plpgsql/src: Makefile gram.y
Log message:
Arrange to compile flex output files as inclusions into other files
(usually bison output files), not as standalone files. This hack
works around flex's insistence on including <stdio.h> before we are
able to include postgres.h; postgres.h will already be read before
the compiler starts to read the flex output file. Needed for largefile
support on some platforms.