Bug 46803 - Configuration fix for jsvc daemon
Summary: Configuration fix for jsvc daemon
Status: RESOLVED FIXED
Alias: None
Product: Tomcat 6
Classification: Unclassified
Component: Catalina (show other bugs)
Version: 6.0.18
Hardware: Other AIX
: P2 normal (vote)
Target Milestone: default
Assignee: Tomcat Developers Mailing List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-03-05 07:20 UTC by Jeffrey Trimble
Modified: 2009-03-07 07:43 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jeffrey Trimble 2009-03-05 07:20:24 UTC
The configure script does not take into account for AIX5.3 servers.  After three days of looking on the web, the following patch fixes this problem (at least for tomcat 6 implementation of jsvc daemon):

In the stanza:

$as_echo_n "checking C flags dependant on host system type... " >&6; }

  case $host_os in

-----

+aix5*)
+   CFLAGS="$CFLAGS -DOS_AIX -DDSO_DLFCN"
+  LDFLAGS="$LDFLAGS -ldl"
+   ;;


This seems to have fix the configure issue.  JSVC runs the daemon normally, now.
Comment 1 Mark Thomas 2009-03-07 07:43:01 UTC
jsvc is part of Commons Daemon. I created
https://issues.apache.org/jira/browse/DAEMON-123 to track this.

Thanks for the patch. I have applied it and it will be included in the next release.