From 49de976f57182d44bba6bfbe1051a6bdd69a16b5 Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Thu, 25 Mar 2010 13:00:37 +0000 Subject: [PATCH] My mistake. --enaable-rewrite=shared is in fact valid syntax, even though ./configure --help doesn't mention it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@927376 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/install.xml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/manual/install.xml b/docs/manual/install.xml index 723ae6cc31..94a6c71b98 100644 --- a/docs/manual/install.xml +++ b/docs/manual/install.xml @@ -234,7 +234,7 @@ $ tar xvf httpd-NN.tar to a dash. You can also choose to compile modules as shared objects (DSOs) -- which can be loaded or unloaded at runtime -- by using the option - --enable-mods-shared. Similarly, you can + --enable-module=shared. Similarly, you can disable Base modules with the --disable-module option. Be careful when using these options, since configure cannot warn you @@ -259,9 +259,8 @@ $ tar xvf httpd-NN.tar $ CC="pgcc" CFLAGS="-O2" \
./configure --prefix=/sw/pkg/apache \
- --enable-rewrite \
- --enable-speling \
- --enable-mods-shared="rewrite speling" + --enable-rewrite=shared \
+ --enable-speling=shared

When configure is run it will take several minutes to -- 2.50.1