summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Okamoto <okamoto@hpcc123.corp.hp.com>1996-11-25 18:15:26 -0800
committerChip Salzenberg <chip@atlantic.net>1996-11-26 20:48:00 +1200
commitd43d69ec259e29a20b4d77e3022ac488591d6e9a (patch)
tree872b34d7bbe4c6b5ab161a8b520c444ea372b1dd
parent72ea3524c3f4de196665e0574292cdc2981b4a2b (diff)
downloadperl-d43d69ec259e29a20b4d77e3022ac488591d6e9a.tar.gz
HP patches didn't make it into _08
There are two fixes for HP-UX that didn't make it into the _08 release. I'd like to ask that they be added into the _09 release. The first is the patch to dl_hpux.xs that adds some debugging options. The second was a new hints file. Here's the patch, and I'll send the hints file under separate cover. p5p-msgid: <199611252114.AA245686448@hpcc123.corp.hp.com> private-msgid: <199611260215.AA100414526@hpcc123.corp.hp.com>
-rw-r--r--ext/DynaLoader/dl_hpux.xs4
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/DynaLoader/dl_hpux.xs b/ext/DynaLoader/dl_hpux.xs
index 975d26d779..3d6b2d32d4 100644
--- a/ext/DynaLoader/dl_hpux.xs
+++ b/ext/DynaLoader/dl_hpux.xs
@@ -48,6 +48,10 @@ dl_load_file(filename)
bind_type = BIND_IMMEDIATE;
else
bind_type = BIND_DEFERRED;
+#ifdef DEBUGGING
+ if (dl_debug)
+ bind_type |= BIND_VERBOSE;
+#endif /* DEBUGGING */
max = AvFILL(dl_resolve_using);
for (i = 0; i <= max; i++) {