summaryrefslogtreecommitdiffstats
path: root/Python/importdl.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-06-14 22:07:26 (GMT)
committerGuido van Rossum <guido@python.org>1995-06-14 22:07:26 (GMT)
commit75f288de71e23edc99cd5872055e5a668d477288 (patch)
tree9700c53feec9483b3480d1120fa28d5236ff01bd /Python/importdl.c
parent2e96eb9266e4ed47d125998287bbca492335e766 (diff)
downloadcpython-75f288de71e23edc99cd5872055e5a668d477288.zip
cpython-75f288de71e23edc99cd5872055e5a668d477288.tar.gz
cpython-75f288de71e23edc99cd5872055e5a668d477288.tar.bz2
re-enabled NeXT dynamic linking (#ifdef NeXT)
Diffstat (limited to 'Python/importdl.c')
-rw-r--r--Python/importdl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/importdl.c b/Python/importdl.c
index 3a9df69..189bc43 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 (currently disabled)
+ USE_RLD -- NeXT dynamic linking
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
@@ -83,7 +83,7 @@ typedef FARPROC dl_funcptr;
#define LONG_EXT "module.pyd"
#endif
-#ifdef WITH_RLD
+#ifdef NeXT
#define DYNAMIC_LINK
#define USE_RLD
#endif