faq/build.xml
b8e1b1357def73f310c9f7405035b3acc0cb1eaf
...
...
@@ -187,71 +187,6 @@
187
187
</answer>
188
188
</qandaentry>
189
189

190
-
<qandaentry xml:id="faq.build.apache">
191
-
<question>
192
-
<para>
193
-
I can't figure out how to build PHP with Apache 1.3.
194
-
</para>
195
-
</question>
196
-
<answer>
197
-
<para>
198
-
This is actually quite easy. Follow these steps carefully:
199
-
<itemizedlist>
200
-
<listitem>
201
-
<simpara>
202
-
Grab the latest Apache 1.3 distribution from
203
-
<link xlink:href="&url.apache.source;">&url.apache.source;</link>.
204
-
</simpara>
205
-
</listitem>
206
-
<listitem>
207
-
<simpara>
208
-
Ungzip and untar it somewhere, for example
209
-
<filename>/usr/local/src/apache-1.3</filename>.
210
-
</simpara>
211
-
</listitem>
212
-
<listitem>
213
-
<simpara>
214
-
Compile PHP by first running
215
-
<command>./configure --with-apache=/&lt;path&gt;/apache-1.3</command>
216
-
(substitute &lt;path&gt; for the actual path to your apache-1.3 directory).
217
-
</simpara>
218
-
</listitem>
219
-
<listitem>
220
-
<simpara>
221
-
Type <command>make</command> followed by <command>make install</command>
222
-
to build PHP and copy the necessary files to the Apache distribution tree.
223
-
</simpara>
224
-
</listitem>
225
-
<listitem>
226
-
<simpara>
227
-
Change directories into to your <filename>/&lt;path&gt;/apache-1.3/src</filename>
228
-
directory and edit the <filename>Configuration</filename> file.
229
-
Add to the file:
230
-
<literal>AddModule modules/php4/libphp4.a</literal>.
231
-
</simpara>
232
-
</listitem>
233
-
<listitem>
234
-
<simpara>
235
-
Type: <command>./configure</command> followed by <literal>make</literal>.
236
-
</simpara>
237
-
</listitem>
238
-
<listitem>
239
-
<simpara>
240
-
You should now have a PHP-enabled httpd binary!
241
-
</simpara>
242
-
</listitem>
243
-
</itemizedlist>
244
-
</para>
245
-
<para>
246
-
<emphasis>Note:</emphasis> You can also use the new Apache
247
-
<literal>./configure</literal> script. See the instructions in
248
-
the <literal>README.configure</literal> file which is part of
249
-
your Apache distribution. Also have a look at the <filename>INSTALL</filename>
250
-
file in the PHP distribution.
251
-
</para>
252
-
</answer>
253
-
</qandaentry>
254
-

255
190
<qandaentry xml:id="faq.build.not-running">
256
191
<question>
257
192
<para>
258
193