Jeffrey Bonevich wrote:
> (sorry if this has come through already, but I did not see the post on 
> the mail archive, so I done went and subscribed to the list to resend it)
> 
> 
> For those of you who do not regularly cruise the tomcat-user postings
> (you all do that regularly, right? ;-), a number of us in the user
> community have been struggling with getting Tomcat 4 integrated with
> Apach 2 using mod_webapp.  I and a number of other users found a number
> of problems in the build process for mod_webapp - biggest of which is
> that the Makefile does not actually produce a DSO module (i.e.
> mod_webapp.so) for Apache 2.  We figured out that the following will do
> so (after running configure and make):
> 
> cd ${LOCATION_OF_CONNECTOR_SRC}/webapp/lib
> gcc -shared -o libwebapp.so *.lo

You build a libwebapp.so

> cd ../apache-2.0
> ${APACHE_HOME}/build/libtool --silent --mode=link \
>    gcc -shared -o mod_webapp.so -rpath ${APACHE_HOME}/modules \
>    -module -avoid-version -I../include  -L../lib \
>    -dlopen ../lib/libwebapp.la  mod_webapp.lo

And you use libwebapp.la ... Are you sure that it does what you except?
Could you send me the libwebapp.la and the the result of libtool --version?

> cp mod_webapp.so ${APACHE_HOME}/modules/
> 
> I have included a brief HOWTO that I compiled during the process of
> figuring this all out.  If more information is needed, please let me
> know directly to my email (I am not presently on the dev mailing list
> distribution).
> 
> Thanx!
> 
> jeff
> 
> 
> ------------------------------------------------------------------------
> 
> --
> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to