diff options
author | Bruce Momjian <bruce@momjian.us> | 1996-12-28 02:13:05 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1996-12-28 02:13:05 +0000 |
commit | cb6cb7745d426e712314f6b92e79a63bd32b3759 (patch) | |
tree | 3738a6a452923a8c35a63da6382818a00a08c95d /src/bin/psql/psql.c | |
parent | a2b7f629766cac6b2566fc2ed21055f6653a5285 (diff) | |
download | postgresql-cb6cb7745d426e712314f6b92e79a63bd32b3759.tar.gz postgresql-cb6cb7745d426e712314f6b92e79a63bd32b3759.zip |
Here's the final set of patches to 6.0 (sup'd on 27/12/96) that allow a full
gmake of the code without interruption.
There's also some tidy-up of the MAXPATHLEN stuff based on the assumption that
all supported platforms have MAXPATHLEN defined in <sys/param.h>.
(The only unknowns for the above are AIX and IRIX5.)
Diffstat (limited to 'src/bin/psql/psql.c')
-rw-r--r-- | src/bin/psql/psql.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index 4b8583d7031..a32d2c69ee5 100644 --- a/src/bin/psql/psql.c +++ b/src/bin/psql/psql.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.42 1996/12/26 22:07:57 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.43 1996/12/28 02:12:31 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -16,6 +16,7 @@ #include <signal.h> #include <errno.h> #include <sys/types.h> +#include <sys/param.h> /* for MAXPATHLEN */ #include <sys/stat.h> #include <unistd.h> #include <fcntl.h> |