diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-11-26 20:45:19 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-11-26 20:45:19 +0000 |
commit | 0a829cb8658f8d1c6dfa573689a27f92a28748d9 (patch) | |
tree | d6e90c65969d7bbe5eb37da77f169d293962e47d | |
parent | 0075c29f540274ad99700281b38c8475ef1c88f9 (diff) | |
download | postgresql-0a829cb8658f8d1c6dfa573689a27f92a28748d9.tar.gz postgresql-0a829cb8658f8d1c6dfa573689a27f92a28748d9.zip |
current cvs tree does build because of a small problem in ECPG. Here is a
little patch which correct that.
thanks
cyril
-rw-r--r-- | src/interfaces/ecpg/include/ecpglib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h index e8c5a9a6ffa..72869395ad1 100644 --- a/src/interfaces/ecpg/include/ecpglib.h +++ b/src/interfaces/ecpg/include/ecpglib.h @@ -16,6 +16,8 @@ #ifndef false #define bool char #endif /* ndef bool */ +#else /* __BEOS__ */ +#include <SupportDefs.h> #endif /* __BEOS__ */ #ifndef TRUE |