]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
*) Removed BIND_NOSTART from HP/UX shl_load() logic for loadable
authorWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 28 May 2003 23:03:43 +0000 (23:03 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 28 May 2003 23:03:43 +0000 (23:03 +0000)
     Apache modules, so that statics are initialized when the module
     is loaded (especially critical for c++ modules on HPUX.)
     [William Rowe, Noah Arliss <narliss@netegrity.com>]

Reviewed by: JimJag, Madhu

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@100081 13f79535-47bb-0310-9956-ffa450edef68

src/CHANGES
src/os/unix/os.c

index 3d1cb8d8040d18ffb05bef85993101b99dd434c1..8892e0c15575611803f017ec2bca5f75c678ba65 100644 (file)
@@ -1,5 +1,10 @@
 Changes with Apache 1.3.28
 
+  *) Removed BIND_NOSTART from HP/UX shl_load() logic for loadable
+     Apache modules, so that statics are initialized when the module
+     is loaded (especially critical for c++ modules on HPUX.)
+     [William Rowe, Noah Arliss <narliss@netegrity.com>]
+
   *) Win32 build system changes; always recompile buildmark.c (used for
      Apache -v 'server built' messages) even when Apache is built from
      within the IDE; build test_char.h and uri_delims.h from within the
index aa259a14b2795faf19f4e878a800f95b79b9d923..b50134f82d2ab7df9e02ab34fbcca1939d4fe62c 100644 (file)
@@ -102,7 +102,7 @@ void *ap_os_dso_load(const char *path)
 {
 #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)