You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by "William A. Rowe, Jr." <wr...@rowe-clan.net> on 2003/05/28 22:40:21 UTC

[PATCH] HPUX Apache 1.3

We've discussed and adopted this patch on the apr/httpd-2.0 side of the world.
The original code dates back to the initial implemenation of the dso code for
Apache 1.3 by rse.  Does anyone have any issues with adopting this patch
so that various libraries load correctly with Apache 1.3 on HPUX?  (Performs
the various startup functions such as initializing static's, etc.)

If I can get two other +1's let's get this into 1.3.28.

Bill

Index: os/unix/os.c
===================================================================
RCS file: /home/cvs/apache-1.3/src/os/unix/os.c,v
retrieving revision 1.26
diff -u -r1.26 os.c
--- os/unix/os.c	3 Oct 2002 19:58:09 -0000	1.26
+++ os/unix/os.c	28 May 2003 20:32:02 -0000
@@ -102,7 +102,7 @@
 {
 #if defined(HPUX) || defined(HPUX10) || defined(HPUX11)
     shl_t handle;
-    handle = shl_load(path, BIND_IMMEDIATE|BIND_VERBOSE|BIND_NOSTART, 0L);
+    handle = shl_load(path, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
     return (void *)handle;
 
 #elif defined(HAVE_DYLD)