diff options
author | Bruce Momjian | 1996-12-28 02:13:05 +0000 |
---|---|---|
committer | Bruce Momjian | 1996-12-28 02:13:05 +0000 |
commit | cb6cb7745d426e712314f6b92e79a63bd32b3759 (patch) | |
tree | 3738a6a452923a8c35a63da6382818a00a08c95d /src/interfaces | |
parent | a2b7f629766cac6b2566fc2ed21055f6653a5285 (diff) |
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/interfaces')
-rw-r--r-- | src/interfaces/libpq/fe-lobj.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/interfaces/libpq/fe-lobj.c b/src/interfaces/libpq/fe-lobj.c index 269df14e630..563af3e46f2 100644 --- a/src/interfaces/libpq/fe-lobj.c +++ b/src/interfaces/libpq/fe-lobj.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-lobj.c,v 1.5 1996/11/16 05:18:58 momjian Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-lobj.c,v 1.6 1996/12/28 02:13:05 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -21,10 +21,6 @@ #include "libpq-fe.h" #include "libpq/libpq-fs.h" -#ifndef MAXPATHLEN -#define MAXPATHLEN 1024 -#endif - #define LO_BUFSIZE 1024 static int lo_initialize(PGconn *conn); |