diff options
author | Jeff Trawick <trawick@apache.org> | 2013-08-31 15:19:16 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2013-08-31 15:19:16 +0200 |
commit | 1ca9848f2d322f677d470abefe88799d54e00d2c (patch) | |
tree | 84211b41a525a43bd1cab81c57bd62fe65b1d884 /README.cmake | |
parent | add option EXTRA_INCLUDE_DIRS for pointing to outside directories (diff) | |
download | apache2-1ca9848f2d322f677d470abefe88799d54e00d2c.tar.xz apache2-1ca9848f2d322f677d470abefe88799d54e00d2c.zip |
Simplify -DENABLE_MOD_foo to -DENABLE_FOO
Improve display of module selections at end of configuration
Zap an unused variable
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1519179 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'README.cmake')
-rw-r--r-- | README.cmake | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/README.cmake b/README.cmake index db9b970e38..9395ba14e8 100644 --- a/README.cmake +++ b/README.cmake @@ -76,7 +76,7 @@ How to build -DPCRE_LIBRARIES=d:/path/to/pcreinst/lib/pcre[d].lib -DAPR_INCLUDE_DIR=d:/path/to/aprinst/include -DAPR_LIBRARIES="d:/path/to/aprinst/lib/libapr-1.lib;d:/path/to/aprinst/lib/libaprutil-1.lib" - -DENABLE_MOD_foo=A|I|O|a|i + -DENABLE_foo=A|I|O|a|i d:/path/to/httpdsource Alternately, you can use the cmake-gui and update settings in the GUI. @@ -105,7 +105,7 @@ How to build RELWITHDEBINFO, and MINSIZEREL Other backends make have other selections. - ENABLE_MOD_foo: + ENABLE_foo: Each module has a default setting which can be overridden with one of the following values: A build and Activate module @@ -117,8 +117,8 @@ How to build available; if prereqs are unavailable, don't build it O Omit module completely - Examples: -DENABLE_MOD_ACCESS_COMPAT=O - -DENABLE_MOD_PROXY_HTML=i + Examples: -DENABLE_ACCESS_COMPAT=O + -DENABLE_PROXY_HTML=i WITH_MODULES: Comma-separated paths to single file modules to statically link into |