Jason Terando at [EMAIL PROTECTED] wrote:
> (sorry about the double post, I forgot to remove cert from from first one)
> I've done the following in trying to get Apache + Tomcat working together:
> 1) Downloaded Tomcat 4.0.1 binaries
> Status: running, examples work
> 2) Downloaded Apache 1.3.22 source, compiled via following:
>
> configure --prefix=/usr/local/apache --enabled-shared=max
> make
> make install
>
> Status: Apache is installed and running
> 3) Downloaded webapp-module-1.0-tc40-src.tar.gz
>
> configure --with-apxs=/usr/local/apache/bin/apxs (runs and wishes me good
> luck on make)
> make
> Make dies when it calls apxs, which is complaining "no config variable
> LDFLAGS_SHLIB"
> I poked around on google and found somebody else who ran into this but
> couldn't find the response. Can anybody tell me what I missed/messed up?
> Thanks!
There's a mistake in your apache configuration options:
./configure --prefix=/usr/local/apache \
--enable-module=so \
....
(If you don't enable the "so" module, you won't be able to compile other
modules as DSO)...
Pier