Commit 3afb5959 authored by Guido van Rossum's avatar Guido van Rossum

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

parent b0c168cb
...@@ -480,10 +480,10 @@ load_dynamic_module(name, pathname, fp) ...@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment