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
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
{
#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)