coar 98/09/28 08:46:40
Modified: . README.configure
Log:
Correct some hyphen/underbar confusions.
PR: 3075
Submitted by: Ryan Bloom <rbbloom@US.IBM.Com>
Reviewed by: Ken Coar
Revision Changes Path
1.14 +8 -8 apache-1.3/README.configure
Index: README.configure
===================================================================
RCS file: /export/home/cvs/apache-1.3/README.configure,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- README.configure 1998/06/28 15:42:21 1.13
+++ README.configure 1998/09/28 15:46:39 1.14
@@ -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.X.tar.gz | tar xvf -
+ $ gunzip <apache_1.3.X.tar.gz | tar xvf -
$ ./configure --prefix=PREFIX [...]
$ make
$ make install
@@ -224,7 +224,7 @@
[optionally you now have the chance to prepare or add more
third-party modules to the Apache source tree]
- $ cd ../apache-1.3.X
+ $ cd ../apache_1.3.X
$ ./configure --prefix=/path/to/apache \
--activate-module=src/modules/perl/libperl.a \
[--enable-shared=perl]
@@ -242,17 +242,17 @@
$ gunzip <apache_1.3.X.tar.gz | tar xvf -
$ gunzip <php-3.0.tar.gz | tar xvf -
- $ cd apache-1.3.X
+ $ cd apache_1.3.X
$ ./configure --prefix=/path/to/apache
$ cd ../php-3.0
- $ ./configure --with-apache=../apache-1.3.X
+ $ ./configure --with-apache=../apache_1.3.X
$ make
$ make install
[optionally you now have the chance to prepare or add more
third-party modules to the Apache source tree]
- $ cd ../apache-1.3.X
+ $ cd ../apache_1.3.X
$ ./configure --prefix=/path/to/apache \
--activate-module=src/modules/php3/libphp3.a
$ make
@@ -262,17 +262,17 @@
$ gunzip <apache_1.3.X.tar.gz | tar xvf -
$ gunzip <php-3.0.tar.gz | tar xvf -
- $ cd apache-1.3.X
+ $ cd apache_1.3.X
$ ./configure --prefix=/path/to/apache
$ cd ../php-3.0
- $ ./configure --with-shared-apache=../apache-1.3.X
+ $ ./configure --with-shared-apache=../apache_1.3.X
$ make
$ make install
[optionally you now have the chance to prepare or add more
third-party modules to the Apache source tree]
- $ cd ../apache-1.3.X
+ $ cd ../apache_1.3.X
$ ./configure --prefix=/path/to/apache \
--activate-module=src/modules/php3/libphp3.a \
--enable-shared=php3
|