On Tue, Nov 03, 1998, John Leveron wrote:

> I know this has been asked before, but for compiling:
> 
> Apache 1.3.3
> mod_ssl mod_ssl-2.0.13 (or 14, now) -1.3.3
> mod_perl-1.16
> 
> What are the proper compile steps (for a RH 5.1 x86 system)?  I seem to
> (vaguely) remember something about order of compilation being important.

Ops, did you missed the step-by-step list at the end of the INSTALL file,
John? Or is this list still not exactly what you want? Do we have to enhance
it in some way? I append you the steps below...

                                       Ralf S. Engelschall
                                       [EMAIL PROTECTED]
                                       www.engelschall.com
  
  o Apache + mod_ssl/SSLeay + mod_perl/Perl
    ---------------------------------------

    Prerequisites:
      o Apache should be installed to /path/to/apache
      o Perl is installed and `perl' is in $PATH
      o SSLeay is installed under /path/to/ssleay
      o RSAref have not be used

    Steps:

    #   extract the packages
    $ gzip -d -c apache_1.3.x.tar.gz | tar xvf -
    $ gzip -d -c mod_ssl-2.0.x-1.3.x.tar.gz | tar xvf -
    $ gzip -d -c mod_perl-1.xx.tar.gz | tar xvf -

    #   apply mod_ssl to Apache source tree
    $ cd mod_ssl-2.0.x-1.3.x
    $ ./configure
          --with-apache=../apache_1.3.x
    $ cd ..

    #   apply mod_perl to Apache source tree
    #   and build/install the Perl-side of mod_perl
    $ cd mod_perl-1.xx
    $ perl Makefile.PL
          EVERYTHING=1
          APACHE_SRC=../apache_1.3.x/src
          USE_APACI=1
          PREP_HTTPD=1 
          DO_HTTPD=1
    $ make
    $ make install
    $ cd ..

    #   build/install Apache with mod_ssl and mod_perl
    $ cd apache_1.3.x
    $ SSL_BASE=/path/to/ssleay 
      ./configure
          --prefix=/path/to/apache
          --enable-module=ssl
          --activate-module=src/modules/perl/libperl.a
          --enable-module=perl
    $ make 
    $ make certificate
    $ make install
    $ cd ..

    #   cleanup after work
    $ rm -rf mod_perl-1.xx
    $ rm -rf mod_ssl-2.0.x-1.3.x
    $ rm -rf apache_1.3.x

______________________________________________________________________
Apache Interface to SSLeay (mod_ssl)   www.engelschall.com/sw/mod_ssl/
Official Support Mailing List               [EMAIL PROTECTED]
Automated List Manager                       [EMAIL PROTECTED]

Reply via email to