rse         98/05/30 08:25:00

  Modified:    .        README.configure
  Log:
  Just minor tweaks to avoid changing the stuff for every release.
  
  Revision  Changes    Path
  1.12      +23 -11    apache-1.3/README.configure
  
  Index: README.configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/README.configure,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- README.configure  1998/05/22 07:07:43     1.11
  +++ README.configure  1998/05/30 15:24:59     1.12
  @@ -13,7 +13,7 @@
     The basic goal is to provide the following commonly known and expected
     procedure for out-of-the-box building and installing a package like Apache:
   
  -    $ gunzip <apache-1.3.0.tar.gz | tar xvf -
  +    $ gunzip <apache-1.3.X.tar.gz | tar xvf -
       $ ./configure --prefix=PREFIX [...]
       $ make
       $ make install
  @@ -208,10 +208,10 @@
     mod_perl-1.XX.tar.gz can be found on http://perl.apache.org/src/. Here is
     how you can build and install Apache with mod_perl:
   
  -    $ gunzip <apache_1.3.tar.gz | tar xvf -
  -    $ gunzip <mod_perl_1.XX.tar.gz | tar xvf -
  +    $ gunzip <apache_1.3.X.tar.gz | tar xvf -
  +    $ gunzip <mod_perl-1.XX.tar.gz | tar xvf -
       $ cd mod_perl-1.XX
  -    $ perl Makefile.PL APACHE_SRC=../apache_1.3/src \
  +    $ perl Makefile.PL APACHE_SRC=../apache_1.3.X/src \
                          DO_HTTPD=1 USE_APACI=1 \
                          [EVERYTHING=1 ...]
       $ make
  @@ -220,7 +220,7 @@
       [optionally you now have the chance to prepare or add more 
        third-party modules to the Apache source tree]
   
  -    $ cd ../apache-1.3
  +    $ cd ../apache-1.3.X
       $ ./configure --prefix=/path/to/apache \
                     --activate-module=src/modules/perl/libperl.a \
                     [--enable-shared=perl]
  @@ -236,13 +236,19 @@
   
     1. How you can install Apache with a statically linked PHP:
   
  -    $ cd apache-1.3
  +    $ gunzip <apache_1.3.X.tar.gz | tar xvf -
  +    $ gunzip <php-3.0.tar.gz | tar xvf -
  +    $ cd apache-1.3.X
       $ ./configure --prefix=/path/to/apache
       $ cd ../php-3.0
  -    $ ./configure --with-apache=../apache-1.3
  +    $ ./configure --with-apache=../apache-1.3.X
       $ make
       $ make install
  -    $ cd ../apache-1.3
  +
  +    [optionally you now have the chance to prepare or add more 
  +     third-party modules to the Apache source tree]
  +
  +    $ cd ../apache-1.3.X
       $ ./configure --prefix=/path/to/apache \
                     --activate-module=src/modules/php3/libphp3.a
       $ make 
  @@ -250,13 +256,19 @@
       
     2. How you can install Apache with a dynamically linked PHP:
   
  -    $ cd apache-1.3
  +    $ gunzip <apache_1.3.X.tar.gz | tar xvf -
  +    $ gunzip <php-3.0.tar.gz | tar xvf -
  +    $ cd apache-1.3.X
       $ ./configure --prefix=/path/to/apache
       $ cd ../php-3.0
  -    $ ./configure --with-shared-apache=../apache-1.3
  +    $ ./configure --with-shared-apache=../apache-1.3.X
       $ make
       $ make install
  -    $ cd ../apache-1.3
  +
  +    [optionally you now have the chance to prepare or add more 
  +     third-party modules to the Apache source tree]
  +
  +    $ cd ../apache-1.3.X
       $ ./configure --prefix=/path/to/apache \
                     --activate-module=src/modules/php3/libphp3.a \
                     --enable-shared=php3
  
  
  

Reply via email to