summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-08-16 14:38:09 (GMT)
committerGuido van Rossum <guido@python.org>1997-08-16 14:38:09 (GMT)
commit54dec59b56c14fc45558df48fa92077d669caf25 (patch)
tree30787e9c7c36326d51ed43f75dd51e3a07566d83
parent749af7c1c8dc47b5eed2a6cda0705ab35ea846ee (diff)
downloadcpython-54dec59b56c14fc45558df48fa92077d669caf25.zip
cpython-54dec59b56c14fc45558df48fa92077d669caf25.tar.gz
cpython-54dec59b56c14fc45558df48fa92077d669caf25.tar.bz2
set sharedlib extensions properly for NeXT (Ted Horst)
-rw-r--r--Python/importdl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/importdl.c b/Python/importdl.c
index b372e46..3f715de 100644
--- a/Python/importdl.c
+++ b/Python/importdl.c
@@ -95,6 +95,8 @@ typedef FARPROC dl_funcptr;
#ifdef NeXT
#define DYNAMIC_LINK
#define USE_RLD
+#define SHORT_EXT ".so"
+#define LONG_EXT "module.so"
#endif
#ifdef WITH_SGI_DL