I am trying to add mod-ssl to our Apache 1.3.9 server.  We are 
running Solaris 7.  I have followed the instructions in the 
mod-ssl INSTALL as closely as I can, but when I finish and try 
"apachectl configtest", I get a long series of warnings (I think
one for each DSO module) of the form:

[Std. format timestamp] [warn] Loaded DSO libexec/*.so uses plain
Apache 1.3 DSO, this module might crash under EAPI!

(for example:
[Tue Nov 16 11:25:01 1999] [warn] Loaded DSO
libexec/mod_mime_magic.so
uses plain Apache 1.3 DSO, this module might crash under EAPI!
)

My process has been:

(1) Configure and build RSAref library:

      $ cd rsaref-2.0
      $ cp -rp install/unix local
      $ cd local

    I had to modify makefile to use gcc, then continued with:

      $ make
      $ mv rsaref.a librsaref.a
      $ cd ../..

(2) Configure and build openssl library:
     $ cd openssl-0.9.4
     $ sh config \
            -L`pwd`/../rsaref-2.0/local/ rsaref \
            -fPIC
     $ make
     $ make test
     $ cd ..

(3) Configure and build the MM Shared Memory library:
     $ cd mm-1.0.12
     $ ./configure --disable-shared
     $ make
     $ cd ..

(4) Configure and build Apache.  I use a script called
    configure.shaman to make sure that this process is consistent
    (I've done it several times).  It contains:

------------------Script starts here----------------------------
#!/bin/sh

CC="gcc" OPTIM="-O2" SSL_BASE=../openssl-0.9.4 \
RSA_BASE=../rsaref-2.0/local \
EAPI_MM=../mm-1.0.12 \
./configure --prefix=/usr/local/apache \
            --enable-module=ssl \
            --enable-shared=ssl \
            --enable-module=most \
            --enable-shared=max \
            --enable-suexec \
            --suexec-caller=nobody \
            --suexec-uidmin=200 \
            --suexec-gidmin=10 \
            --suexec-safepath="/bin:/usr/bin:/usr/local/bin"
make
make certificate
make install
----------------Script ends here--------------------------------

I've been making the test "snake oil" certificate.  I've noticed no
failures or error reports during any of the makes or configs.  -DEAPI
and -DEAPI_MM were included in every compile (I will include a capture
of the configure.shaman script execution in a followup message for
details).  After this process completes, I try "apachectl configtest",
and get the warnings listed above.  I've got to get this working ASAP,
as part of a grant implementation, so if anyone can help, I would really
appreciate it.  Thanks.

                                ---- Troy ----

______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to