From 4d24c7b780df088f7ac011facd9a3a98e7d8d08a Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Thu, 25 Mar 2010 13:01:48 +0000 Subject: [PATCH] Reverts earlier patch. The --enable-MODULE=shared syntax is valid. Need to fix ./configure --help output instead. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@927377 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/install.html.en | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/manual/install.html.en b/docs/manual/install.html.en index 28e6836aa0..ab38294dfa 100644 --- a/docs/manual/install.html.en +++ b/docs/manual/install.html.en @@ -231,7 +231,7 @@ $ tar xvf httpd-NN.tar mod_ string removed and with any underscore converted 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 @@ -256,9 +256,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.40.0