diff options
| author | Guido van Rossum <guido@python.org> | 1999-12-22 14:09:35 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1999-12-22 14:09:35 +0000 |
| commit | 4720b156d9ea2dd504ebbabe962ef776ba84d58b (patch) | |
| tree | 9ccb8cb8aa2df8d05f8f2075f13371ef2fa55006 /Python/dynload_aix.c | |
| parent | cb00431300dd54265ca299802fe0287e29278602 (diff) | |
| download | cpython-4720b156d9ea2dd504ebbabe962ef776ba84d58b.tar.gz | |
Cleanup patches from Greg Stein:
* in import.c, #ifdef out references to dynamic loading based on
HAVE_DYNAMIC_LOADING
* clean out the platform-specific crud from importdl.c.
[ maybe fold this function into import.c and drop the importdl.c file? Greg.]
* change GetDynLoadFunc's "funcname" parameter to "shortname". change
"name" to "fqname" for clarification.
* each GetDynLoadFunc now creates its own funcname value.
WARNING: as I mentioned previously, we may run into an issue with a
missing "_" on some platforms. Testing will show this pretty quickly,
however.
* move pathname munging into dynload_shlib.c
Diffstat (limited to 'Python/dynload_aix.c')
| -rw-r--r-- | Python/dynload_aix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dynload_aix.c b/Python/dynload_aix.c index f8f431754d..0e271521aa 100644 --- a/Python/dynload_aix.c +++ b/Python/dynload_aix.c @@ -202,7 +202,7 @@ aix_loaderror(pathname) } -dl_funcptr _PyImport_GetDynLoadFunc(const char *name, const char *funcname, +dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, const char *pathname, FILE *fp) { dl_funcptr p; |
