rse 99/03/10 03:53:05
Modified: src CHANGES
. INSTALL configure
Log:
Make documentation and error messages of APACI's --activate-module=FILE
option more clear.
Submitted by: Jan Wolter <[EMAIL PROTECTED]>
PR: 3995
Revision Changes Path
1.1273 +3 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1272
retrieving revision 1.1273
diff -u -r1.1272 -r1.1273
--- CHANGES 1999/03/10 11:37:50 1.1272
+++ CHANGES 1999/03/10 11:52:54 1.1273
@@ -1,5 +1,8 @@
Changes with Apache 1.3.5
+ *) Make documentation and error messages of APACI's --activate-module=FILE
+ option more clear. [Jan Wolter <[EMAIL PROTECTED]>] PR#3995
+
*) Fix the gcc version check (for enabling the `inline' facility) to
really support all future gcc versions >= 2.7 until we know more.
[John Tobey <[EMAIL PROTECTED]>] PR#3983
1.54 +9 -8 apache-1.3/INSTALL
Index: INSTALL
===================================================================
RCS file: /home/cvs/apache-1.3/INSTALL,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- INSTALL 1999/02/11 19:59:51 1.53
+++ INSTALL 1999/03/10 11:52:59 1.54
@@ -238,14 +238,15 @@
to automatically include a simple third-party module to the Apache build
process.
- Use the --activate-module=FILE option to on-the-fly add an entry for an
- existing module source file in the configuration file. FILE has to be a
- valid path under src/modules/ of the Apache source tree, i.e. it already
- has to be copied to this location before. The module is automatically
- enabled. Use this option to automatically include a complex third-party
- module to the Apache build process where, for instance a module like
- mod_perl or mod_php3 consisting of more than one file which are created
by
- a third-party configuration scheme.
+ Use the --activate-module=FILE option to add an entry for an existing
+ module source file into the configuration file on-the-fly. FILE has to
be
+ a valid path beginning with "src/modules/", and the file has to have
been
+ copied to this location in the Apache source tree before running
+ configure. The module is automatically enabled. Use this option to
+ automatically include a complex third-party module to the Apache build
+ process where, for instance a module like mod_perl or mod_php3
consisting
+ of more than one file which are created by a third-party configuration
+ scheme.
Use the --enable-module=NAME and --disable-module=NAME options to enable
or disable a particular already distributed module from the Apache
1.76 +1 -1 apache-1.3/configure
Index: configure
===================================================================
RCS file: /home/cvs/apache-1.3/configure,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- configure 1999/03/10 11:22:11 1.75
+++ configure 1999/03/10 11:53:02 1.76
@@ -617,7 +617,7 @@
file="$apc_optarg"
case $file in
src/modules/* ) ;;
- *) echo "configure:Error: Module source already has to stay
below src/modules/ to be activated" 1>&2
+ *) echo "configure:Error: Module source already has to be
below src/modules/ to be activated" 1>&2
exit 1
;;
esac