On 03.02.2009 13:29, Shweta Parakh -X (shparakh - Infosys at Cisco) wrote:
I am trying to build mod_jk for Apache 2.2.11 and Tomcat 4.1.39 on
Solaris platform

1. Downloaded mod_jk (version 1.2.27) source from
http://tomcat.apache.org/download-connectors.cgi
     and is kept in /opt/mod_jk-1.2.27 directory

2. Installed apache2 in /opt/apache-2.2.11 directory.

3. I am able to configure mod_jk using below command to generate
Makefile
./configure --with-apxs2=/opt/apache-2.2.11/usr/local/apache2/bin/apxs
--with-java-home=/opt/support/java/Java1.6.0_05/bin/java
--with-apache=/opt/apache 2.2.11/usr/local/apache2

There is no switch "--with-apxs2" in mod_jk's configure.

Use:

./configure --with-apxs=/opt/apache-2.2.11/usr/local/apache2/bin/apxs

and forget about the other options. "--with-apache" tries to build a static module and likely you don't want that (I didn't try for a long time).

Your path looks *very* strange. Note that you can't simply move some Apache httpd build from one directory to another and expect it to work. If someone build your httpd for /usr/local, in general you can't simply install it into /opt/apache-2.2.11/usr/local. A couple of files will need to be adopted to the new path. Your mileage may vary.

4. I could see 3 Makefiles are generated (Makefile, Makefile.in,
Makefile.am) in /opt/mod_jk-1.2.27/native

But I am getting below error while running make :
make[1]: *** [lib_jk.la] Error 1
make[1]: Leaving directory `/opt/mod_jk-1.2.27/native/apache-2.0'
make: *** [all-recursive] Error 1

5. libtool is being given below mentioned arguments :
./libtool --mode=link gcc -o lib_jk.la -static -rpath
/opt/apache-2.2.11/usr/local/apache2/modules/jk mod_jk.lo

It shouldn't use ./libtool for Apache 2.x, instead the libtool in your Apache configuration detected by "apxs -q LIBTOOL".

Regards,

Rainer

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

Reply via email to