Commit 8a17ed63 authored by Tom Lane's avatar Tom Lane

'extern char *pg_pathname' in these files fails to agree with

postgres.c's declaration of 'char pg_pathname[...]'.  I dunno when these
ports were last used, but they are sure broken now...
parent c4c8e812
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
#ifdef PRE_BSDI_2_1 #ifdef PRE_BSDI_2_1
#include "postgres.h" #include "postgres.h"
extern char *pg_pathname; extern char pg_pathname[];
void * void *
pg_dlopen(char *filename) pg_dlopen(char *filename)
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/linux.c,v 1.15 1999/07/17 20:17:31 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/port/dynloader/linux.c,v 1.16 1999/10/25 02:31:47 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#endif #endif
#ifdef NOT_USED #ifdef NOT_USED
extern char *pg_pathname; extern char pg_pathname[];
void * void *
pg_dlopen(char *filename) pg_dlopen(char *filename)
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.9 1999/07/17 20:17:31 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.10 1999/10/25 02:31:47 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "port-protos.h" #include "port-protos.h"
#include "utils/dynamic_loader.h" #include "utils/dynamic_loader.h"
extern char *pg_pathname; extern char pg_pathname[];
void * void *
pg_dlopen(char *filename) pg_dlopen(char *filename)
......
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