Is this patch planned to be included in 6.3.2 release? I do not see in
Apr13 snapshot.
>Included is a patch for ecpg which seems to have some compiling
>problems on non POSIX systems such as SunOS 4.1.x.
>--
>Tatsuo Ishii
>t-ishii@sra.co.jp
>-------------------------------------------------------------------
>Index: postgresql-6.3.1/src/interfaces/ecpg/preproc/pgc.l
>diff -c postgresql-6.3.1/src/interfaces/ecpg/preproc/pgc.l:1.1.1.1
postgresql-6.3.1/src/interfaces/ecpg/preproc/pgc.l:1.1.1.1.4.1
>*** postgresql-6.3.1/src/interfaces/ecpg/preproc/pgc.l:1.1.1.1 Thu Apr 2 15:45:49 1998
>--- postgresql-6.3.1/src/interfaces/ecpg/preproc/pgc.l Mon Apr 6 18:15:51 1998
>***************
>*** 2,7 ****
>--- 2,13 ----
> %{
> #include <sys/types.h>
> #include <limits.h>
>+
>+ #ifndef PATH_MAX
>+ #include <sys/param.h>
>+ #define PATH_MAX MAXPATHLEN
>+ #endif
>+
> #if defined(HAVE_STRING_H)
> #include <string.h>
> #else
>