ok, I know I am off the subject here, and I apologize, I am hoping somebody can help for I think I have exhausted all possible resources for help without actually asking a question here.  I've been working on this issue for over a week. 
 
I'm trying to install apache with mod_ssl and mm-1.0.12
 
here is what i've done so far:
    

     # tar –zxf open_ssl.0.9.5.tar.gz 
     # ./config
     # make
     # make test
     # make install

     # tar –zxvf /path/to/rsaref-2.0.tar.gz
     # cp -rp install/unix local
     # cd local
     # make
     # mv rsaref.a librsaref.a (just renameing it)

     # cd mm-1.0.12
     # ./configure --disable-shared
     # make
(I've tried the newer version of mm with no luck 1.1.3 and I've tried actually make install on both of them as well, which I shouldn't have to if I reference them like i do below)
 
created this config script and ran it for mod_ssl:
     #!/bin/sh
     ./configure --with-apache=/usr/src/apache/apache_1.3.12 \
          --with-ssl \ --with-rsa=../depend/rsaref-2.0/local \
          --with-mm=../depend/mm-1.0.12 \
          --enable-shared=ssl
 
To this point I get no errors.
Here is the configure script I run to get apache configured:     
     #!/bin/sh
     SSL_BASE=../modules/mod_ssl/depend/openssl-0.9.5 \
     RSA_BASE=../modules/mod_ssl/depend/rsaref-2.0/local \
     EAPI_MM=/usr/src/apache/modules/mod_ssl/depend/mm-1.0.12 \
     ./configure \

          --enable-module=ssl \
          --enable-module=proxy \
          --enable-shared=proxy \
          --enable-module=rewrite \
          --enable-shared=rewrite \
          --prefix=/usr/local/apache-1.3.12 \
          --enable-shared=ssl \
          --enable-rule=EAPI \
          --enable-rule=SHARED_CORE \
          --enable-rule=SHARED_CHAIN \
          --enable-module=so \
          --activate-module=src/modules/frontpage/mod_frontpage.o \
          --fpexec-caller=nobody \
          --fpexec-uidmin=99 \
          --fpexec-gidmin=99 \
          --fpexec-fpuser=bin \
          --fpexec-fpgroup=bin \
          --server-uid=nobody \
         
--server-gid=nobody

Here is my output:
Configuring for Apache, Version 1.3.12
 + using installation path layout: Apache (config.layout)
 + activated frontpage module (modules/frontpage/mod_frontpage.o)
Creating Makefile
Creating Configuration.apaci in src
fgrep: /usr/src/apache/modules/mod_ssl/depend/mm-1.0.12/.libs: Is a directory
fgrep: : No such file or directory
fgrep: /usr/src/apache/modules/mod_ssl/depend/mm-1.0.12/.libs: Is a directory
Creating Makefile in src
 + configured for Linux platform
 + setting C compiler to gcc
 + setting C pre-processor to gcc -E
 + checking for system header files
 + adding selected modules
    o rewrite_module uses ConfigStart/End
 + using -lndbm for DBM support
      enabling DBM support for mod_rewrite
    o ssl_module uses ConfigStart/End
      + SSL interface: mod_ssl/2.6.6
      + SSL interface build type: DSO
      + SSL interface compatibility: enabled
      + SSL interface experimental code: disabled
      + SSL interface conservative code: disabled
      + SSL interface vendor extensions: disabled
      + SSL interface plugin: Built-in SDBM
      + SSL library path: /usr/src/apache/modules/mod_ssl/depend/openssl-0.9.5
      + SSL library version: OpenSSL 0.9.5 28 Feb 2000
      + SSL library type: source tree only (stand-alone)
      + SSL library plugin mode: RSAref (explicitly configured)
      + SSL library plugin path: /usr/src/apache/modules/mod_ssl/depend/rsaref-2.0/local/librsaref.a
 + enabling Extended API (EAPI)
   using MM library: /usr/src/apache/modules/mod_ssl/depend/mm-1.0.12 (source-tree only)
 + enabling DSO files to be linked against others
 + enabling generation of Apache core as DSO
 + using -ldl for vendor DSO support
 + checking sizeof various data types
 + doing sanity check on compiler and options
Creating Makefile in src/support
Creating Makefile in src/regex
Creating Makefile in src/os/unix
Creating Makefile in src/ap
Creating Makefile in src/main
Creating Makefile in src/lib/expat-lite
Creating Makefile in src/modules/standard
Creating Makefile in src/modules/proxy
Creating Makefile in src/modules/ssl
Creating Makefile in src/modules/frontpage
Notice the fgrep errors (three of them) talking about mm?
Why is this happening?
TRUST ME, that is the directory to mm!
Everything goes on to compile and it seems to work.  However, I don't know how to test if mm is working or not.
 
Anyhelp would be most appreciated.  In fact if you could even point me to where I may get some help on mm that would be great too.  I have not found anyplace.  Thankyou for taking the time to help me, I appreciate it. 
 
Regards,
Jeff

Reply via email to