1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<sect3 xml:id="configure.options.servers" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>SAPI options</title>
<para>
The following list contains the available SAPI&s (<literal>Server
Application Programming Interface</literal>) for PHP.
</para>
<variablelist>
<varlistentry xml:id="configure.with-apxs">
<term>
<option role="configure">--with-apxs[=FILE]</option>
</term>
<listitem>
<para>
Build shared Apache module. FILE is the optional pathname to the Apache
apxs tool; defaults to apxs. Make sure you specify the version of apxs that
is actually installed on your system and NOT the one that is in the apache
source tarball.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="configure.with-apache">
<term>
<option role="configure">--with-apache[=DIR]</option>
</term>
<listitem>
<para>
Build a static Apache module. DIR is the top-level Apache build directory,
defaults to <filename>/usr/local/apache</filename>.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="configure.with-mod-charset">
<term>
<option role="configure">--with-mod_charset</option>
</term>
<listitem>
<para>
Enable transfer tables for mod_charset (Russian Apache).
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="configure.with-apxs2">
<term>
<option role="configure">--with-apxs2[=FILE]</option>
</term>
<listitem>
<para>
Build shared Apache 2.0 module. FILE is the optional pathname to the Apache
apxs tool; defaults to apxs.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="configure.disable-cli">
<term>
<option role="configure">--disable-cli</option>
</term>
<listitem>
<para>
Disable building the CLI version of PHP (this
forces <link linkend="configure.without-pear">--without-pear</link>).
More information is available in the section about
<link linkend="features.commandline">Using PHP from the command line</link>.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="configure.enable-phpdbg">
<term>
<option role="configure">--enable-phpdbg</option>
</term>
<listitem>
<para>
Enable phpdbg interactive debugger SAPI module support.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="configure.enable-embed">
<term>
<option role="configure">--enable-embed[=TYPE]</option>
</term>
<listitem>
<para>
Enable building of the embedded SAPI library. TYPE is either
<literal>shared</literal> or <literal>static</literal>, which
defaults to <literal>shared</literal>.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="configure.with-servlet">
<term>
<option role="configure">--with-servlet[=DIR]</option>
</term>
<listitem>
<para>
Include servlet support. DIR is the base install directory for the JSDK.
This SAPI requires the java extension must be built as a shared dl.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="configure.disable-cgi">
<term>
<option role="configure">--disable-cgi</option>
</term>
<listitem>
<para>
Disable building CGI version of PHP.
</para>
<para>
This argument also enables FastCGI.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect3>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
|