Commit 1efd2cf7 authored by Bruce Momjian's avatar Bruce Momjian

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 -
parent d31736e9
......@@ -5,6 +5,12 @@
#include <ctype.h>
#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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment