diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-03-31 03:00:20 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-03-31 03:00:20 +0000 |
commit | 62943bb76fdb8e2283e2d01e2c81963578a50f62 (patch) | |
tree | f4f2bf40509117d6910eeb0dc3a848f30befd87a /src | |
parent | 92c6bf9775bbcee2f8da9e2c872c3a28f3eaf228 (diff) | |
download | postgresql-62943bb76fdb8e2283e2d01e2c81963578a50f62.tar.gz postgresql-62943bb76fdb8e2283e2d01e2c81963578a50f62.zip |
Pointed out by: Doug Winterburn <dlw@seavme.xroads.com>
3) Add "#include "config.h" to src/interfaces/ecpg/preproc/pgc.l
to correct "strings.h not found". config.h has the proper define to
make this work and should probably be near the top of pgc.l before
the first include.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/ecpg/preproc/pgc.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/ecpg/preproc/pgc.l b/src/interfaces/ecpg/preproc/pgc.l index adda5e2278a..8fc341400ea 100644 --- a/src/interfaces/ecpg/preproc/pgc.l +++ b/src/interfaces/ecpg/preproc/pgc.l @@ -1,5 +1,6 @@ /* Copyright comment! */ %{ +#include "config.h" #include <sys/types.h> #include <limits.h> #if defined(HAVE_STRING_H) |