summaryrefslogtreecommitdiffstats
path: root/Python/importdl.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-20 16:53:54 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-20 16:53:54 (GMT)
commit46c76a6c6688609a0d9d334945b166993d71c51e (patch)
treece86fe8eb79103e45d32f17e0e56d1149336ca23 /Python/importdl.c
parent7f9fa97ca22e56a6cde2dfd3f2ba1704db8e463f (diff)
downloadcpython-46c76a6c6688609a0d9d334945b166993d71c51e.zip
cpython-46c76a6c6688609a0d9d334945b166993d71c51e.tar.gz
cpython-46c76a6c6688609a0d9d334945b166993d71c51e.tar.bz2
added changes for NetBSD dynamic linking; removed shared linking for NeXT
Diffstat (limited to 'Python/importdl.c')
-rw-r--r--Python/importdl.c19
1 files changed, 16 insertions, 3 deletions
diff --git a/Python/importdl.c b/Python/importdl.c
index 70b6eb8..00a033e 100644
--- a/Python/importdl.c
+++ b/Python/importdl.c
@@ -36,7 +36,7 @@ extern int verbose; /* Defined in pythonrun.c */
symbol -- defined for:
DYNAMIC_LINK -- any kind of dynamic linking
- USE_RLD -- NeXT dynamic linking
+ USE_RLD -- NeXT dynamic linking (currently disabled)
USE_DL -- Jack's dl for IRIX 4 or GNU dld with emulation for Jack's dl
USE_SHLIB -- SunOS or IRIX 5 (SVR4?) shared libraries
_AIX -- AIX style dynamic linking
@@ -46,6 +46,7 @@ extern int verbose; /* Defined in pythonrun.c */
SHORT_EXT -- short extension for dynamic module, e.g. ".so"
LONG_EXT -- long extension, e.g. "module.so"
hpux -- HP-UX Dynamic Linking - defined by the compiler
+ __NetBSD__ -- NetBSD shared libraries (not quite SVR4 compatible)
(The other WITH_* symbols are used only once, to set the
appropriate symbols.)
@@ -62,6 +63,13 @@ typedef void (*dl_funcptr)();
#define LONG_EXT "module.sl"
#endif
+#ifdef __NetBSD__
+#define DYNAMIC_LINK
+#define USE_SHLIB
+
+#define dlerror() "error in dynamic linking"
+#endif
+
#ifdef NT
#define DYNAMIC_LINK
#include <windows.h>
@@ -71,7 +79,7 @@ typedef FARPROC dl_funcptr;
#define LONG_EXT "module.pyd"
#endif
-#if defined(NeXT) || defined(WITH_RLD)
+#ifdef WITH_RLD
#define DYNAMIC_LINK
#define USE_RLD
#endif
@@ -106,7 +114,12 @@ static void aix_loaderror(char *name);
#ifdef DYNAMIC_LINK
#ifdef USE_SHLIB
+#ifdef __NetBSD__
+#include <nlist.h>
+#include <link.h>
+#else
#include <dlfcn.h>
+#endif
#ifndef _DL_FUNCPTR_DEFINED
typedef void (*dl_funcptr)();
#endif
@@ -136,7 +149,7 @@ typedef void (*dl_funcptr)();
extern char *getprogramname();
#ifndef FUNCNAME_PATTERN
-#if defined(__hp9000s300)
+#if defined(__hp9000s300) || defined(__NetBSD__)
#define FUNCNAME_PATTERN "_init%.200s"
#else
#define FUNCNAME_PATTERN "init%.200s"