diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-01-04 05:57:21 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-01-04 05:57:21 +0000 |
commit | 187b190adb4d84d89adc96877f3b1e67c242dbc2 (patch) | |
tree | a40ac9330c514943bb6884c4b383a78e17a69f85 /src/include/postgres.h | |
parent | 4351f8823df53cffdea5960c93e867f498cd9bff (diff) | |
download | postgresql-187b190adb4d84d89adc96877f3b1e67c242dbc2.tar.gz postgresql-187b190adb4d84d89adc96877f3b1e67c242dbc2.zip |
There's no longer any good reason for genbki.sh and Gen_fmgrtab.sh to
run the data through cpp, and we know of at least one platform where
unusual cpp behavior breaks the process. So remove the cpp step,
and make consequent simplifications.
Diffstat (limited to 'src/include/postgres.h')
-rw-r--r-- | src/include/postgres.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/postgres.h b/src/include/postgres.h index 8186162e644..f3ce6e71d0e 100644 --- a/src/include/postgres.h +++ b/src/include/postgres.h @@ -10,7 +10,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1995, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/postgres.h,v 1.66 2003/11/29 22:40:53 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/postgres.h,v 1.67 2004/01/04 05:57:21 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -544,9 +544,6 @@ extern int ExceptionalCondition(char *conditionName, char *errorType, #define DATA(x) extern int no_such_variable #define DESCR(x) extern int no_such_variable -#define BKI_BEGIN -#define BKI_END - typedef int4 aclitem; /* PHONY definition for catalog use only */ #endif /* POSTGRES_H */ |