You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by BugRat Mail System <to...@cortexity.com> on 2000/08/28 20:56:40 UTC

BugRat Report #45 has been filed.

Bug report #45 has just been filed.

You can view the report at the following URL:

   <http://znutar.cortexity.com:8888/BugRatViewer/ShowReport/45>

REPORT #45 Details.

Project: Tomcat
Category: Bug Report
SubCategory: New Bug Report
Class: swbug
State: received
Priority: high
Severity: serious
Confidence: public
Environment: 
   Release: tomcat 3.1
   JVM Release: 1.3.0
   Operating System: Solaris 2.6
   OS Release: SunOS 5.6 Generic_105181-14
   Platform: Unix

Synopsis: 
mod_jserv missing jserv_pool

Description:
Build mod_jserv with apxs from apache 3.1.12. When loading from 
libexec, following error encountered:
bin/apachectl start
Syntax error on line 13 of /opt/jakarta/build/tomcat/conf/tomcat.conf:
Cannot load /opt/apache/libexec/mod_jserv.so into server: ld.so.1: /opt/apache/bin/httpd: fatal: relocation error: file /opt/apache/libexec/mod_jserv.so: symbol jserv_pool: referenced symbol not found
bin/apachectl start: httpd could not be started

greping *.c in native/jserv, the following modules define jserv_pool:


jserv_status.c:    jserv_status_pool=ap_make_sub_pool(jserv_pool);
jserv_wrapper.c:        wrapper_pool=ap_make_sub_pool(jserv_pool);
jserv_wrapper.c:    jserv_pool=ap_make_sub_pool(NULL);
jserv_wrapper.c:    cfg=(jserv_config *)ap_pcalloc(jserv_pool,sizeof(jserv_config));

Where can I get jserv_pool?