diff options
author | Erik Abele <erikabele@apache.org> | 2005-01-08 02:59:45 +0100 |
---|---|---|
committer | Erik Abele <erikabele@apache.org> | 2005-01-08 02:59:45 +0100 |
commit | b13c96a78592ef15f2991e3a9c4399fe34b1421c (patch) | |
tree | 105145a8e1c12ad71088ac076bd03038919eb15d /docs/manual/programs/configure.xml | |
parent | For a static module, use a filename with a lib prefix, (diff) | |
download | apache2-b13c96a78592ef15f2991e3a9c4399fe34b1421c.tar.xz apache2-b13c96a78592ef15f2991e3a9c4399fe34b1421c.zip |
--with-module can now take more than one module to be statically
linked: --with-module=<modtype>:<modfile>,<modtype>:<modfile>,...
If the <modtype>-subdirectory doesn't exist it will be created and
populated with a standard Makefile.in.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@124600 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/programs/configure.xml')
-rw-r--r-- | docs/manual/programs/configure.xml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/docs/manual/programs/configure.xml b/docs/manual/programs/configure.xml index ab3c7c0717..87c532ddc4 100644 --- a/docs/manual/programs/configure.xml +++ b/docs/manual/programs/configure.xml @@ -636,16 +636,17 @@ modules use the following options:</p> <dl> - <dt><code>--with-module=<var>module-type</var>:<var>module-file</var> - </code></dt> - <dd><p>Add a third-party module to the list of statically linked + <dt><code>--with-module=<var>module-type</var>:<var>module-file</var>[, + <var>module-type</var>:<var>module-file</var>]</code></dt> + <dd><p>Add one or more third-party modules to the list of statically linked modules. The module source file <code><var>module-file</var></code> will be searched in the <code>modules/<var>module-type</var></code> - subdirectory of your Apache HTTP server source tree so it has to be - placed there before. If it is not found here - <code>configure</code> is considering <var>module-file</var> to be + subdirectory of your Apache HTTP server source tree. If it is not found + there <code>configure</code> is considering <var>module-file</var> to be an absolute file path and tries to copy the source file into the - <var>module-type</var> subdirectory.</p> + <var>module-type</var> subdirectory. If the subdirectory doesn't + exist it will be created and populated with a standard + <code>Makefile.in</code>.</p> <p>This option is useful to add small external modules consisting of one source file. For more complex modules you should read the vendor's documentation.</p> |