https://issues.apache.org/bugzilla/show_bug.cgi?id=46803

           Summary: Configuration fix for jsvc daemon
           Product: Tomcat 6
           Version: 6.0.18
          Platform: Other
        OS/Version: AIX
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Catalina
        AssignedTo: dev@tomcat.apache.org
        ReportedBy: jtrim...@cc.ysu.edu


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.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to