mirror of
https://github.com/postgres/postgres.git
synced 2025-12-02 23:42:46 +03:00
Remove all traces that suggest that a non-Bison yacc might be supported, and
change build system to use only Bison. Simplify build rules, make file names uniform. Don't build the token table header file where it is not needed.
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/parser/keywords.c,v 1.199 2008/07/16 01:30:22 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/parser/keywords.c,v 1.200 2008/08/29 13:02:32 petere Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -22,7 +22,7 @@
|
||||
#include <ctype.h>
|
||||
|
||||
/*
|
||||
* This macro definition overrides the YYSTYPE union definition in parse.h.
|
||||
* This macro definition overrides the YYSTYPE union definition in gram.h.
|
||||
* We don't need that struct in this file, and including the real definition
|
||||
* would require sucking in some backend-only include files.
|
||||
*/
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
#include "parser/keywords.h"
|
||||
#ifndef ECPG_COMPILE
|
||||
#include "parser/parse.h"
|
||||
#include "parser/gram.h"
|
||||
#else
|
||||
#include "preproc.h"
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user