File: install.configure.misc.xml

package info (click to toggle)
phpdoc 20020310-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 35,272 kB
  • ctags: 354
  • sloc: xml: 799,767; php: 1,395; cpp: 500; makefile: 200; sh: 140; awk: 51
file content (979 lines) | stat: -rw-r--r-- 24,748 bytes parent folder | download
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
 <sect3 id="install.configure.options.misc">
  <title>Misc options</title>
  <variablelist>
   <varlistentry id="install.configure.enable-force-cgi-redirect">
    <term>
     <parameter>--enable-force-cgi-redirect</parameter>
    </term>
    <listitem>
     <para>
      Enable the security check for internal server redirects. You should use this 
      if you are running the CGI version with Apache.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-discard-path">
    <term>
     <parameter>--enable-discard-path</parameter>
    </term>
    <listitem>
     <para>
      If this is enabled, the PHP CGI binary can safely be placed outside of the web 
      tree and people will not be able to circumvent .htaccess security.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-fastcgi">
    <term>
     <parameter>--with-fastcgi=SRCDIR</parameter>
    </term>
    <listitem>
     <para>
      Build PHP as FastCGI application.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-debug">
    <term>
     <parameter>--enable-debug</parameter>
    </term>
    <listitem>
     <para>
      Compile with debugging symbols.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-layout">
    <term>
     <parameter>--with-layout=TYPE</parameter>
    </term>
    <listitem>
     <para>
      Sets how installed files will be laid out. Type is one of PHP (default) or GNU.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-pear">
    <term>
     <parameter>--with-pear=DIR</parameter>
    </term>
    <listitem>
     <para>
      Install PEAR in DIR (default PREFIX/lib/php).
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.without-pear">
    <term>
     <parameter>--without-pear</parameter>
    </term>
    <listitem>
     <para>
      Do not install PEAR.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-openssl">
    <term>
     <parameter>--with-openssl[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include OpenSSL support (requires OpenSSL >= 0.9.5).
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-sigchild">
    <term>
     <parameter>--enable-sigchild</parameter>
    </term>
    <listitem>
     <para>
      Enable PHP's own SIGCHLD handler.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.disable-rpath">
    <term>
     <parameter>--disable-rpath</parameter>
    </term>
    <listitem>
     <para>
      Disable passing additional runtime library search paths.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-libgcc">
    <term>
     <parameter>--enable-libgcc</parameter>
    </term>
    <listitem>
     <para>
      Enable explicitly linking against libgcc.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-dmalloc">
    <term>
     <parameter>--enable-dmalloc</parameter>
    </term>
    <listitem>
     <para>
      Enable dmalloc.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-php-streams">
    <term>
     <parameter>--enable-php-streams</parameter>
    </term>
    <listitem>
     <para>
      Include experimental php streams. Do not use unless you are testing the code!
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-zlib-dir">
    <term>
     <parameter>--with-zlib-dir=&lt;DIR&gt;</parameter>
    </term>
    <listitem>
     <para>
      Define the location of zlib install directory.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-zlib">
    <term>
     <parameter>--with-zlib[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include zlib support (requires zlib >= 1.0.9). DIR is the zlib install directory.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-aspell">
    <term>
     <parameter>--with-aspell[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include ASPELL support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-bcmath">
    <term>
     <parameter>--enable-bcmath</parameter>
    </term>
    <listitem>
     <para>
      Enable bc style precision math functions.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-bz2">
    <term>
     <parameter>--with-bz2[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include BZip2 support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-calendar">
    <term>
     <parameter>--enable-calendar</parameter>
    </term>
    <listitem>
     <para>
      Enable support for calendar conversion.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-ccvs">
    <term>
     <parameter>--with-ccvs[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include CCVS support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-crack">
    <term>
     <parameter>--with-crack[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include crack support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-ctype">
    <term>
     <parameter>--enable-ctype</parameter>
    </term>
    <listitem>
     <para>
      Enable ctype support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-curl">
    <term>
     <parameter>--with-curl[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include CURL support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-cybercash">
    <term>
     <parameter>--with-cybercash[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include CyberCash support. DIR is the CyberCash MCK install directory.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-cybermut">
    <term>
     <parameter>--with-cybermut[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include CyberMut (french Credit Mutuel telepaiement).
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-cyrus">
    <term>
     <parameter>--with-cyrus</parameter>
    </term>
    <listitem>
     <para>
      Include cyrus imap support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-exif">
    <term>
     <parameter>--enable-exif</parameter>
    </term>
    <listitem>
     <para>
      Enable exif support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-fdftk">
    <term>
     <parameter>--with-fdftk[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include fdftk support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-ftp">
    <term>
     <parameter>--enable-ftp</parameter>
    </term>
    <listitem>
     <para>
      Enable FTP support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-gettext">
    <term>
     <parameter>--with-gettext[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include GNU gettext support.  DIR is the gettext install directory, 
      defaults to /usr/local.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-gmp">
    <term>
     <parameter>--with-gmp</parameter>
    </term>
    <listitem>
     <para>
      Include gmp support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-hyperwave">
    <term>
     <parameter>--with-hyperwave</parameter>
    </term>
    <listitem>
     <para>
      Include Hyperwave support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-icap">
    <term>
     <parameter>--with-icap[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include ICAP support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-iconv">
    <term>
     <parameter>--with-iconv[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include iconv support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-imap">
    <term>
     <parameter>--with-imap[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include IMAP support. DIR is the c-client install prefix.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-kerberos">
    <term>
     <parameter>--with-kerberos[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      IMAP: Include Kerberos support. DIR is the Kerberos install dir.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-imap-ssl">
    <term>
     <parameter>--with-imap-ssl[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      IMAP: Include SSL support. DIR is the OpenSSL install dir.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-ircg-config">
    <term>
     <parameter>--with-ircg-config</parameter>
    </term>
    <listitem>
     <para>
      Path to the ircg-config script.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-ircg">
    <term>
     <parameter>--with-ircg</parameter>
    </term>
    <listitem>
     <para>
      Include ircg support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-java">
    <term>
     <parameter>--with-java[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include Java support. DIR is the base install directory for the JDK. 
      This extension can only be built as a shared dl.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-ldap">
    <term>
     <parameter>--with-ldap[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include LDAP support. DIR is the LDAP base install directory.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-mailparse">
    <term>
     <parameter>--enable-mailparse</parameter>
    </term>
    <listitem>
     <para>
      Enable mailparse support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-mbstring">
    <term>
     <parameter>--enable-mbstring</parameter>
    </term>
    <listitem>
     <para>
      Enable multibyte string support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-mbstr-enc-trans">
    <term>
     <parameter>--enable-mbstr-enc-trans</parameter>
    </term>
    <listitem>
     <para>
      Enable japanese encoding translation.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-mcal">
    <term>
     <parameter>--with-mcal[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include MCAL support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-mcrypt">
    <term>
     <parameter>--with-mcrypt[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include mcrypt support. DIR is the mcrypt install directory.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-mhash">
    <term>
     <parameter>--with-mhash[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include mhash support. DIR is the mhash install directory.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-mnogosearch">
    <term>
     <parameter>--with-mnogosearch[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include mnoGoSearch support. DIR is the mnoGoSearch base install directory, 
      defaults to /usr/local/mnogosearch.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-muscat">
    <term>
     <parameter>--with-muscat[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include muscat support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-ncurses">
    <term>
     <parameter>--with-ncurses</parameter>
    </term>
    <listitem>
     <para>
      Include ncurses support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-pcntl">
    <term>
     <parameter>--enable-pcntl</parameter>
    </term>
    <listitem>
     <para>
      Enable experimental pcntl support (CGI ONLY!)
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.without-pcre-regex">
    <term>
     <parameter>--without-pcre-regex</parameter>
    </term>
    <listitem>
     <para>
      Do not include Perl Compatible Regular Expressions support. 
      Use --with-pcre-regex=DIR to specify DIR where PCRE's       
      include and library files are located, if not using bundled library.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-pfpro">
    <term>
     <parameter>--with-pfpro[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include Verisign Payflow Pro support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.disable-posix">
    <term>
     <parameter>--disable-posix</parameter>
    </term>
    <listitem>
     <para>
      Disable POSIX-like functions.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-pspell">
    <term>
     <parameter>--with-pspell[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include PSPELL support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-qtdom">
    <term>
     <parameter>--with-qtdom</parameter>
    </term>
    <listitem>
     <para>
      Include QtDOM support (requires Qt >= 2.2.0).
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-libedit">
    <term>
     <parameter>--with-libedit[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include libedit readline replacement.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-readline">
    <term>
     <parameter>--with-readline[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include readline support.  DIR is the readline install directory.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-recode">
    <term>
     <parameter>--with-recode[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include recode support. DIR is the recode install directory.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-satellite">
    <term>
     <parameter>--with-satellite[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Enable CORBA support via Satellite (EXPERIMENTIAL) DIR is the base 
      directory for ORBit.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-mm">
    <term>
     <parameter>--with-mm[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include mm support for session storage.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-trans-sid">
    <term>
     <parameter>--enable-trans-sid</parameter>
    </term>
    <listitem>
     <para>
      Enable transparent session id propagation.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.disable-session">
    <term>
     <parameter>--disable-session</parameter>
    </term>
    <listitem>
     <para>
      Disable session support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-shmop">
    <term>
     <parameter>--enable-shmop</parameter>
    </term>
    <listitem>
     <para>
      Enable shmop support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-snmp">
    <term>
     <parameter>--with-snmp[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include SNMP support. DIR is the SNMP base install directory, defaults to 
      searching through a number of common locations for the snmp install. Set DIR 
      to shared to build as a dl, or shared,DIR to build as a dl and still specify DIR.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-ucd-snmp-hack">
    <term>
     <parameter>--enable-ucd-snmp-hack</parameter>
    </term>
    <listitem>
     <para>
      Enable UCD SNMP hack.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-sockets">
    <term>
     <parameter>--enable-sockets</parameter>
    </term>
    <listitem>
     <para>
      Enable sockets support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-regex">
    <term>
     <parameter>--with-regex=TYPE</parameter>
    </term>
    <listitem>
     <para>
      regex library type: system, apache, php.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-system-regex">
    <term>
     <parameter>--with-system-regex</parameter>
    </term>
    <listitem>
     <para>
      Use system regex library (deprecated).
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-sysvsem">
    <term>
     <parameter>--enable-sysvsem</parameter>
    </term>
    <listitem>
     <para>
      Enable System V semaphore support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-sysvshm">
    <term>
     <parameter>--enable-sysvshm</parameter>
    </term>
    <listitem>
     <para>
      Enable the System V shared memory support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-vpopmail">
    <term>
     <parameter>--with-vpopmail[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include vpopmail support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-tsrm-pthreads">
    <term>
     <parameter>--with-tsrm-pthreads</parameter>
    </term>
    <listitem>
     <para>
      Use POSIX threads (default).
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-shared">
    <term>
     <parameter>--enable-shared[=PKGS]</parameter>
    </term>
    <listitem>
     <para>
      Build shared libraries [default=yes].
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-static">
    <term>
     <parameter>--enable-static[=PKGS]</parameter>
    </term>
    <listitem>
     <para>
      Build static libraries [default=yes].
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-fast-install">
    <term>
     <parameter>--enable-fast-install[=PKGS]</parameter>
    </term>
    <listitem>
     <para>
      Optimize for fast installation [default=yes].
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-gnu-ld">
    <term>
     <parameter>--with-gnu-ld</parameter>
    </term>
    <listitem>
     <para>
      Assume the C compiler uses GNU ld [default=no].
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.disable-libtool-lock">
    <term>
     <parameter>--disable-libtool-lock</parameter>
    </term>
    <listitem>
     <para>
      Avoid locking (might break parallel builds).
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-pic">
    <term>
     <parameter>--with-pic</parameter>
    </term>
    <listitem>
     <para>
      Try to use only PIC/non-PIC objects [default=use both].
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-yaz">
    <term>
     <parameter>--with-yaz[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include YAZ support (ANSI/NISO Z39.50).
      DIR is the YAZ bin install directory.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-memory-limit">
    <term>
     <parameter>--enable-memory-limit</parameter>
    </term>
    <listitem>
     <para>
      Compile with memory limit support.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.disable-url-fopen-wrapper">
    <term>
     <parameter>--disable-url-fopen-wrapper</parameter>
    </term>
    <listitem>
     <para>
      Disable the URL-aware fopen wrapper that allows
      accessing files via http or ftp.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-versioning.php4">
    <term>
     <parameter>--enable-versioning</parameter>
    </term>
    <listitem>
     <para>
      Export only required symbols.
      See INSTALL for more information.
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.disable-bcmath">
    <term>
     <parameter>--disable-bcmath</parameter>
    </term>
    <listitem>
     <para>
      Compile without bc style precision math functions. PHP 3 only!
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-ismp">
    <term>
     <parameter>--with-imsp[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include IMSp support (DIR is IMSP's include dir and libimsp.a dir).
      PHP 3 only!
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-ftp">
    <term>
     <parameter>--with-ftp</parameter>
    </term>
    <listitem>
     <para>
      Include FTP support. PHP 3 only!
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-mck">
    <term>
     <parameter>--with-mck[=DIR]</parameter>
    </term>
    <listitem>
     <para>
      Include Cybercash MCK support. DIR is the cybercash
      mck build directory, defaults to
      /usr/src/mck-3.2.0.3-linux for help look in
      extra/cyberlib. PHP 3 only!
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.disable-overload">
    <term>
     <parameter>--disable-overload</parameter>
    </term>
    <listitem>
     <para>
      Disable user-space object overloading support. PHP 3 only!
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-yp">
    <term>
     <parameter>--enable-yp</parameter>
    </term>
    <listitem>
     <para>
      Include YP support. PHP 3 only!
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-zip">
    <term>
     <parameter>--with-zip</parameter>
    </term>
    <listitem>
     <para>
      Include ZIP support (requires zziplib >= 0.10.6).
      PHP 3 only!
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.with-mod-dav">
    <term>
     <parameter>--with-mod-dav=DIR</parameter>
    </term>
    <listitem>
     <para>
      Include DAV support through Apache's mod_dav,
      DIR is mod_dav's installation directory (Apache
      module version only!) PHP 3 only!
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-debugger">
    <term>
     <parameter>--enable-debugger</parameter>
    </term>
    <listitem>
     <para>
      Compile with remote debugging functions. PHP 3 only!
     </para>
    </listitem>
   </varlistentry>
   <varlistentry id="install.configure.enable-versioning.php3">
    <term>
     <parameter>--enable-versioning</parameter>
    </term>
    <listitem>
     <para>
      Take advantage of versioning and scoping
      provided by Solaris 2.x and Linux. PHP 3 only!
     </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:"../../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
-->