1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-22 12:22:45 +03:00

Link in keywords file instead of copying it.

Use #define/#ifdef instead of sed to fix include files, this should work on Windows too.
This commit is contained in:
Michael Meskes
2008-05-21 19:51:01 +00:00
parent 42ad6631cd
commit d82e7c84fa
3 changed files with 10 additions and 7 deletions

View File

@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/parser/keywords.c,v 1.196 2008/05/16 23:36:05 tgl Exp $
* $PostgreSQL: pgsql/src/backend/parser/keywords.c,v 1.197 2008/05/21 19:51:01 meskes Exp $
*
*-------------------------------------------------------------------------
*/
@@ -29,8 +29,11 @@
#define YYSTYPE int
#include "parser/keywords.h"
#ifndef ECPG_COMPILE
#include "parser/parse.h"
#else
#include "preproc.h"
#endif
/*
* List of keyword (name, token-value, category) entries.