From 62943bb76fdb8e2283e2d01e2c81963578a50f62 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" <scrappy@hub.org> Date: Tue, 31 Mar 1998 03:00:20 +0000 Subject: [PATCH] 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. --- src/interfaces/ecpg/preproc/pgc.l | 1 + 1 file changed, 1 insertion(+) 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) -- GitLab