]> granicus.if.org Git - apache/blob - docs/manual/programs/configure.xml
Add APR to the glossary and link it in where appropriate.
[apache] / docs / manual / programs / configure.xml
1 <?xml version='1.0' encoding='UTF-8' ?>
2 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
3 <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
4 <!-- $LastChangedRevision$ -->
5
6 <!--
7  Copyright 2003-2005 The Apache Software Foundation or its licensors, as
8  applicable.
9
10  Licensed under the Apache License, Version 2.0 (the "License");
11  you may not use this file except in compliance with the License.
12  You may obtain a copy of the License at
13
14      http://www.apache.org/licenses/LICENSE-2.0
15
16  Unless required by applicable law or agreed to in writing, software
17  distributed under the License is distributed on an "AS IS" BASIS,
18  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  See the License for the specific language governing permissions and
20  limitations under the License.
21 -->
22
23 <manualpage metafile="configure.xml.meta">
24 <parentdocument href="./">Programs</parentdocument>
25
26   <title>configure - Configure the source tree</title>
27
28 <summary>
29     <p>The <code>configure</code> script configures the source tree
30     for compiling and installing the Apache HTTP Server on your
31     particular platform. Various options allow the compilation of a
32     server corresponding to your personal requirements.</p>
33
34     <p>This script, included in the root directory of the source
35     distribution, is for compilation on Unix and Unix-like systems
36     only. For other platforms, see the <a
37     href="../platform/">platform</a> documentation.</p> 
38 </summary>
39
40 <seealso><a href="../install.html">Compiling and Installing</a></seealso>
41
42 <section id="synopsis"><title>Synopsis</title>
43     <p>You should call the <code>configure</code> script from within the
44     root directory of the distribution.</p>
45
46     <p><code><strong>./configure</strong> [<var>OPTION</var>]...
47     [<var>VAR</var>=<var>VALUE</var>]...</code></p>
48
49     <p>To assign environment variables (e.g. <code>CC</code>,
50     <code>CFLAGS</code> ...), specify them as
51     <code><var>VAR</var>=<var>VALUE</var></code>. See <a href="#env">below</a>
52     for descriptions of some of the useful variables.</p>
53 </section>
54
55 <section id="options"><title>Options</title>
56   <ul>
57     <li><a href="#configurationoptions">Configuration options</a></li>
58     <li><a href="#installationdirectories">Installation directories</a></li>
59     <li><a href="#systemtypes">System types</a></li>
60     <li><a href="#optionalfeatures">Optional features</a></li>
61     <li><a href="#supportopt">Options for support programs</a></li>
62   </ul>
63
64   <section id="configurationoptions"><title>Configuration options</title>
65
66     <p>The following options influence the behavior of
67     <code>configure</code> itself.</p>
68
69     <dl>
70       <dt><code>-C</code></dt>
71       <dt><code>--config-cache</code></dt>
72       <dd>This is an alias for <code>--cache-file=config.cache</code></dd>
73
74       <dt><code>--cache-file=<var>FILE</var></code></dt>
75       <dd>The test results will be cached in file <var>FILE</var>.
76         This option is disabled by default.</dd>
77
78       <dt><code>-h</code></dt>
79       <dt><code>--help [short|recursive]</code></dt>
80       <dd>Output the help and exit. With the argument <code>short</code> only
81         options specific to this package will displayed. The argument
82         <code>recursive</code> displays the short help of all the included
83         packages.</dd>
84
85       <dt><code>-n</code></dt>
86       <dt><code>--no-create</code></dt>
87       <dd>The <code>configure</code> script is run normally but does
88         not create output files. This is useful to check the test results
89         before generating makefiles for compilation.</dd>
90
91       <dt><code>-q</code></dt>
92       <dt><code>--quiet</code></dt>
93       <dd>Do not print <code>checking ...</code> messages during the
94         configure process.</dd>
95
96       <dt><code>--srcdir=<var>DIR</var></code></dt>
97       <dd>Defines directory <var>DIR</var> to be the source file directory.
98         Default is the directory, where configure is located, or the parent
99         directory <code>..</code>.</dd>
100
101       <dt><code>--silent</code></dt>
102       <dd>Same as <code>--quiet</code></dd>
103
104       <dt>-V</dt>
105       <dt>--version</dt>
106       <dd>Display copyright information and exit.</dd>
107     </dl>
108   </section>
109
110   <section id="installationdirectories"><title>Installation 
111     directories</title>
112
113     <p>These options define the installation directory. The installation
114       tree depends on the selected layout.</p>
115
116     <dl>
117       <dt><code>--prefix=<var>PREFIX</var></code></dt>
118       <dd>Install architecture-independent files in <var>PREFIX</var>.
119         By default the installation directory is set to
120         <code>/usr/local/apache2</code>.</dd>
121
122       <dt><code>--exec-prefix=<var>EPREFIX</var></code></dt>
123       <dd>Install architecture-dependent files in <var>EPREFIX</var>.
124         By default the installation directory is set to the
125         <var>PREFIX</var> directory.</dd>
126     </dl>
127
128     <p>By default, <code>make install</code> will install all the files in
129       <code>/usr/local/apache2/bin</code>, <code>/usr/local/apache2/lib</code>
130       etc. You can specify an installation prefix other than
131       <code>/usr/local/apache2</code> using <code>--prefix</code>,
132       for instance <code>--prefix=$HOME</code>.</p>
133
134     <section id="layout"><title>Define a directory layout</title>
135       <dl>
136         <dt><code>--enable-layout=<var>LAYOUT</var></code></dt>
137         <dd>Configure the source code and build scripts to assume an
138           installation tree based on the layout <var>LAYOUT</var>. This allows
139           you to separately specify the locations for each type of file within
140           the Apache HTTP Server installation. The <code>config.layout</code>
141           file contains several example configurations, and you can also create
142           your own custom configuration following the examples. The different
143           layouts in this file are grouped into <code>&lt;Layout
144             FOO&gt;...&lt;/Layout&gt;</code> sections and referred to by name as
145           in <code>FOO</code>. The default layout is <code>Apache</code>.</dd>
146       </dl>
147     </section>
148
149     <section id="directoryfinetuning"><title>Fine tuning of the installation
150       directories</title>
151     
152       <p>For better control of the installation directories, use the options
153         below. Please note that the directory defaults are set by
154         <code>autoconf</code> and be overwritten by the corresponding layout
155         setting.</p>
156
157       <dl>
158         <!-- only apr-config and apu-config are installed at bindir.
159         everything else is stored at sbindir. ==> clarify/change this -->
160         <dt><code>--bindir=<var>DIR</var></code></dt>
161         <dd>Install user executables in <var>DIR</var>. The user executables
162           are supporting programs like <program>htpasswd</program>,
163           <program>dbmmanage</program>, etc. which are useful for site
164           administrators. By default <var>DIR</var> is set to
165           <code><var>EPREFIX</var>/bin</code>.</dd>
166
167         <dt><code>--datadir=<var>DIR</var></code></dt>
168         <dd>Install read-only architecture-independent data in <var>DIR</var>.
169           By default <code>datadir</code> is set to
170           <code><var>PREFIX</var>/share</code>. This option is offered by
171           <code>autoconf</code> and currently unused.</dd>
172
173         <dt><code>--includedir=<var>DIR</var></code></dt>
174         <dd>Install C header files in <var>DIR</var>. By default
175           <code>includedir</code> is set to
176           <code><var>EPREFIX</var>/include</code>.</dd>
177
178         <dt><code>--infodir=<var>DIR</var></code></dt>
179         <dd>Install info documentation in <var>DIR</var>.
180           By default <code>infodir</code> is set to
181           <code><var>PREFIX</var>/info</code>. This option is currently
182           unused.</dd>
183         
184         <dt><code>--libdir=<var>DIR</var></code></dt>
185         <dd>Install object code libraries in <var>DIR</var>. By default
186           <code>libdir</code> is set to
187           <code><var>EPREFIX</var>/lib</code>.</dd>
188
189         <dt><code>--libexecdir=<var>DIR</var></code></dt>
190         <dd>Install the program executables (i.e., shared modules) in
191           <var>DIR</var>. By default <code>libexecdir</code> is set to
192           <code><var>EPREFIX</var>/libexec</code>.</dd>
193
194         <dt><code>--localstatedir=<var>DIR</var></code></dt>
195         <dd>Install modifiable single-machine data in <var>DIR</var>.
196           By default <code>localstatedir</code> is set to
197           <code><var>PREFIX</var>/var</code>. This option is offered by
198           <code>autoconf</code> and currently unused.</dd>
199
200         <dt><code>--mandir=<var>DIR</var></code></dt>
201         <dd>Install the man documentation in <var>DIR</var>. By default 
202           <code>mandir</code> is set to
203           <code><var>EPREFIX</var>/man</code>.</dd>
204       
205         <dt><code>--oldincludedir=<var>DIR</var></code></dt>
206         <dd>Install C header files for non-gcc in <var>DIR</var>.
207           By default <code>oldincludedir</code> is set to
208           <code>/usr/include</code>. This option is offered by
209           <code>autoconf</code> and currently unused.</dd>
210         
211         <dt><code>--sbindir=<var>DIR</var></code></dt>
212         <dd>Install the system administrator executables in <var>DIR</var>.
213           Those are server programs like <program>httpd</program>,
214           <program>apachectl</program>, <program>suexec</program>, etc. which
215           are neccessary to run the Apache HTTP Server. By default
216           <code>sbindir</code> is set to
217           <code><var>EPREFIX</var>/sbin</code>.</dd>
218
219         <dt><code>--sharedstatedir=<var>DIR</var></code></dt>
220         <dd>Install modifiable architecture-independent data in <var>DIR</var>.
221           By default <code>sharedstatedir</code> is set to
222           <code><var>PREFIX</var>/com</code>. This option is offered by
223           <code>autoconf</code> and currently unused.</dd>
224
225         <dt><code>--sysconfdir=<var>DIR</var></code></dt>
226         <dd>Install read-only single-machine data like the server configuration
227           files <code>httpd.conf</code>, <code>mime.types</code>, etc. in
228           <var>DIR</var>. By default <code>sysconfdir</code> is set to
229           <code><var>PREFIX</var>/etc</code>.</dd>
230       </dl>        
231     </section>
232   </section>
233   
234   <section id="systemtypes"><title>System types</title>
235
236     <p>These options are used to cross-compile the Apache HTTP Server to run on
237       another system. In normal cases, when building and running the server on
238       the same system, these options are not used.</p>
239
240     <dl>
241       <dt><code>--build=<var>BUILD</var></code></dt>
242       <dd>Defines the system type of the system on which the tools are being
243         built. It defaults to the result of the script
244         <code>config.guess</code>.</dd>
245
246       <dt><code>--host=<var>HOST</var></code></dt>
247       <dd>Defines the system type of the system on which the server will run.
248         <var>HOST</var> defaults to <var>BUILD</var>.</dd>
249
250       <dt><code>--target=<var>TARGET</var></code></dt>
251       <dd>Configure for building compilers for the system type
252         <var>TARGET</var>. It defaults to <var>HOST</var>. This option is
253         offered by <code>autoconf</code> and not necessary for the Apache HTTP
254         Server.</dd>
255     </dl>
256   </section>
257
258   <section id="optionalfeatures"><title>Optional Features</title>
259
260     <p>These options are used to fine tune the features your HTTP server will
261       have.</p>
262
263     <section id="generaloptfeat"><title>General syntax</title>
264       <p>Generally you can use the following syntax to enable or disable a
265         feature:</p>
266
267       <dl>
268         <dt><code>--disable-<var>FEATURE</var></code></dt>
269         <dd>Do not include <var>FEATURE</var>. This is the same as
270           <code>--enable-<var>FEATURE</var>=no</code>.</dd>
271
272         <dt><code>--enable-<var>FEATURE</var>[=<var>ARG</var>]</code></dt>
273         <dd>Include <var>FEATURE</var>. The default value for <var>ARG</var> 
274           is <code>yes</code>.</dd>
275
276         <dt><code>--enable-<var>MODULE</var>=shared</code></dt>
277         <dd>The corresponding module will be build as DSO module.</dd>
278
279         <dt><code>--enable-<var>MODULE</var>=static</code></dt>
280         <dd>By default enabled modules are linked statically. You can force 
281           this explicitly.</dd>
282       </dl>
283
284       <note><title>Note</title>
285         <code>configure</code> will not complain about
286         <code>--enable-<var>foo</var></code> even if <var>foo</var> doesn't
287         exist, so you need to type carefully.
288       </note>
289     </section>
290
291     <!-- to do: add better enable-module descriptions and recommendations -->
292     <section id="enabledmodules"><title>Modules enabled by default</title>
293       <p>Some modules are compiled by default and have to be disabled
294         explicitly. Use the following options to remove discrete modules from
295         the compilation process.</p>
296         
297       <dl>
298         <dt><code>--disable-actions</code></dt>
299         <dd>Disable action triggering on requests, which is provided by
300           <module>mod_actions</module>.</dd>
301
302         <dt><code>--disable-alias</code></dt>
303         <dd>Disable the mapping of requests to different parts of the
304           filesystem, which is provided by <module>mod_alias</module>.</dd>
305
306         <dt><code>--disable-asis</code></dt>
307         <dd>Disable support for as-is filetypes, which is provided by
308           <module>mod_asis</module>.</dd>
309
310         <dt><code>--disable-auth</code></dt>
311         <dd>Disable user-based access control provided  by
312           <module>mod_auth</module>. This module provides for HTTP Basic
313           Authentication, where the usernames and passwords are stored in
314           plain text files.</dd>
315
316         <dt><code>--disable-autoindex</code></dt>
317         <dd>Disable the directory listing functionality provided by
318           <module>mod_autoindex</module>.</dd>
319
320         <dt><code>--disable-access</code></dt>
321         <dd>Disable host-based access control provided by
322           <module>mod_access</module>.</dd>
323
324         <dt><code>--disable-cgi</code></dt>
325         <dd><module>mod_cgi</module>, which provides support for CGI scripts,
326           is enabled by default when using a non-threaded MPM. Use this
327           option to disable CGI support.</dd>
328          
329         <dt><code>--disable-cgid</code></dt>
330         <dd>When using the threaded MPMs <module>worker</module> or
331           <module>perchild</module> support for CGI scripts is provided by
332           <module>mod_cgid</module> by default. To disable CGI support use
333           this option.</dd>
334
335         <dt><code>--disable-charset-lite</code></dt>
336         <dd>Disable character set translation provided by
337           <module>mod_charset_lite</module>. This module will be installed by
338           default only on EBCDIC systems.</dd>
339
340         <dt><code>--disable-dir</code></dt>
341         <dd>Disable directory request handling provided by
342           <module>mod_dir</module>.</dd>
343
344         <dt><code>--disable-env</code></dt>
345         <dd>Enable setting and clearing of environment variables, which is
346           provided by <module>mod_env</module>.</dd>
347
348         <!-- configure mentions enable-http, but disable-http would make much
349         more sense -->
350         <dt><code>--disable-http</code></dt>
351           <dd>Disable the HTTP protocol handling. The <code>http</code>
352             module is a basic one, enabling the server to function as an
353             HTTP server. It is only useful to disable it if you want to use
354             another protocol module instead. <strong>Don't disable this
355             module unless you are really sure what you are doing.</strong>
356             <br/>
357             Note: This module will always be linked statically.</dd> 
358
359         <dt><code>--disable-imagemap</code></dt>
360         <dd>Disable support for server based imagemaps, which provided by
361           <module>mod_imagemap</module>.</dd>
362
363         <dt><code>--disable-include</code></dt>
364         <dd>Disable Server Side Includes provided by
365           <module>mod_include</module>.</dd>
366
367         <dt><code>--disable-log-config</code></dt>
368         <dd>Disable the logging configuration provided by
369           <module>mod_log_config</module>. You won't be able to log requests
370           to the server without this module.</dd>
371
372         <dt><code>--disable-mime</code></dt>
373         <dd><module>mod_mime</module> associates the requested filename's
374           extensions with the file's behavior and content (mime-type,
375           language, character set and encoding). Disabling the mapping of
376           file-extensions to MIME is normally not recommended.</dd>
377
378         <dt><code>--disable-negotiation</code></dt>
379         <dd>Disable content negotiation provided by
380           <module>mod_negotiation</module>.</dd>
381
382         <dt><code>--disable-setenvif</code></dt>
383         <dd>Disable support for basing environment variables on headers,
384           which is provided by <module>mod_setenvif</module>.</dd>
385
386         <dt><code>--disable-status</code></dt>
387         <dd>Enable the process/thread monitoring, which is provided by
388           <module>mod_status</module>.</dd>
389
390         <dt><code>--disable-userdir</code></dt>
391         <dd>Disable the mapping of requests to user-specific directories,
392           which is provided by <module>mod_userdir</module>.</dd>
393       </dl>
394     </section>
395
396     <section id="disabledmodules"><title>Modules, disabled by default</title>
397       <p>Some modules are compiled by default and have to be enabled
398         explicitly or by using the keywords <code>most</code> or
399         <code>all</code> (see <code>--enable-mods-shared</code> below for
400         further explanation) to be available. Therefore use the options
401         below.</p>
402
403       <dl>
404         <dt><code>--enable-auth-anon</code></dt>
405         <dd>Enable anonymous user access provided by
406           <module>mod_auth_anon</module>.</dd>
407
408         <dt><code>--enable-auth-dbm</code></dt>
409         <dd><module>mod_auth_dbm</module> provides for HTTP Basic
410           Authentication, where the usernames and passwords are stored in DBM
411           type database files. Use this option to enable the module.</dd>
412
413         <dt><code>--enable-auth-digest</code></dt>
414         <dd>Enable RFC2617 Digest authentication provided by
415           <module>mod_auth_digest</module>. This module uses plain text files
416           to store the credentials.</dd>
417
418         <dt><code>--enable-authnz-ldap</code></dt>
419         <dd>Enable LDAP based authentication provided by
420           <module>mod_authnz_ldap</module>.</dd>
421           
422         <dt><code>--enable-cache</code></dt>
423         <dd>Enable dynamic file caching provided by
424           <module>mod_cache</module>. This experimental module may be
425           interesting for servers with high load or caching proxy servers. At
426           least one storage management module (e.g.
427           <module>mod_disk_cache</module> or <module>mod_mem_cache</module>)
428           is also necessary.</dd>
429
430         <dt><code>--enable-cern-meta</code></dt>
431         <dd>Enable the CERN-type meta files support provided by
432           <module>mod_cern_meta</module>.</dd>
433
434         <dt><code>--enable-charset-lite</code></dt>
435         <dd>Enable character set translation provided by
436           <module>mod_charset_lite</module>. This module will be installed by
437           default only on EBCDIC systems. On other systems, you have to enable
438           it.</dd>
439
440         <dt><code>--enable-dav</code></dt>
441         <dd>Enable the WebDAV protocol handling provided by
442           <module>mod_dav</module>. Support for filesystem resources is
443           provided by the separate module <module>mod_dav_fs</module>. This
444           module is also automatically enabled with
445           <code>--enable-dav</code>.<br/>
446           Note: <module>mod_dav</module> can only be used together with the
447           <code>http</code> protocol module.</dd>
448
449         <dt><code>--enable-dav-fs</code></dt>
450         <dd>Enable DAV support for filesystem resources, which is provided by
451           <module>mod_dav_fs</module>. This module is a provider for the
452           <module>mod_dav</module> module, so you should also use
453           <code>--enable-dav</code>.</dd> 
454
455         <dt><code>--enable-dav-lock</code></dt>
456         <dd>Enable <module>mod_dav_lock</module> which provides generic DAV
457           locking support for backend modules. This module needs at least
458           <module>mod_dav</module> to function, so you should also use
459           <code>--enable-dav</code>.</dd>
460
461         <dt><code>--enable-deflate</code></dt>
462         <dd>Enable deflate transfer encoding provided by
463           <module>mod_deflate</module>.</dd>
464
465         <dt><code>--enable-disk-cache</code></dt>
466         <dd>Enable disk caching provided by
467           <module>mod_disk_cache</module>.</dd>
468
469         <dt><code>--enable-expires</code></dt>
470         <dd>Enable Expires header control provided by
471           <module>mod_expires</module>.</dd>
472
473         <dt><code>--enable-ext-filter</code></dt>
474         <dd>Enable the external filter support provided by
475           <module>mod_ext_filter</module>.</dd>
476
477         <dt><code>--enable-file-cache</code></dt>
478         <dd>Enable the file cache provided by
479           <module>mod_file_cache</module>.</dd>
480
481         <dt><code>--enable-headers</code></dt>
482         <dd>Enable control of HTTP headers provided by
483           <module>mod_headers</module>.</dd>
484
485         <dt><code>--enable-info</code></dt>
486         <dd>Enable the server information provided by
487           <module>mod_info</module>.</dd>
488
489         <dt><code>--enable-ldap</code></dt>
490         <dd>Enable LDAP caching and connection pooling services provided by
491           <module>mod_ldap</module>.</dd>
492
493         <dt><code>--enable-logio</code></dt>
494         <dd>Enable logging of input and output bytes including headers provided
495           by <module>mod_logio</module>.</dd>
496
497         <dt><code>--enable-mem-cache</code></dt>
498         <dd>Enable memory caching provided by
499           <module>mod_mem_cache</module>.</dd>
500
501         <dt><code>--enable-mime-magic</code></dt>
502         <dd>Enable automatical determining of MIME types, which is provided by
503           <module>mod_mime_magic</module>.</dd>
504
505         <dt><code>--enable-isapi</code></dt>
506         <dd>Enable the isapi extension support provided by
507           <module>mod_isapi</module>.</dd>
508
509         <dt><code>--enable-proxy</code></dt>
510         <dd>Enable the proxy/gateway functionality provided by
511           <module>mod_proxy</module>. The proxying capabilities for
512           <code>AJP13</code>, <code>CONNECT</code>, <code>FTP</code>,
513           <code>HTTP</code> and the balancer are provided by the separate
514           modules <module>mod_proxy_ajp</module>,
515           <module>mod_proxy_connect</module>, <module>mod_proxy_ftp</module>,
516           <module>mod_proxy_http</module> and
517           <module>mod_proxy_balancer</module>.
518           These five modules are also automatically enabled with
519           <code>--enable-proxy</code>.</dd>
520
521         <dt><code>--enable-proxy-ajp</code></dt>
522         <dd>Enable proxy support for <code>AJP13 (Apache JServ Protocol 1.3)</code>
523           request handling, which is provided by <module>mod_proxy_ajp</module>.
524           This module is an extension for the <module>mod_proxy</module> module,
525           so you should also use <code>--enable-proxy</code>.</dd>
526
527         <dt><code>--enable-proxy-balancer</code></dt>
528         <dd>Enable load balancing support for the <code>AJP13</code>,
529           <code>FTP</code> and <code>HTTP</code> protocols, which is provided by
530           <module>mod_proxy_balancer</module>. This module is an extension for the
531           <module>mod_proxy</module> module, so you should also use
532           <code>--enable-proxy</code>.</dd>
533
534         <dt><code>--enable-proxy-connect</code></dt>
535         <dd>Enable proxy support for <code>CONNECT</code> request handling,
536           which is provided by <module>mod_proxy_connect</module>. This module
537           is an extension for the <module>mod_proxy</module> module, so you
538           should also use <code>--enable-proxy</code>.</dd>
539
540         <dt><code>--enable-proxy-ftp</code></dt>
541         <dd>Enable proxy support for <code>FTP</code> requests, which is
542           provided by <module>mod_proxy_ftp</module>. This module
543           is an extension for the <module>mod_proxy</module> module, so you
544           should also use <code>--enable-proxy</code>.</dd>
545
546         <dt><code>--enable-proxy-http</code></dt>
547         <dd>Enable proxy support for <code>HTTP</code> requests, which is
548           provided by <module>mod_proxy_http</module>. This module
549           is an extension for the <module>mod_proxy</module> module, so you
550           should also use <code>--enable-proxy</code>.</dd>
551
552         <dt><code>--enable-rewrite</code></dt>
553         <dd>Enable rule based URL manipulation provided by
554           <module>mod_rewrite</module>.</dd>
555
556         <dt><code>--enable-so</code></dt>
557         <dd>Enable DSO capability provided by <module>mod_so</module>. This
558           module will be automatically enabled if you use the
559           <code>--enable-mods-shared</code> option.</dd>
560
561         <dt><code>--enable-speling</code></dt>
562         <dd>Enable the functionality to correct common URL misspellings, which
563           is provided by <module>mod_speling</module>.</dd>
564
565         <dt><code>--enable-ssl</code></dt>
566         <dd>Enable support for SSL/TLS provided by
567           <module>mod_ssl</module>.</dd>
568
569         <dt><code>--enable-unique-id</code></dt>
570         <dd>Enable the generation of per-request unique ids, which is provided
571           by <module>mod_unique_id</module>.</dd>
572
573         <dt><code>--enable-usertrack</code></dt>
574         <dd>Enable user-session tracking provided by
575           <module>mod_usertrack</module>.</dd>
576
577         <dt><code>--enable-vhost-alias</code></dt>
578         <dd>Enable mass virtual hosting provided by
579           <module>mod_vhost_alias</module>.</dd>
580       </dl>
581     </section>
582
583     <section id="developermodules"><title>Modules for developers</title>
584       <p>The following modules are useful only for developers and testing
585         purposes and are disabled by default. Use the following options to
586         enable them. If you are not sure whether you need one of these
587         modules, omit them.</p>
588
589       <dl>
590         <!-- module doc needed -->
591         <dt><code>--enable-bucketeer</code></dt>
592         <dd>Enable the manipulation filter for buckets, which is provided by
593           <code>mod_bucketeer</code>.</dd>
594
595         <!-- module doc needed -->
596         <dt><code>--enable-case-filter</code></dt>
597         <dd>Enable the example uppercase conversion output filter support of
598           <code>mod_case_filter</code>.</dd>
599
600         <!-- module doc needed -->
601         <dt><code>--enable-case-filter-in</code></dt>
602         <dd>Enable the example uppercase conversion input filter support of
603           <code>mod_case_filter_in</code>.</dd>
604
605         <dt><code>--enable-echo</code></dt>
606         <dd>Enable the ECHO server provided by
607           <module>mod_echo</module>.</dd>
608
609         <dt><code>--enable-example</code></dt>
610         <dd>Enable the example and demo module
611           <module>mod_example</module>.</dd>
612
613         <!-- module doc needed -->
614         <dt><code>--enable-optional-fn-export</code></dt>
615         <dd>Enable the example for an optional function exporter, which is
616           provided by <code>mod_optional_fn_export</code>.</dd> 
617
618         <!-- module doc needed -->
619         <dt><code>--enable-optional-fn-import</code></dt>
620         <dd>Enable the example for an optional function importer, which is
621           provided by <code>mod_optional_fn_import</code>.</dd>
622
623         <!-- module doc needed -->
624         <dt><code>--enable-optional-hook-export</code></dt>
625         <dd>Enable the example for an optional hook exporter, which is provided
626           by <code>mod_optional_hook_export</code>.</dd>
627
628         <!-- module doc needed -->
629         <dt><code>--enable-optional-hook-import</code></dt>
630         <dd>Enable the example optional hook importer, which is provided by
631           <code>mod_optional_hook_import</code>.</dd>
632       </dl>
633     </section>
634
635     <section id="modules"><title>MPMs and third-party modules</title>
636       <p>To add the necessary Multi Processing Module and additional third-party
637         modules use the following options:</p>
638
639       <dl>
640         <dt><code>--with-module=<var>module-type</var>:<var>module-file</var>[,
641           <var>module-type</var>:<var>module-file</var>]</code></dt>
642         <dd><p>Add one or more third-party modules to the list of statically linked
643             modules. The module source file <code><var>module-file</var></code>
644             will be searched in the <code>modules/<var>module-type</var></code>
645             subdirectory of your Apache HTTP server source tree. If it is not found
646             there <code>configure</code> is considering <var>module-file</var> to be
647             an absolute file path and tries to copy the source file into the
648             <var>module-type</var> subdirectory. If the subdirectory doesn't
649             exist it will be created and populated with a standard
650             <code>Makefile.in</code>.</p>
651           <p>This option is useful to add small external modules consisting of
652             one source file. For more complex modules you should read the
653             vendor's documentation.</p>
654           <note><title>Note</title>
655             If you want to build a DSO module instead of a statically linked
656             use <program>apxs</program>.</note>
657         </dd>
658
659         <dt><code>--with-mpm=MPM</code></dt>
660         <dd>Choose the process model for your server. You have to select
661           exactly one <a href="../mpm.html">Multi-Processing Module</a>.
662           Otherwise the <a href="../mpm.html#defaults">default MPM</a> for
663           your operating system will be taken. Possible MPMs are
664           <module>beos</module>, <module>leader</module>,
665           <module>mpmt_os2</module>, <module>perchild</module>,
666           <module>prefork</module>, <module>threadpool</module> and
667           <module>worker</module>.</dd>
668       </dl>
669     </section>
670
671     <section id="otheroptfeat"><title>Cumulative and other options</title>
672       <dl>
673         <dt><code>--enable-maintainer-mode</code></dt>
674         <dd>Turn on debugging and compile time warnings.</dd>
675
676         <dt><code>--enable-mods-shared=<var>MODULE-LIST</var></code></dt>
677         <dd>
678           <p>Defines a list of modules to be enabled and build as dynamic
679             shared modules. This mean, these module have to be loaded
680             dynamically by using the  <directive
681             module="mod_so">LoadModule</directive> directive.</p>
682           <p><var>MODULE-LIST</var> is a space separated list of modulenames
683             enclosed by quotation marks. The module names are given without the
684             preceding <code>mod_</code>. For example:</p>
685           <example>
686             --enable-mods-shared='headers rewrite dav'
687           </example>
688           <p>Additionally you can use the special keywords <code>all</code> and
689             <code>most</code>. For example,</p>
690           <example>
691             --enable-mods-shared=most
692           </example>
693           <p>will compile most modules and build them as DSO modules.
694             <!-- See <a href="../install/enabledmodules.html">Overview of
695               enabled modules</a> for further information. --></p>
696         </dd>
697                     
698         <dt><code>--enable-modules=<var>MODULE-LIST</var></code></dt>
699         <dd>This option behaves similar to <code>--enable-mods-shared</code>, 
700           but will link the given modules statically. This mean, these modules
701           will always be present while running <program>httpd</program>. They need
702           not be loaded with <directive
703           module="mod_so">LoadModule</directive>.</dd>
704
705         <dt><code>--enable-v4-mapped</code></dt>
706         <dd>Allow IPv6 sockets to handle IPv4 connections.</dd>
707
708         <dt><code>--with-port=<var>PORT</var></code></dt>
709         <dd>This defines the port on which <program>httpd</program> will listen.
710           This port number is used when generating the configuration file
711           <code>httpd.conf</code>. The default is 80.</dd>
712
713         <dt><code>--with-program-name</code></dt>
714         <dd>Define an alternative executable name. The default is
715           <code>httpd</code>.</dd>
716       </dl>
717     </section>
718   </section>
719
720   <section id="packages"><title>Optional packages</title>
721     <p>These options are used to define optional packages.</p>
722
723     <section id="generalpackages"><title>General syntax</title>
724       <p>Generally you can use the following syntax to define an optional
725         package:</p>
726
727       <dl>
728         <dt><code>--with-<var>PACKAGE</var>[=<var>ARG</var>]</code></dt>
729         <dd>Use the package <var>PACKAGE</var>. The default value for
730           <var>ARG</var> is<code>yes</code>.</dd>
731
732         <dt><code>--without-<var>PACKAGE</var></code></dt>
733         <dd>Do not use the package <var>PACKAGE</var>. This is the same as
734           <code>--with-<var>PACKAGE</var>=no</code>. This option is provided by
735           <code>autoconf</code> but not very useful for the Apache HTTP
736           Server.</dd>
737       </dl>
738     </section>
739
740     <!-- options not known are passed to packasges?
741     are there other important options for packages? -->
742
743     <section id="packageopt"><title>Specific packages</title>
744       <dl>
745         <dt><code>--with-apr=<var>DIR</var>|<var>FILE</var></code></dt>
746         <dd>The <glossary ref="apr">Apache Portable Runtime</glossary> (APR) 
747           is part of the httpd
748           source distribution and will automatically be build together with the
749           HTTP server. If you want to use an already installed APR instead you
750           have to tell <code>configure</code> the path to the
751           <code>apr-config</code> script. You may set the absolute path and name
752           or the directory to the installed APR. <code>apr-config</code> must
753           exists within this directory or the subdirectory
754           <code>bin</code>.</dd>
755         
756         <dt><code>--with-apr-util=<var>DIR</var>|<var>FILE</var></code></dt>
757         <dd>The Apache Portable Runtime Utilities (APU) are part of the
758           httpd source distribution and will automatically be build
759           together with the HTTP server. If you want to use an already installed
760           APU instead you have to tell <code>configure</code> the path to the
761           <code>apu-config</code> script. You may set the absolute path and name
762           or the directory to the installed APU. <code>apu-config</code> must
763           exists within this directory or the subdirectory
764           <code>bin</code>.</dd>
765
766         <dt><code>--with-ssl=<var>DIR</var></code></dt>
767         <dd>If <module>mod_ssl</module> has been enabled <code>configure</code>
768           searches for an installed OpenSSL. You can set the directory path
769           to the SSL/TLS toolkit instead.</dd>
770
771         <dt><code>--with-z=<var>DIR</var></code></dt>
772         <dd><code>configure</code> searches automatically for an installed
773           <code>zlib</code> library if your source configuration requires one
774           (e.g., when <module>mod_deflate</module> is enabled). You can set the
775           directory path to the compression library instead.</dd>
776       </dl>
777
778       <p>Several features of the Apache HTTP Server, including
779         <module>mod_authn_dbm</module> and <module>mod_rewrite</module>'s DBM
780         <directive module="mod_rewrite">RewriteMap</directive> use simple
781         key/value databases for quick lookups of information. SDBM is included
782         in the APU, so this database is always available. If you would like to
783         use other database types, use the following options to enable
784         them:</p>
785         
786       <dl>
787         <dt><code>--with-gdbm[=<var>path</var>]</code></dt>
788         <dd>If no <var>path</var> is specified, <code>configure</code> will
789           search for the include files and libraries of a GNU DBM
790           installation in the usual search paths. An explicit
791           <var>path</var> will cause <code>configure</code> to look in
792           <code><var>path</var>/lib</code> and
793           <code><var>path</var>/include</code> for the relevant files.
794           Finally, the <var>path</var> may specify specific include and
795           library paths separated by a colon.</dd>
796           
797         <dt><code>--with-ndbm[=<var>path</var>]</code></dt>
798         <dd>Like <code>--with-gdbm</code>, bur searches for a New DBM
799           installation.</dd>
800         
801         <dt><code>--with-berkeley-db[=<var>path</var>]</code></dt>
802         <dd>Like <code>--with-gdbm</code>, but searches for a Berkeley DB
803           installation.</dd>
804       </dl>
805
806       <note><title>Note</title>
807         <p>The DBM options are provided by the APU and passed through to its
808           configuration script. They are useless when using an already
809           installed APU defined by <code>--with-apr-util</code>.</p>
810         <p>You may use more then one DBM implementation together with your
811           HTTP server. The appropriated DBM type will be configured within
812           the runtime configuration at each time.</p>
813       </note>
814     </section>
815   </section>
816   
817   <section id="supportopt"><title>Options for support programs</title>
818     <dl>
819       <dt><code>--enable-static-support</code></dt>
820       <dd>Build a statically linked version of the support binaries. This
821         means, a stand-alone executable will be built with all the necessary
822         libraries integrated. Otherwise the support binaries are linked
823         dynamically by default.</dd>
824
825       <dt><code>--enable-suexec</code></dt>
826       <dd>Use this option to enable <program>
827         suexec</program>, which allows you to set
828         uid and gid for spawned processes. <strong>Do not use this
829         option unless you understand all the security implications of
830         running a suid binary on your server.</strong> Further options
831         to configure <program>suexec</program> are described <a
832         href="#suexec">below</a>.</dd> </dl>
833
834     <p>It is possible to create a statically linked binary of a single
835       support program by using the following options:</p>
836
837     <dl>
838       <dt><code>--enable-static-ab</code></dt>
839       <dd>Build a statically linked version of <program>
840         ab</program>.</dd>
841
842       <!-- missing documentation for chechgid -->
843       <dt><code>--enable-static-checkgid</code></dt>
844       <dd>Build a statically linked version of <code>checkgid</code>.</dd>
845
846       <dt><code>--enable-static-htdbm</code></dt>
847       <dd>Build a statically linked version of <program>
848         htdbm</program>.</dd>
849
850       <dt><code>--enable-static-htdigest</code></dt>
851       <dd>Build a statically linked version of <program>
852         htdigest</program>.</dd>
853         
854       <dt><code>--enable-static-htpasswd</code></dt>
855       <dd>Build a statically linked version of <program>
856         htpasswd</program>.</dd>
857
858       <dt><code>--enable-static-logresolve</code></dt>
859       <dd>Build a statically linked version of <program>
860         logresolve</program>.</dd>
861
862       <dt><code>--enable-static-rotatelogs</code></dt>
863       <dd>Build a statically linked version of <program>
864         rotatelogs</program>.</dd>
865     </dl>
866
867     <section id="suexec"><title>suexec configuration options</title>
868       <p>The following options are used to fine tune the behavior of <program>
869         suexec</program>. See <a
870         href="suexec.html#install">Configuring and installing suEXEC</a>
871         for further information.</p>
872
873       <dl>
874         <dt><code>--with-suexec-bin</code></dt>
875         <dd>This defines the path to suexec binary. Default is
876           <code>--sbindir</code> (see <a href="directoryfinetuning">Fine
877           tuning of installation directories</a>).</dd>
878
879         <dt><code>--with-suexec-caller</code></dt>
880         <dd>This defines the user allowed to call <program>suexec</program>.
881           It should be the same as the user under which <program>httpd</program>
882           normally runs.</dd>
883
884         <dt><code>--with-suexec-docroot</code></dt>
885         <dd>This defines the directory tree under which <program>
886           suexec</program> access is allowed for executables. Default value is
887           <code>--datadir/htdocs</code>.</dd>
888
889         <dt><code>--with-suexec-gidmin</code></dt>
890         <dd>Define this as the lowest GID allowed to be a target user for
891           <program>suexec</program>. The default value is 100.</dd>
892
893         <dt><code>--with-suexec-logfile</code></dt>
894         <dd>This defines the filename of the <program>suexec</program> logfile.
895           By default the logfile is named <code>suexec_log</code> and located in
896           <code>--logfiledir</code>.</dd>
897
898         <dt><code>--with-suexec-safepath</code></dt>
899         <dd>Define the value of the environment variable <code>PATH</code> to
900           be set for processes started by <program>suexec</program>. Default
901           value is <code>/usr/local/bin:/usr/bin:/bin</code>.</dd>
902
903         <dt><code>--with-suexec-userdir</code></dt>
904         <dd>This defines the subdirectory under the user's directory that
905           contains all executables for which <program>suexec</program> access
906           is allowed. This setting is necessary when you want to use
907           <program>suexec</program> together with user-specific directories (as
908           provided by <module>mod_userdir</module>). The default is
909           <code>public_html</code>.</dd>
910
911         <dt><code>--with-suexec-uidmin</code></dt>
912         <dd>Define this as the lowest UID allowed to be a target user for
913           <program>suexec</program>. The default value is 100.</dd>
914
915         <dt><code>--with-suexec-umask</code></dt>
916         <dd>Set <code>umask</code> for processes started by
917           <program>suexec</program>. It defaults to your system settings.</dd>
918       </dl>
919     </section>
920   </section>
921 </section>
922
923 <section id="env"><title>Environment variables</title>
924   <p>There are some useful environment variables to override the choices made by
925     <code>configure</code> or to help it to find libraries and programs with
926     nonstandard names or locations.</p>
927
928   <!-- are these all useful variables? -->
929   <dl>
930     <dt><code>CC</code></dt>
931     <dd>Define the C compiler command to be used for compilation.</dd>
932
933     <dt><code>CFLAGS</code></dt>
934     <dd>Set C compiler flags you want to use for compilation.</dd>
935
936     <dt><code>CPP</code></dt>
937     <dd>Define the C preprocessor command to be used.</dd>
938
939     <dt><code>CPPFLAGS</code></dt>
940     <dd>Set C/C++ preprocessor flags, e.g. <code>-I<var>includedir</var></code>
941       if you have headers in a nonstandard directory <var>includedir</var>.</dd>
942
943     <dt><code>LDFLAGS</code></dt>
944     <dd>Set linker flags, e.g. <code>-L<var>libdir</var></code> if you have
945       libraries in a nonstandard directory <var>libdir</var>.</dd> 
946   </dl>
947 </section>
948 </manualpage>