aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2001-12-05 02:03:59 +0000
committerTatsuo Ishii <ishii@postgresql.org>2001-12-05 02:03:59 +0000
commit9f8ff2ab5ab4ef93b8d69c41b7eeec6128335cc6 (patch)
treec6aaee364cedc968c6f28df7e8c43de8874a7158 /src
parent969cc16c690d0f23bab9c95a7e26b5ac409ac628 (diff)
downloadpostgresql-9f8ff2ab5ab4ef93b8d69c41b7eeec6128335cc6.tar.gz
postgresql-9f8ff2ab5ab4ef93b8d69c41b7eeec6128335cc6.zip
Re-enable SunOS4 port. Replace
RTLD_LAZY | RTLD_GLOBAL to 1. It seems sunos4.h was accidentally modified between 7.1 and 7.2.
Diffstat (limited to 'src')
-rw-r--r--src/backend/port/dynloader/sunos4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/port/dynloader/sunos4.h b/src/backend/port/dynloader/sunos4.h
index 6990892f3bb..0bd685be7dc 100644
--- a/src/backend/port/dynloader/sunos4.h
+++ b/src/backend/port/dynloader/sunos4.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: sunos4.h,v 1.11 2001/11/05 17:46:27 momjian Exp $
+ * $Id: sunos4.h,v 1.12 2001/12/05 02:03:59 ishii Exp $
*
*-------------------------------------------------------------------------
*/
@@ -26,7 +26,7 @@
* library as the file to be dynamically loaded.
*
*/
-#define pg_dlopen(f) dlopen((f), RTLD_LAZY | RTLD_GLOBAL)
+#define pg_dlopen(f) dlopen((f),1)
#define pg_dlsym dlsym
#define pg_dlclose dlclose
#define pg_dlerror dlerror