diff options
author | Guido van Rossum <guido@python.org> | 1997-08-16 14:38:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-16 14:38:09 (GMT) |
commit | 54dec59b56c14fc45558df48fa92077d669caf25 (patch) | |
tree | 30787e9c7c36326d51ed43f75dd51e3a07566d83 | |
parent | 749af7c1c8dc47b5eed2a6cda0705ab35ea846ee (diff) | |
download | cpython-54dec59b56c14fc45558df48fa92077d669caf25.zip cpython-54dec59b56c14fc45558df48fa92077d669caf25.tar.gz cpython-54dec59b56c14fc45558df48fa92077d669caf25.tar.bz2 |
set sharedlib extensions properly for NeXT (Ted Horst)
-rw-r--r-- | Python/importdl.c | 2 |
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 |