Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 75835 invoked by uid 500); 28 May 2003 23:03:45 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 75824 invoked by uid 500); 28 May 2003 23:03:44 -0000 Delivered-To: apmail-apache-1.3-cvs@apache.org Date: 28 May 2003 23:03:43 -0000 Message-ID: <20030528230343.31313.qmail@icarus.apache.org> From: wrowe@apache.org To: apache-1.3-cvs@apache.org Subject: cvs commit: apache-1.3/src/os/unix os.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N wrowe 2003/05/28 16:03:43 Modified: src CHANGES src/os/unix os.c Log: *) 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 ] Reviewed by: JimJag, Madhu Revision Changes Path 1.1896 +5 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1895 retrieving revision 1.1896 diff -u -r1.1895 -r1.1896 --- CHANGES 28 May 2003 20:49:20 -0000 1.1895 +++ CHANGES 28 May 2003 23:03:39 -0000 1.1896 @@ -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 ] + *) 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 1.27 +1 -1 apache-1.3/src/os/unix/os.c Index: os.c =================================================================== RCS file: /home/cvs/apache-1.3/src/os/unix/os.c,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- os.c 3 Oct 2002 19:58:09 -0000 1.26 +++ os.c 28 May 2003 23:03:43 -0000 1.27 @@ -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)