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 | 96a8fb7e99aa8d612473a1dd87e4c1deb8408898 (patch) | |
tree | 0fb56af511a85378667bf868ec96cc8335615dca /Python/dynload_shlib.c | |
parent | 6a90b5e4d0503ce56217795ff7c35a901e4f85a2 (diff) | |
download | cpython-git-96a8fb7e99aa8d612473a1dd87e4c1deb8408898.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_shlib.c')
-rw-r--r-- | Python/dynload_shlib.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Python/dynload_shlib.c b/Python/dynload_shlib.c index d3c5a6ee34..2823bbbd5a 100644 --- a/Python/dynload_shlib.c +++ b/Python/dynload_shlib.c @@ -65,11 +65,22 @@ static struct { static int nhandles = 0; -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; void *handle; + char funcname[258]; + char pathbuf[260]; + + if (strchr(pathname, '/') == NULL) { + /* Prefix bare filename with "./" */ + sprintf(pathbuf, "./%-.255s", pathname); + pathname = pathbuf; + } + + /* ### should there be a leading underscore for some platforms? */ + sprintf(funcname, "init%.200s", shortname); if (fp != NULL) { int i; |