Some extra flags that an HPUX user wants me to add.

This commit is contained in:
Guido van Rossum 1996-12-05 23:15:35 +00:00
parent b0c168cbe8
commit 3afb5959aa

View file

@ -480,10 +480,10 @@ load_dynamic_module(name, pathname, fp)
shl_t lib; shl_t lib;
int flags; int flags;
flags = BIND_DEFERRED; flags = BIND_FIRST | BIND_DEFERRED;
if (verbose) if (verbose)
{ {
flags = BIND_IMMEDIATE | BIND_NONFATAL | BIND_VERBOSE; flags = DYNAMIC_PATH | BIND_FIRST | BIND_IMMEDIATE | BIND_NONFATAL | BIND_VERBOSE;
printf("shl_load %s\n",pathname); printf("shl_load %s\n",pathname);
} }
lib = shl_load(pathname, flags, 0); lib = shl_load(pathname, flags, 0);