~ubuntu-branches/ubuntu/lucid/php5/lucid

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
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
/* main/php_config.h.in.  Generated automatically from configure.in by autoheader.  */
/* Leave this file alone */
/*
   +----------------------------------------------------------------------+
   | Zend Engine                                                          |
   +----------------------------------------------------------------------+
   | Copyright (c) 1998-2010 Zend Technologies Ltd. (http://www.zend.com) |
   +----------------------------------------------------------------------+
   | This source file is subject to version 2.00 of the Zend license,     |
   | that is bundled with this package in the file LICENSE, and is        |
   | available through the world-wide-web at the following url:           |
   | http://www.zend.com/license/2_00.txt.                                |
   | If you did not receive a copy of the Zend license and are unable to  |
   | obtain it through the world-wide-web, please send a note to          |
   | license@zend.com so we can mail you a copy immediately.              |
   +----------------------------------------------------------------------+
   | Authors: Andi Gutmans <andi@zend.com>                                |
   |          Zeev Suraski <zeev@zend.com>                                |
   +----------------------------------------------------------------------+
*/

/* $Id: acconfig.h 293155 2010-01-05 20:46:53Z sebastian $ */

#if defined(__GNUC__) && __GNUC__ >= 4
# define ZEND_API __attribute__ ((visibility("default")))
# define ZEND_DLEXPORT __attribute__ ((visibility("default")))
#else
# define ZEND_API
# define ZEND_DLEXPORT
#endif

#define ZEND_DLIMPORT


/* Define if on AIX 3.
   System headers sometimes define this.
   We just want to avoid a redefinition error message.  */
#ifndef _ALL_SOURCE
#undef _ALL_SOURCE
#endif

/* Define if using alloca.c.  */
#undef C_ALLOCA

/* Define to empty if the keyword does not work.  */
#undef const

/* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
   This function is required for alloca.c support on those systems.  */
#undef CRAY_STACKSEG_END

/* Define to `int' if <sys/types.h> doesn't define.  */
#undef gid_t

/* Define if you have alloca, as a function or macro.  */
#undef HAVE_ALLOCA

/* Define if you have <alloca.h> and it should be used (not on Ultrix).  */
#undef HAVE_ALLOCA_H

/* Define if you don't have vprintf but do have _doprnt.  */
#undef HAVE_DOPRNT

/* Define if your system has a working fnmatch function.  */
#undef HAVE_FNMATCH

/* Define if your struct stat has st_blksize.  */
#undef HAVE_ST_BLKSIZE

/* Define if your struct stat has st_blocks.  */
#undef HAVE_ST_BLOCKS

/* Define if your struct stat has st_rdev.  */
#undef HAVE_ST_RDEV

/* Define if your struct tm has tm_zone.  */
#undef HAVE_TM_ZONE

/* Define if you don't have tm_zone but do have the external array
   tzname.  */
#undef HAVE_TZNAME

/* Define if utime(file, NULL) sets file's timestamp to the present.  */
#undef HAVE_UTIME_NULL

/* Define if you have the vprintf function.  */
#undef HAVE_VPRINTF

/* Define as __inline if that's what the C compiler calls it.  */
#undef inline

/* Define if your C compiler doesn't accept -c and -o together.  */
#undef NO_MINUS_C_MINUS_O

/* Define as the return type of signal handlers (int or void).  */
#undef RETSIGTYPE

/* Define to `unsigned' if <sys/types.h> doesn't define.  */
#undef size_t

/* If using the C implementation of alloca, define if you know the
   direction of stack growth for your system; otherwise it will be
   automatically deduced at run-time.
 STACK_DIRECTION > 0 => grows toward higher addresses
 STACK_DIRECTION < 0 => grows toward lower addresses
 STACK_DIRECTION = 0 => direction of growth unknown
 */
#undef STACK_DIRECTION

/* Define if you have the ANSI C header files.  */
#undef STDC_HEADERS

/* Define if you can safely include both <sys/time.h> and <time.h>.  */
#undef TIME_WITH_SYS_TIME

/* Define if your <sys/time.h> declares struct tm.  */
#undef TM_IN_SYS_TIME

/* Define to `int' if <sys/types.h> doesn't define.  */
#undef uid_t

#undef uint
#undef ulong

/* The number of bytes in a char.  */
#undef SIZEOF_CHAR

/* The number of bytes in a char *.  */
#undef SIZEOF_CHAR_P

/* The number of bytes in a int.  */
#undef SIZEOF_INT

/* The number of bytes in a long.  */
#undef SIZEOF_LONG

/* The number of bytes in a long int.  */
#undef SIZEOF_LONG_INT

/* The number of bytes in a long long.  */
#undef SIZEOF_LONG_LONG

/* The number of bytes in a long long int.  */
#undef SIZEOF_LONG_LONG_INT

/* The number of bytes in a short.  */
#undef SIZEOF_SHORT

/* The number of bytes in a size_t.  */
#undef SIZEOF_SIZE_T

/* Define if you have the CreateProcess function.  */
#undef HAVE_CREATEPROCESS

/* Define if you have the acosh function.  */
#undef HAVE_ACOSH

/* Define if you have the alphasort function.  */
#undef HAVE_ALPHASORT

/* Define if you have the asctime_r function.  */
#undef HAVE_ASCTIME_R

/* Define if you have the asinh function.  */
#undef HAVE_ASINH

/* Define if you have the asprintf function.  */
#undef HAVE_ASPRINTF

/* Define if you have the atanh function.  */
#undef HAVE_ATANH

/* Define if you have the atoll function.  */
#undef HAVE_ATOLL

/* Define if you have the chroot function.  */
#undef HAVE_CHROOT

/* Define if you have the crypt function.  */
#undef HAVE_CRYPT

/* Define if you have the crypt_r function.  */
#undef HAVE_CRYPT_R

/* Define if you have the ctermid function.  */
#undef HAVE_CTERMID

/* Define if you have the ctime_r function.  */
#undef HAVE_CTIME_R

/* Define if you have the cuserid function.  */
#undef HAVE_CUSERID

/* Define if you have the fabsf function.  */
#undef HAVE_FABSF

/* Define if you have the finite function.  */
#undef HAVE_FINITE

/* Define if you have the flock function.  */
#undef HAVE_FLOCK

/* Define if you have the floorf function.  */
#undef HAVE_FLOORF

/* Define if you have the fork function.  */
#undef HAVE_FORK

/* Define if you have the fpclass function.  */
#undef HAVE_FPCLASS

/* Define if you have the ftok function.  */
#undef HAVE_FTOK

/* Define if you have the funopen function.  */
#undef HAVE_FUNOPEN

/* Define if you have the gai_strerror function.  */
#undef HAVE_GAI_STRERROR

/* Define if you have the gcvt function.  */
#undef HAVE_GCVT

/* Define if you have the getcwd function.  */
#undef HAVE_GETCWD

/* Define if you have the getgrgid_r function.  */
#undef HAVE_GETGRGID_R

/* Define if you have the getgrnam_r function.  */
#undef HAVE_GETGRNAM_R

/* Define if you have the getgroups function.  */
#undef HAVE_GETGROUPS

/* Define if you have the gethostname function.  */
#undef HAVE_GETHOSTNAME

/* Define if you have the getloadavg function.  */
#undef HAVE_GETLOADAVG

/* Define if you have the getlogin function.  */
#undef HAVE_GETLOGIN

/* Define if you have the getopt function.  */
#undef HAVE_GETOPT

/* Define if you have the getpgid function.  */
#undef HAVE_GETPGID

/* Define if you have the getpid function.  */
#undef HAVE_GETPID

/* Define if you have the getpriority function.  */
#undef HAVE_GETPRIORITY

/* Define if you have the getprotobyname function.  */
#undef HAVE_GETPROTOBYNAME

/* Define if you have the getprotobynumber function.  */
#undef HAVE_GETPROTOBYNUMBER

/* Define if you have the getpwnam_r function.  */
#undef HAVE_GETPWNAM_R

/* Define if you have the getpwuid_r function.  */
#undef HAVE_GETPWUID_R

/* Define if you have the getrlimit function.  */
#undef HAVE_GETRLIMIT

/* Define if you have the getrusage function.  */
#undef HAVE_GETRUSAGE

/* Define if you have the getservbyname function.  */
#undef HAVE_GETSERVBYNAME

/* Define if you have the getservbyport function.  */
#undef HAVE_GETSERVBYPORT

/* Define if you have the getsid function.  */
#undef HAVE_GETSID

/* Define if you have the gettimeofday function.  */
#undef HAVE_GETTIMEOFDAY

/* Define if you have the getwd function.  */
#undef HAVE_GETWD

/* Define if you have the glob function.  */
#undef HAVE_GLOB

/* Define if you have the gmtime_r function.  */
#undef HAVE_GMTIME_R

/* Define if you have the grantpt function.  */
#undef HAVE_GRANTPT

/* Define if you have the hstrerror function.  */
#undef HAVE_HSTRERROR

/* Define if you have the hypot function.  */
#undef HAVE_HYPOT

/* Define if you have the inet_ntoa function.  */
#undef HAVE_INET_NTOA

/* Define if you have the inet_ntop function.  */
#undef HAVE_INET_NTOP

/* Define if you have the inet_pton function.  */
#undef HAVE_INET_PTON

/* Define if you have the initgroups function.  */
#undef HAVE_INITGROUPS

/* Define if you have the isascii function.  */
#undef HAVE_ISASCII

/* Define if you have the isfinite function.  */
#undef HAVE_ISFINITE

/* Define if you have the isinf function.  */
#undef HAVE_ISINF

/* Define if you have the isnan function.  */
#undef HAVE_ISNAN

/* Define if you have the kill function.  */
#undef HAVE_KILL

/* Define if you have the lchown function.  */
#undef HAVE_LCHOWN

/* Define if you have the ldap_parse_reference function.  */
#undef HAVE_LDAP_PARSE_REFERENCE

/* Define if you have the ldap_parse_result function.  */
#undef HAVE_LDAP_PARSE_RESULT

/* Define if you have the ldap_start_tls_s function.  */
#undef HAVE_LDAP_START_TLS_S

/* Define if you have the link function.  */
#undef HAVE_LINK

/* Define if you have the localeconv function.  */
#undef HAVE_LOCALECONV

/* Define if you have the localtime_r function.  */
#undef HAVE_LOCALTIME_R

/* Define if you have the lockf function.  */
#undef HAVE_LOCKF

/* Define if you have the log1p function.  */
#undef HAVE_LOG1P

/* Define if you have the lrand48 function.  */
#undef HAVE_LRAND48

/* Define if you have the makedev function.  */
#undef HAVE_MAKEDEV

/* Define if you have the mblen function.  */
#undef HAVE_MBLEN

/* Define if you have the mbrlen function.  */
#undef HAVE_MBRLEN

/* Define if you have the mbsinit function.  */
#undef HAVE_MBSINIT

/* Define if you have the memcpy function.  */
#undef HAVE_MEMCPY

/* Define if you have the memmove function.  */
#undef HAVE_MEMMOVE

/* Define if you have the mempcpy function.  */
#undef HAVE_MEMPCPY

/* Define if you have the mkfifo function.  */
#undef HAVE_MKFIFO

/* Define if you have the mknod function.  */
#undef HAVE_MKNOD

/* Define if you have the mkstemp function.  */
#undef HAVE_MKSTEMP

/* Define if you have the mmap function.  */
#undef HAVE_MMAP

/* Define if you have the mremap function.  */
#undef HAVE_MREMAP

/* Define if you have the mysql_commit function.  */
#undef HAVE_MYSQL_COMMIT

/* Define if you have the mysql_next_result function.  */
#undef HAVE_MYSQL_NEXT_RESULT

/* Define if you have the mysql_sqlstate function.  */
#undef HAVE_MYSQL_SQLSTATE

/* Define if you have the mysql_stmt_prepare function.  */
#undef HAVE_MYSQL_STMT_PREPARE

/* Define if you have the nanosleep function.  */
#undef HAVE_NANOSLEEP

/* Define if you have the nice function.  */
#undef HAVE_NICE

/* Define if you have the nl_langinfo function.  */
#undef HAVE_NL_LANGINFO

/* Define if you have the perror function.  */
#undef HAVE_PERROR

/* Define if you have the poll function.  */
#undef HAVE_POLL

/* Define if you have the ptsname function.  */
#undef HAVE_PTSNAME

/* Define if you have the putenv function.  */
#undef HAVE_PUTENV

/* Define if you have the rand_r function.  */
#undef HAVE_RAND_R

/* Define if you have the random function.  */
#undef HAVE_RANDOM

/* Define if you have the realpath function.  */
#undef HAVE_REALPATH

/* Define if you have the rl_completion_matches function.  */
#undef HAVE_RL_COMPLETION_MATCHES

/* Define if you have the scandir function.  */
#undef HAVE_SCANDIR

/* Define if you have the setegid function.  */
#undef HAVE_SETEGID

/* Define if you have the setenv function.  */
#undef HAVE_SETENV

/* Define if you have the seteuid function.  */
#undef HAVE_SETEUID

/* Define if you have the setitimer function.  */
#undef HAVE_SETITIMER

/* Define if you have the setlocale function.  */
#undef HAVE_SETLOCALE

/* Define if you have the setpgid function.  */
#undef HAVE_SETPGID

/* Define if you have the setpriority function.  */
#undef HAVE_SETPRIORITY

/* Define if you have the setsid function.  */
#undef HAVE_SETSID

/* Define if you have the setsockopt function.  */
#undef HAVE_SETSOCKOPT

/* Define if you have the setvbuf function.  */
#undef HAVE_SETVBUF

/* Define if you have the shutdown function.  */
#undef HAVE_SHUTDOWN

/* Define if you have the sigaction function.  */
#undef HAVE_SIGACTION

/* Define if you have the sigprocmask function.  */
#undef HAVE_SIGPROCMASK

/* Define if you have the sigsetjmp function.  */
#undef HAVE_SIGSETJMP

/* Define if you have the sigtimedwait function.  */
#undef HAVE_SIGTIMEDWAIT

/* Define if you have the sigwaitinfo function.  */
#undef HAVE_SIGWAITINFO

/* Define if you have the sin function.  */
#undef HAVE_SIN

/* Define if you have the snprintf function.  */
#undef HAVE_SNPRINTF

/* Define if you have the socketpair function.  */
#undef HAVE_SOCKETPAIR

/* Define if you have the srand48 function.  */
#undef HAVE_SRAND48

/* Define if you have the srandom function.  */
#undef HAVE_SRANDOM

/* Define if you have the statfs function.  */
#undef HAVE_STATFS

/* Define if you have the statvfs function.  */
#undef HAVE_STATVFS

/* Define if you have the std_syslog function.  */
#undef HAVE_STD_SYSLOG

/* Define if you have the strcasecmp function.  */
#undef HAVE_STRCASECMP

/* Define if you have the strcoll function.  */
#undef HAVE_STRCOLL

/* Define if you have the strdup function.  */
#undef HAVE_STRDUP

/* Define if you have the strerror function.  */
#undef HAVE_STRERROR

/* Define if you have the strfmon function.  */
#undef HAVE_STRFMON

/* Define if you have the strftime function.  */
#undef HAVE_STRFTIME

/* Define if you have the strlcat function.  */
#undef HAVE_STRLCAT

/* Define if you have the strlcpy function.  */
#undef HAVE_STRLCPY

/* Define if you have the strndup function.  */
#undef HAVE_STRNDUP

/* Define if you have the strnlen function.  */
#undef HAVE_STRNLEN

/* Define if you have the strpbrk function.  */
#undef HAVE_STRPBRK

/* Define if you have the strpncpy function.  */
#undef HAVE_STRPNCPY

/* Define if you have the strptime function.  */
#undef HAVE_STRPTIME

/* Define if you have the strstr function.  */
#undef HAVE_STRSTR

/* Define if you have the strtod function.  */
#undef HAVE_STRTOD

/* Define if you have the strtok_r function.  */
#undef HAVE_STRTOK_R

/* Define if you have the strtol function.  */
#undef HAVE_STRTOL

/* Define if you have the strtoll function.  */
#undef HAVE_STRTOLL

/* Define if you have the strtoul function.  */
#undef HAVE_STRTOUL

/* Define if you have the strtoull function.  */
#undef HAVE_STRTOULL

/* Define if you have the symlink function.  */
#undef HAVE_SYMLINK

/* Define if you have the tempnam function.  */
#undef HAVE_TEMPNAM

/* Define if you have the tzset function.  */
#undef HAVE_TZSET

/* Define if you have the unlockpt function.  */
#undef HAVE_UNLOCKPT

/* Define if you have the unsetenv function.  */
#undef HAVE_UNSETENV

/* Define if you have the usleep function.  */
#undef HAVE_USLEEP

/* Define if you have the utime function.  */
#undef HAVE_UTIME

/* Define if you have the utimes function.  */
#undef HAVE_UTIMES

/* Define if you have the vasprintf function.  */
#undef HAVE_VASPRINTF

/* Define if you have the vsnprintf function.  */
#undef HAVE_VSNPRINTF

/* Define if you have the wait3 function.  */
#undef HAVE_WAIT3

/* Define if you have the waitpid function.  */
#undef HAVE_WAITPID

/* Define if you have the </nsapi.h> header file.  */
#undef HAVE__NSAPI_H

/* Define if you have the <ApplicationServices/ApplicationServices.h> header file.  */
#undef HAVE_APPLICATIONSERVICES_APPLICATIONSERVICES_H

/* Define if you have the <alloca.h> header file.  */
#undef HAVE_ALLOCA_H

/* Define if you have the <arpa/inet.h> header file.  */
#undef HAVE_ARPA_INET_H

/* Define if you have the <arpa/nameser.h> header file.  */
#undef HAVE_ARPA_NAMESER_H

/* Define if you have the <assert.h> header file.  */
#undef HAVE_ASSERT_H

/* Define if you have the <crypt.h> header file.  */
#undef HAVE_CRYPT_H

/* Define if you have the <default_store.h> header file.  */
#undef HAVE_DEFAULT_STORE_H

/* Define if you have the <dirent.h> header file.  */
#undef HAVE_DIRENT_H

/* Define if you have the <dlfcn.h> header file.  */
#undef HAVE_DLFCN_H

/* Define if you have the <dns.h> header file.  */
#undef HAVE_DNS_H

/* Define if you have the <errno.h> header file.  */
#undef HAVE_ERRNO_H

/* Define if you have the <fcntl.h> header file.  */
#undef HAVE_FCNTL_H

/* Define if you have the <grp.h> header file.  */
#undef HAVE_GRP_H

/* Define if you have the <ieeefp.h> header file.  */
#undef HAVE_IEEEFP_H

/* Define if you have the <inttypes.h> header file.  */
#undef HAVE_INTTYPES_H

/* Define if you have the <langinfo.h> header file.  */
#undef HAVE_LANGINFO_H

/* Define if you have the <limits.h> header file.  */
#undef HAVE_LIMITS_H

/* Define if you have the <locale.h> header file.  */
#undef HAVE_LOCALE_H

/* Define if you have the <malloc.h> header file.  */
#undef HAVE_MALLOC_H

/* Define if you have the <monetary.h> header file.  */
#undef HAVE_MONETARY_H

/* Define if you have the <ndir.h> header file.  */
#undef HAVE_NDIR_H

/* Define if you have the <netdb.h> header file.  */
#undef HAVE_NETDB_H

/* Define if you have the <netinet/in.h> header file.  */
#undef HAVE_NETINET_IN_H

/* Define if you have the <netinet/tcp.h> header file.  */
#undef HAVE_NETINET_TCP_H

/* Define if you have the <openssl/crypto.h> header file.  */
#undef HAVE_OPENSSL_CRYPTO_H

/* Define if you have the <pwd.h> header file.  */
#undef HAVE_PWD_H

/* Define if you have the <resolv.h> header file.  */
#undef HAVE_RESOLV_H

/* Define if you have the <signal.h> header file.  */
#undef HAVE_SIGNAL_H

/* Define if you have the <st.h> header file.  */
#undef HAVE_ST_H

/* Define if you have the <stdarg.h> header file.  */
#undef HAVE_STDARG_H

/* Define if you have the <stdbool.h> header file.  */
#undef HAVE_STDBOOL_H

/* Define if you have the <stdint.h> header file.  */
#undef HAVE_STDINT_H

/* Define if you have the <stdlib.h> header file.  */
#undef HAVE_STDLIB_H

/* Define if you have the <string.h> header file.  */
#undef HAVE_STRING_H

/* Define if you have the <strings.h> header file.  */
#undef HAVE_STRINGS_H

/* Define if you have the <sys/dir.h> header file.  */
#undef HAVE_SYS_DIR_H

/* Define if you have the <sys/file.h> header file.  */
#undef HAVE_SYS_FILE_H

/* Define if you have the <sys/ioctl.h> header file.  */
#undef HAVE_SYS_IOCTL_H

/* Define if you have the <sys/ipc.h> header file.  */
#undef HAVE_SYS_IPC_H

/* Define if you have the <sys/loadavg.h> header file.  */
#undef HAVE_SYS_LOADAVG_H

/* Define if you have the <sys/mkdev.h> header file.  */
#undef HAVE_SYS_MKDEV_H

/* Define if you have the <sys/mman.h> header file.  */
#undef HAVE_SYS_MMAN_H

/* Define if you have the <sys/mount.h> header file.  */
#undef HAVE_SYS_MOUNT_H

/* Define if you have the <sys/ndir.h> header file.  */
#undef HAVE_SYS_NDIR_H

/* Define if you have the <sys/param.h> header file.  */
#undef HAVE_SYS_PARAM_H

/* Define if you have the <sys/poll.h> header file.  */
#undef HAVE_SYS_POLL_H

/* Define if you have the <sys/resource.h> header file.  */
#undef HAVE_SYS_RESOURCE_H

/* Define if you have the <sys/select.h> header file.  */
#undef HAVE_SYS_SELECT_H

/* Define if you have the <sys/socket.h> header file.  */
#undef HAVE_SYS_SOCKET_H

/* Define if you have the <sys/stat.h> header file.  */
#undef HAVE_SYS_STAT_H

/* Define if you have the <sys/statfs.h> header file.  */
#undef HAVE_SYS_STATFS_H

/* Define if you have the <sys/statvfs.h> header file.  */
#undef HAVE_SYS_STATVFS_H

/* Define if you have the <sys/sysexits.h> header file.  */
#undef HAVE_SYS_SYSEXITS_H

/* Define if you have the <sys/time.h> header file.  */
#undef HAVE_SYS_TIME_H

/* Define if you have the <sys/times.h> header file.  */
#undef HAVE_SYS_TIMES_H

/* Define if you have the <sys/types.h> header file.  */
#undef HAVE_SYS_TYPES_H

/* Define if you have the <sys/un.h> header file.  */
#undef HAVE_SYS_UN_H

/* Define if you have the <sys/utsname.h> header file.  */
#undef HAVE_SYS_UTSNAME_H

/* Define if you have the <sys/varargs.h> header file.  */
#undef HAVE_SYS_VARARGS_H

/* Define if you have the <sys/vfs.h> header file.  */
#undef HAVE_SYS_VFS_H

/* Define if you have the <sys/wait.h> header file.  */
#undef HAVE_SYS_WAIT_H

/* Define if you have the <sysexits.h> header file.  */
#undef HAVE_SYSEXITS_H

/* Define if you have the <syslog.h> header file.  */
#undef HAVE_SYSLOG_H

/* Define if you have the <termios.h> header file.  */
#undef HAVE_TERMIOS_H

/* Define if you have the <time.h> header file.  */
#undef HAVE_TIME_H

/* Define if you have the <tuxmodule.h> header file.  */
#undef HAVE_TUXMODULE_H

/* Define if you have the <unistd.h> header file.  */
#undef HAVE_UNISTD_H

/* Define if you have the <unix.h> header file.  */
#undef HAVE_UNIX_H

/* Define if you have the <utime.h> header file.  */
#undef HAVE_UTIME_H

/* Define if you have the <wchar.h> header file.  */
#undef HAVE_WCHAR_H

/* Define if you have the <xmlparse.h> header file.  */
#undef HAVE_XMLPARSE_H

/* Define if you have the <xmltok.h> header file.  */
#undef HAVE_XMLTOK_H

/* Define if you have the m library (-lm).  */
#undef HAVE_LIBM

/* Define if the target system has /dev/urandom device */
#undef HAVE_DEV_URANDOM

/* Whether you have AOLserver */
#undef HAVE_AOLSERVER

/*   */
#undef HAVE_AP_CONFIG_H

/*   */
#undef HAVE_AP_COMPAT_H

/*   */
#undef HAVE_APACHE

/*   */
#undef HAVE_APACHE

/*   */
#undef HAVE_AP_CONFIG_H

/*   */
#undef HAVE_AP_CONFIG_H

/*   */
#undef HAVE_AP_COMPAT_H

/*   */
#undef HAVE_OLD_COMPAT_H

/*   */
#undef HAVE_AP_CONFIG_H

/*   */
#undef HAVE_AP_COMPAT_H

/*   */
#undef HAVE_OLD_COMPAT_H

/*   */
#undef HAVE_AP_CONFIG_H

/*   */
#undef HAVE_AP_COMPAT_H

/*   */
#undef HAVE_OLD_COMPAT_H

/*   */
#undef USE_TRANSFER_TABLES

/*   */
#undef PHP_APACHE_HAVE_CLIENT_FD

/*   */
#undef HAVE_AP_CONFIG_H

/*   */
#undef HAVE_AP_COMPAT_H

/*   */
#undef HAVE_APACHE_HOOKS

/*   */
#undef HAVE_APACHE

/*   */
#undef HAVE_AP_CONFIG_H

/*   */
#undef HAVE_AP_CONFIG_H

/*   */
#undef HAVE_AP_COMPAT_H

/*   */
#undef HAVE_OLD_COMPAT_H

/*   */
#undef HAVE_AP_CONFIG_H

/*   */
#undef HAVE_AP_COMPAT_H

/*   */
#undef HAVE_OLD_COMPAT_H

/*   */
#undef HAVE_AP_CONFIG_H

/*   */
#undef HAVE_AP_COMPAT_H

/*   */
#undef HAVE_OLD_COMPAT_H

/*   */
#undef USE_TRANSFER_TABLES

/*   */
#undef PHP_APACHE_HAVE_CLIENT_FD

/* Whether to compile with Caudium support */
#undef HAVE_CAUDIUM

/* Whether you have a Continuity Server */
#undef HAVE_CONTINUITY

/*   */
#undef WITH_ZEUS

/* Whether you have a Netscape/iPlanet/Sun Webserver */
#undef HAVE_NSAPI

/* Whether you have phttpd */
#undef HAVE_PHTTPD

/* whether you want Pi3Web support */
#undef WITH_PI3WEB

/* Whether you use Roxen */
#undef HAVE_ROXEN

/* Whether to use Roxen in ZTS mode */
#undef ROXEN_USE_ZTS

/* Define if the socklen_t typedef is in sys/socket.h */
#undef HAVE_SOCKLEN_T

/* Define if sockaddr_un in sys/un.h contains a sun_len component */
#undef HAVE_SOCKADDR_UN_SUN_LEN

/* Define if cross-process locking is required by accept() */
#undef USE_LOCKING

/* Define if system uses EBCDIC */
#undef CHARSET_EBCDIC

/* Define if processor uses big-endian word */
#undef WORDS_BIGENDIAN

/* whether write(2) works */
#undef PHP_WRITE_STDOUT

/*   */
#undef HAVE_SOCKET

/*   */
#undef HAVE_SOCKET

/*   */
#undef HAVE_LIBSOCKET

/*   */
#undef HAVE_SOCKETPAIR

/*   */
#undef HAVE_SOCKETPAIR

/*   */
#undef HAVE_LIBSOCKET

/*   */
#undef HAVE_HTONL

/*   */
#undef HAVE_HTONL

/*   */
#undef HAVE_LIBSOCKET

/*   */
#undef HAVE_GETHOSTNAME

/*   */
#undef HAVE_GETHOSTNAME

/*   */
#undef HAVE_LIBNSL

/*   */
#undef HAVE_GETHOSTBYADDR

/*   */
#undef HAVE_GETHOSTBYADDR

/*   */
#undef HAVE_LIBNSL

/*   */
#undef HAVE_YP_GET_DEFAULT_DOMAIN

/*   */
#undef HAVE_YP_GET_DEFAULT_DOMAIN

/*   */
#undef HAVE_LIBNSL

/*   */
#undef HAVE_DLOPEN

/*   */
#undef HAVE_DLOPEN

/*   */
#undef HAVE_LIBDL

/*   */
#undef HAVE_LIBDL

/*   */
#undef HAVE_INET_ATON

/*   */
#undef HAVE_INET_ATON

/*   */
#undef HAVE_LIBRESOLV

/*   */
#undef HAVE_INET_ATON

/*   */
#undef HAVE_LIBBIND

/*   */
#undef HAVE_FOPENCOOKIE

/*   */
#undef COOKIE_IO_FUNCTIONS_T

/*   */
#undef COOKIE_SEEKER_USES_OFF64_T

/* Define if system has broken getcwd */
#undef HAVE_BROKEN_GETCWD

/* Define if your glibc borks on fopen with mode a+ */
#undef HAVE_BROKEN_GLIBC_FOPEN_APPEND

/* Whether localtime_r is declared */
#undef MISSING_LOCALTIME_R_DECL

/* Whether gmtime_r is declared */
#undef MISSING_GMTIME_R_DECL

/* Whether asctime_r is declared */
#undef MISSING_ASCTIME_R_DECL

/* Whether ctime_r is declared */
#undef MISSING_CTIME_R_DECL

/* Whether strtok_r is declared */
#undef MISSING_STRTOK_R_DECL

/*   */
#undef MISSING_FCLOSE_DECL

/*   */
#undef MISSING_FCLOSE_DECL

/* whether you have tm_gmtoff in struct tm */
#undef HAVE_TM_GMTOFF

/* whether you have struct flock */
#undef HAVE_STRUCT_FLOCK

/* Whether you have socklen_t */
#undef HAVE_SOCKLEN_T

/* Size of intmax_t */
#undef SIZEOF_INTMAX_T

/* Whether intmax_t is available */
#undef HAVE_INTMAX_T

/* Size of ssize_t */
#undef SIZEOF_SSIZE_T

/* Whether ssize_t is available */
#undef HAVE_SSIZE_T

/* Size of ptrdiff_t */
#undef SIZEOF_PTRDIFF_T

/* Whether ptrdiff_t is available */
#undef HAVE_PTRDIFF_T

/* Whether you have struct sockaddr_storage */
#undef HAVE_SOCKADDR_STORAGE

/* Whether struct sockaddr has field sa_len */
#undef HAVE_SOCKADDR_SA_LEN

/*   */
#undef HAVE_NANOSLEEP

/*   */
#undef HAVE_LIBRT

/* Define if you have the getaddrinfo function */
#undef HAVE_GETADDRINFO

/* Whether system headers declare timezone */
#undef HAVE_DECLARED_TIMEZONE

/* Whether you have HP-UX 10.x */
#undef PHP_HPUX_TIME_R

/* Whether you have IRIX-style functions */
#undef PHP_IRIX_TIME_R

/* whether you have POSIX readdir_r */
#undef HAVE_POSIX_READDIR_R

/* whether you have old-style readdir_r */
#undef HAVE_OLD_READDIR_R

/*   */
#undef in_addr_t

/* Define if crypt_r has uses CRYPTD */
#undef CRYPT_R_CRYPTD

/* Define if crypt_r uses struct crypt_data */
#undef CRYPT_R_STRUCT_CRYPT_DATA

/* Define if struct crypt_data requires _GNU_SOURCE */
#undef CRYPT_R_GNU_SOURCE

/* Whether you have gcov */
#undef HAVE_GCOV

/*   */
#undef PHP_SAFE_MODE

/*   */
#undef PHP_SAFE_MODE

/*   */
#undef PHP_SAFE_MODE_EXEC_DIR

/*   */
#undef PHP_SAFE_MODE_EXEC_DIR

/*   */
#undef PHP_SIGCHILD

/*   */
#undef PHP_SIGCHILD

/*   */
#undef MAGIC_QUOTES

/*   */
#undef MAGIC_QUOTES

/*   */
#undef DEFAULT_SHORT_OPEN_TAG

/*   */
#undef DEFAULT_SHORT_OPEN_TAG

/* Whether you have dmalloc */
#undef HAVE_DMALLOC

/* Whether to enable IPv6 support */
#undef HAVE_IPV6

/*  Define if int32_t type is present.  */
#undef HAVE_INT32_T

/*  Define if uint32_t type is present.  */
#undef HAVE_UINT32_T

/* Whether to build date as dynamic module */
#undef COMPILE_DL_DATE

/* Whether to build ereg as dynamic module */
#undef COMPILE_DL_EREG

/*   */
#undef HAVE_REGEX_T_RE_MAGIC

/*   */
#undef HSREGEX

/*   */
#undef REGEX

/*   */
#undef REGEX

/* 1 */
#undef HAVE_REGEX_T_RE_MAGIC

/*   */
#undef HAVE_LIBXML

/*   */
#undef HAVE_LIBXML

/* Whether to build libxml as dynamic module */
#undef COMPILE_DL_LIBXML

/* Whether to build openssl as dynamic module */
#undef COMPILE_DL_OPENSSL

/* OpenSSL 0.9.7 or later */
#undef HAVE_DSA_DEFAULT_METHOD

/*   */
#undef HAVE_OPENSSL_EXT

/*   */
#undef HAVE_PCRE

/* Whether to build pcre as dynamic module */
#undef COMPILE_DL_PCRE

/* Whether to build pcre as dynamic module */
#undef COMPILE_DL_PCRE

/*   */
#undef HAVE_BUNDLED_PCRE

/* have commercial sqlite3 with crypto support */
#undef HAVE_SQLITE3_KEY

/* have sqlite3 with extension support */
#undef SQLITE_OMIT_LOAD_EXTENSION

/*   */
#undef HAVE_SQLITE3

/* Whether to build sqlite3 as dynamic module */
#undef COMPILE_DL_SQLITE3

/* Whether to build zlib as dynamic module */
#undef COMPILE_DL_ZLIB

/*   */
#undef HAVE_ZLIB

/* Whether to build bcmath as dynamic module */
#undef COMPILE_DL_BCMATH

/* Whether you have bcmath */
#undef HAVE_BCMATH

/*   */
#undef HAVE_BZ2

/* Whether to build bz2 as dynamic module */
#undef COMPILE_DL_BZ2

/*   */
#undef HAVE_CALENDAR

/* Whether to build calendar as dynamic module */
#undef COMPILE_DL_CALENDAR

/*   */
#undef HAVE_CTYPE

/* Whether to build ctype as dynamic module */
#undef COMPILE_DL_CTYPE

/* Have cURL with  SSL support */
#undef HAVE_CURL_SSL

/* Have cURL with OpenSSL support */
#undef HAVE_CURL_OPENSSL

/* Have cURL with GnuTLS support */
#undef HAVE_CURL_GNUTLS

/*   */
#undef HAVE_CURL

/*   */
#undef HAVE_CURL_VERSION_INFO

/*   */
#undef HAVE_CURL_EASY_STRERROR

/*   */
#undef HAVE_CURL_MULTI_STRERROR

/*   */
#undef PHP_CURL_URL_WRAPPERS

/* Whether to build curl as dynamic module */
#undef COMPILE_DL_CURL

/*   */
#undef QDBM_INCLUDE_FILE

/*   */
#undef DBA_QDBM

/*   */
#undef GDBM_INCLUDE_FILE

/*   */
#undef DBA_GDBM

/*   */
#undef NDBM_INCLUDE_FILE

/*   */
#undef DBA_NDBM

/*   */
#undef DBA_DB4

/*   */
#undef DB4_INCLUDE_FILE

/*   */
#undef DBA_DB3

/*   */
#undef DB3_INCLUDE_FILE

/*   */
#undef DBA_DB2

/*   */
#undef DB2_INCLUDE_FILE

/*   */
#undef DB1_VERSION

/*   */
#undef DB1_VERSION

/*   */
#undef DB1_INCLUDE_FILE

/*   */
#undef DBA_DB1

/*   */
#undef DBM_INCLUDE_FILE

/*   */
#undef DBM_VERSION

/*   */
#undef DBM_VERSION

/*   */
#undef DBA_DBM

/*   */
#undef DBA_CDB_BUILTIN

/*   */
#undef DBA_CDB_MAKE

/*   */
#undef DBA_CDB

/*   */
#undef CDB_INCLUDE_FILE

/*   */
#undef DBA_CDB

/*   */
#undef DBA_INIFILE

/*   */
#undef DBA_FLATFILE

/*   */
#undef HAVE_DBA

/* Whether to build dba as dynamic module */
#undef COMPILE_DL_DBA

/*   */
#undef HAVE_LIBXML

/*   */
#undef HAVE_DOM

/* Whether to build dom as dynamic module */
#undef COMPILE_DL_DOM

/* Whether to build enchant as dynamic module */
#undef COMPILE_DL_ENCHANT

/*   */
#undef HAVE_ENCHANT

/*   */
#undef HAVE_ENCHANT_BROKER_SET_PARAM

/*   */
#undef ENCHANT_VERSION_STRING

/* Whether you want EXIF (metadata from images) support */
#undef HAVE_EXIF

/* Whether to build exif as dynamic module */
#undef COMPILE_DL_EXIF

/* Whether to build fileinfo as dynamic module */
#undef COMPILE_DL_FILEINFO

/* Whether to build filter as dynamic module */
#undef COMPILE_DL_FILTER

/* Whether you want FTP support */
#undef HAVE_FTP

/* Whether to build ftp as dynamic module */
#undef COMPILE_DL_FTP

/*   */
#undef USE_GD_IMGSTRTTF

/*   */
#undef USE_GD_IMGSTRTTF

/*   */
#undef HAVE_LIBFREETYPE

/*   */
#undef ENABLE_GD_TTF

/*   */
#undef HAVE_LIBT1

/*   */
#undef HAVE_LIBGD

/*   */
#undef HAVE_LIBGD13

/*   */
#undef HAVE_LIBGD15

/*   */
#undef HAVE_LIBGD20

/*   */
#undef HAVE_LIBGD204

/*   */
#undef HAVE_GD_IMAGESETTILE

/*   */
#undef HAVE_GD_IMAGESETBRUSH

/*   */
#undef HAVE_GDIMAGECOLORRESOLVE

/*   */
#undef HAVE_COLORCLOSESTHWB

/*   */
#undef HAVE_GD_WBMP

/*   */
#undef HAVE_GD_GD2

/*   */
#undef HAVE_GD_PNG

/*   */
#undef HAVE_GD_XBM

/*   */
#undef HAVE_GD_BUNDLED

/*   */
#undef HAVE_GD_GIF_READ

/*   */
#undef HAVE_GD_GIF_CREATE

/*   */
#undef HAVE_GD_IMAGEELLIPSE

/*   */
#undef HAVE_GD_FONTCACHESHUTDOWN

/*   */
#undef HAVE_GD_FONTMUTEX

/*   */
#undef HAVE_GD_DYNAMIC_CTX_EX

/*   */
#undef HAVE_GD_GIF_CTX

/*   */
#undef HAVE_GD_JPG

/*   */
#undef HAVE_GD_XPM

/*   */
#undef HAVE_GD_STRINGFT

/*   */
#undef HAVE_GD_STRINGFTEX

/*   */
#undef ENABLE_GD_TTF

/*   */
#undef USE_GD_JISX0208

/*   */
#undef USE_GD_IMGSTRTTF

/*   */
#undef USE_GD_IMGSTRTTF

/*   */
#undef HAVE_LIBFREETYPE

/*   */
#undef ENABLE_GD_TTF

/*   */
#undef HAVE_LIBT1

/*   */
#undef HAVE_LIBGD

/*   */
#undef HAVE_LIBGD13

/*   */
#undef HAVE_LIBGD15

/*   */
#undef HAVE_GD_PNG

/*   */
#undef HAVE_GD_GIF_READ

/*   */
#undef HAVE_GD_GIF_CREATE

/*   */
#undef HAVE_GD_WBMP

/*   */
#undef HAVE_GD_JPG

/*   */
#undef HAVE_GD_XPM

/*   */
#undef HAVE_GD_GD2

/*   */
#undef HAVE_LIBGD20

/*   */
#undef HAVE_GD_IMAGESETTILE

/*   */
#undef HAVE_GD_IMAGEELLIPSE

/*   */
#undef HAVE_GD_IMAGESETBRUSH

/*   */
#undef HAVE_GD_STRINGTTF

/*   */
#undef HAVE_GD_STRINGFT

/*   */
#undef HAVE_GD_STRINGFTEX

/*   */
#undef HAVE_COLORCLOSESTHWB

/*   */
#undef HAVE_GDIMAGECOLORRESOLVE

/*   */
#undef HAVE_GD_GIF_CTX

/*   */
#undef HAVE_GD_CACHE_CREATE

/*   */
#undef HAVE_GD_FONTCACHESHUTDOWN

/*   */
#undef HAVE_GD_FREEFONTCACHE

/*   */
#undef HAVE_GD_FONTMUTEX

/*   */
#undef HAVE_GD_DYNAMIC_CTX_EX

/*   */
#undef HAVE_LIBGD204

/* Whether to build gd as dynamic module */
#undef COMPILE_DL_GD

/*   */
#undef HAVE_LIBINTL

/* Whether to build gettext as dynamic module */
#undef COMPILE_DL_GETTEXT

/*   */
#undef HAVE_NGETTEXT

/*   */
#undef HAVE_DNGETTEXT

/*   */
#undef HAVE_DCNGETTEXT

/*   */
#undef HAVE_BIND_TEXTDOMAIN_CODESET

/* Whether to build gmp as dynamic module */
#undef COMPILE_DL_GMP

/*   */
#undef HAVE_GMP

/*   */
#undef PHP_MHASH_BC

/* Have HASH Extension */
#undef HAVE_HASH_EXT

/* Define if processor uses big-endian word */
#undef WORDS_BIGENDIAN

/* Whether to build hash as dynamic module */
#undef COMPILE_DL_HASH

/*   */
#undef HAVE_LIBICONV

/*   */
#undef HAVE_GICONV_H

/*   */
#undef HAVE_LIBICONV

/*   */
#undef HAVE_ICONV

/* Which iconv implementation to use */
#undef PHP_ICONV_IMPL

/* Konstantin Chuguev's iconv implementation */
#undef HAVE_BSD_ICONV

/* Which iconv implementation to use */
#undef PHP_ICONV_IMPL

/* glibc's iconv implementation */
#undef HAVE_GLIBC_ICONV

/* Which iconv implementation to use */
#undef PHP_ICONV_IMPL

/* IBM iconv implementation */
#undef HAVE_IBM_ICONV

/* Which iconv implementation to use */
#undef PHP_ICONV_IMPL

/* Whether iconv supports error no or not */
#undef ICONV_SUPPORTS_ERRNO

/* Whether iconv supports error no or not */
#undef ICONV_SUPPORTS_ERRNO

/* Whether iconv supports error no or not */
#undef ICONV_SUPPORTS_ERRNO

/* Path to iconv.h */
#undef PHP_ICONV_H_PATH

/* Whether to build iconv as dynamic module */
#undef COMPILE_DL_ICONV

/* Whether to build imap as dynamic module */
#undef COMPILE_DL_IMAP

/*   */
#undef HAVE_IMAP

/*   */
#undef HAVE_IMAP2000

/*   */
#undef HAVE_IMAP2000

/*   */
#undef HAVE_IMAP2000

/*   */
#undef HAVE_IMAP2000

/*   */
#undef HAVE_IMAP2000

/*   */
#undef HAVE_IMAP2000

/*   */
#undef HAVE_IMAP2004

/* Whether utf8_mime2text() has new signature */
#undef HAVE_NEW_MIME2TEXT

/*   */
#undef HAVE_IMAP2001

/*   */
#undef HAVE_LIBPAM

/*   */
#undef HAVE_LIBCRYPT

/*   */
#undef HAVE_IMAP_KRB

/*   */
#undef HAVE_IMAP_SSL

/*   */
#undef HAVE_IMAP_AUTH_GSS

/*   */
#undef HAVE_IMAP_MUTF7

/*   */
#undef HAVE_RFC822_OUTPUT_ADDRESS_LIST

/*   */
#undef HAVE_IBASE

/* Whether to build interbase as dynamic module */
#undef COMPILE_DL_INTERBASE

/* Whether to build intl as dynamic module */
#undef COMPILE_DL_INTL

/* whether to enable JavaScript Object Serialization support */
#undef HAVE_JSON

/* Whether to build json as dynamic module */
#undef COMPILE_DL_JSON

/* Whether to build ldap as dynamic module */
#undef COMPILE_DL_LDAP

/*   */
#undef HAVE_NSLDAP

/*   */
#undef HAVE_NSLDAP

/*   */
#undef HAVE_NSLDAP

/*   */
#undef HAVE_NSLDAP

/*   */
#undef HAVE_ORALDAP

/*   */
#undef HAVE_ORALDAP_10

/*   */
#undef HAVE_LDAP

/* Whether 3 arg set_rebind_proc() */
#undef HAVE_3ARG_SETREBINDPROC

/*   */
#undef HAVE_LDAP_SASL_SASL_H

/*   */
#undef HAVE_LDAP_SASL_H

/* LDAP SASL support */
#undef HAVE_LDAP_SASL

/* whether to have multibyte string support */
#undef HAVE_MBSTRING

/* whether to check multibyte regex backtrack */
#undef USE_COMBINATION_EXPLOSION_CHECK

/* Define to 1 if you have the <stdarg.h> header file. */
#undef HAVE_STDARG_PROTOTYPES

/* Define to 1 if the bundled oniguruma is used */
#undef PHP_ONIG_BUNDLED

/* Define to 1 if the oniguruma library is available */
#undef HAVE_ONIG

/* Define to 1 if the oniguruma library is available */
#undef HAVE_ONIG

/* define to 1 if oniguruma has an invalid entry for KOI8 encoding */
#undef PHP_ONIG_BAD_KOI8_ENTRY

/* whether to have multibyte regex support */
#undef HAVE_MBREGEX

/* Whether to build mbstring as dynamic module */
#undef COMPILE_DL_MBSTRING

/*   */
#undef HAVE_LIBMCRYPT

/*   */
#undef HAVE_LIBMCRYPT

/* Whether to build mcrypt as dynamic module */
#undef COMPILE_DL_MCRYPT

/* Whether to build mssql as dynamic module */
#undef COMPILE_DL_MSSQL

/*   */
#undef HAVE_LIBDNET_STUB

/*   */
#undef HAVE_MSSQL

/*   */
#undef HAVE_FREETDS

/*   */
#undef PHP_MYSQL_UNIX_SOCK_ADDR

/*   */
#undef PHP_MYSQL_UNIX_SOCK_ADDR

/* Whether you have MySQL */
#undef HAVE_MYSQL

/* Whether to build mysql as dynamic module */
#undef COMPILE_DL_MYSQL

/* Whether mysqlnd is enabled */
#undef MYSQL_USE_MYSQLND

/* embedded MySQL support enabled */
#undef HAVE_EMBEDDED_MYSQLI

/*   */
#undef HAVE_MYSQLILIB

/*   */
#undef HAVE_STMT_NEXT_RESULT

/* Whether to build mysqli as dynamic module */
#undef COMPILE_DL_MYSQLI

/* Whether mysqlnd is enabled */
#undef MYSQLI_USE_MYSQLND

/*   */
#undef HAVE_OCI_LOB_READ2

/* Whether to build oci8 as dynamic module */
#undef COMPILE_DL_OCI8

/*   */
#undef HAVE_OCI8

/*   */
#undef PHP_OCI8_DEF_DIR

/*   */
#undef PHP_OCI8_DEF_SHARED_LIBADD

/*   */
#undef HAVE_OCI_INSTANT_CLIENT

/*   */
#undef HAVE_OCI_LOB_READ2

/* Whether to build oci8 as dynamic module */
#undef COMPILE_DL_OCI8

/*   */
#undef HAVE_OCI8

/*   */
#undef HAVE_ADABAS

/*   */
#undef HAVE_SAPDB

/*   */
#undef HAVE_SOLID_35

/*   */
#undef HAVE_SOLID_30

/*   */
#undef HAVE_SOLID

/* Needed in sqlunix.h  */
#undef SS_LINUX

/* Needed in sqlunix.h  */
#undef SS_LINUX

/* Needed in sqlunix.h for wchar defs  */
#undef SS_FBX

/* Needed in sqlunix.h for wchar defs  */
#undef SS_FBX

/*   */
#undef HAVE_IBMDB2

/*   */
#undef HAVE_ODBC_ROUTER

/*   */
#undef HAVE_EMPRESS

/*   */
#undef HAVE_EMPRESS

/*   */
#undef AIX

/*   */
#undef HPUX

/*   */
#undef LINUX

/*   */
#undef NEUTRINO

/*   */
#undef ISOLARIS

/*   */
#undef SOLARIS

/*   */
#undef UNIXWARE

/*   */
#undef HAVE_BIRDSTEP

/*   */
#undef HAVE_CODBC

/*   */
#undef HAVE_IODBC

/*   */
#undef HAVE_ODBC2

/*   */
#undef HAVE_ESOOB

/*   */
#undef HAVE_UNIXODBC

/* Whether you want DBMaker */
#undef HAVE_DBMAKER

/*   */
#undef HAVE_SQLDATASOURCES

/*   */
#undef HAVE_UODBC

/* Whether to build odbc as dynamic module */
#undef COMPILE_DL_ODBC

/*   */
#undef HAVE_FORK

/*   */
#undef HAVE_WAITPID

/*   */
#undef HAVE_SIGACTION

/* Whether to build pcntl as dynamic module */
#undef COMPILE_DL_PCNTL

/* Whether to build pdo as dynamic module */
#undef COMPILE_DL_PDO

/* Whether to build pdo_dblib as dynamic module */
#undef COMPILE_DL_PDO_DBLIB

/*   */
#undef HAVE_LIBDNET_STUB

/*   */
#undef HAVE_PDO_DBLIB

/*   */
#undef HAVE_FREETDS

/*   */
#undef HAVE_PDO_FIREBIRD

/* Whether to build pdo_firebird as dynamic module */
#undef COMPILE_DL_PDO_FIREBIRD

/* Whether pdo_mysql uses mysqlnd */
#undef PDO_USE_MYSQLND

/* Whether you have MySQL */
#undef HAVE_MYSQL

/*   */
#undef PDO_MYSQL_UNIX_ADDR

/* Whether to build pdo_mysql as dynamic module */
#undef COMPILE_DL_PDO_MYSQL

/*   */
#undef HAVE_OCIENVCREATE

/*   */
#undef HAVE_OCIENVNLSCREATE

/*   */
#undef HAVE_OCILOBISTEMPORARY

/*   */
#undef HAVE_OCILOBISTEMPORARY

/*   */
#undef HAVE_OCICOLLASSIGN

/*   */
#undef HAVE_OCISTMTFETCH2

/* Whether to build pdo_oci as dynamic module */
#undef COMPILE_DL_PDO_OCI

/*   */
#undef PHP_PDO_OCI_CLIENT_VERSION

/*   */
#undef HAVE_ODBC_H

/*   */
#undef HAVE_ODBCSDK_H

/*   */
#undef HAVE_IODBC_H

/*   */
#undef HAVE_SQLUNIX_H

/*   */
#undef HAVE_SQLTYPES_H

/*   */
#undef HAVE_SQLUCODE_H

/*   */
#undef HAVE_SQL_H

/*   */
#undef HAVE_ISQL_H

/*   */
#undef HAVE_SQLEXT_H

/*   */
#undef HAVE_ISQLEXT_H

/*   */
#undef HAVE_UDBCEXT_H

/*   */
#undef HAVE_SQLCLI1_H

/*   */
#undef HAVE_LIBRARYMANAGER_H

/*   */
#undef HAVE_CLI0CORE_H

/*   */
#undef HAVE_CLI0EXT_H

/*   */
#undef HAVE_CLI0CLI_H

/*   */
#undef HAVE_CLI0DEFS_H

/*   */
#undef HAVE_CLI0ENV_H

/* Whether to build pdo_odbc as dynamic module */
#undef COMPILE_DL_PDO_ODBC

/* Whether to have pg_config.h */
#undef HAVE_PG_CONFIG_H

/* Whether to have pg_config.h */
#undef HAVE_PG_CONFIG_H

/* Whether to build PostgreSQL for PDO support or not */
#undef HAVE_PDO_PGSQL

/* PostgreSQL 7.4 or later */
#undef HAVE_PQPARAMETERSTATUS

/* PostgreSQL 8.0 or later */
#undef HAVE_PQPREPARE

/* PostgreSQL 8.1.4 or later */
#undef HAVE_PQESCAPE_CONN

/* PostgreSQL 8.1.4 or later */
#undef HAVE_PQESCAPE_BYTEA_CONN

/* Whether libpq is compiled with --enable-multibyte */
#undef HAVE_PGSQL_WITH_MULTIBYTE_SUPPORT

/* Whether to build pdo_pgsql as dynamic module */
#undef COMPILE_DL_PDO_PGSQL

/*   */
#undef HAVE_PDO_SQLITELIB

/* have commercial sqlite3 with crypto support */
#undef HAVE_SQLITE3_KEY

/* Whether to build pdo_sqlite as dynamic module */
#undef COMPILE_DL_PDO_SQLITE

/* Whether to build pdo_sqlite as dynamic module */
#undef COMPILE_DL_PDO_SQLITE

/* Whether to have pg_config.h */
#undef HAVE_PG_CONFIG_H

/* Whether to have pg_config.h */
#undef HAVE_PG_CONFIG_H

/* Whether to build PostgreSQL support or not */
#undef HAVE_PGSQL

/* PostgreSQL 7.2.0 or later */
#undef HAVE_PQESCAPE

/* PostgreSQL 7.3.0 or later */
#undef HAVE_PQUNESCAPEBYTEA

/* PostgreSQL 7.0.x or later */
#undef HAVE_PQSETNONBLOCKING

/* Broken libpq under windows */
#undef HAVE_PQCMDTUPLES

/* Older PostgreSQL */
#undef HAVE_PQOIDVALUE

/* PostgreSQL 7.0.x or later */
#undef HAVE_PQCLIENTENCODING

/* PostgreSQL 7.4 or later */
#undef HAVE_PQPARAMETERSTATUS

/* PostgreSQL 7.4 or later */
#undef HAVE_PQPROTOCOLVERSION

/* PostgreSQL 7.4 or later */
#undef HAVE_PGTRANSACTIONSTATUS

/* PostgreSQL 7.4 or later */
#undef HAVE_PQEXECPARAMS

/* PostgreSQL 7.4 or later */
#undef HAVE_PQPREPARE

/* PostgreSQL 7.4 or later */
#undef HAVE_PQEXECPREPARED

/* PostgreSQL 7.4 or later */
#undef HAVE_PQRESULTERRORFIELD

/* PostgreSQL 7.4 or later */
#undef HAVE_PQSENDQUERYPARAMS

/* PostgreSQL 7.4 or later */
#undef HAVE_PQSENDPREPARE

/* PostgreSQL 7.4 or later */
#undef HAVE_PQSENDQUERYPREPARED

/* PostgreSQL 7.4 or later */
#undef HAVE_PQPUTCOPYDATA

/* PostgreSQL 7.4 or later */
#undef HAVE_PQPUTCOPYEND

/* PostgreSQL 7.4 or later */
#undef HAVE_PQGETCOPYDATA

/* PostgreSQL 7.4 or later */
#undef HAVE_PQFREEMEM

/* PostgreSQL 7.4 or later */
#undef HAVE_PQSETERRORVERBOSITY

/* PostgreSQL 7.4 or later */
#undef HAVE_PQFTABLE

/* PostgreSQL 8.1.4 or later */
#undef HAVE_PQESCAPE_CONN

/* PostgreSQL 8.1.4 or later */
#undef HAVE_PQESCAPE_BYTEA_CONN

/* Whether libpq is compiled with --enable-multibyte */
#undef HAVE_PGSQL_WITH_MULTIBYTE_SUPPORT

/* PostgreSQL 8.1 or later */
#undef HAVE_PG_LO_CREATE

/* PostgreSQL 8.4 or later */
#undef HAVE_PG_LO_IMPORT_WITH_OID

/* Whether to build pgsql as dynamic module */
#undef COMPILE_DL_PGSQL

/* Whether to build phar as dynamic module */
#undef COMPILE_DL_PHAR

/*   */
#undef PHAR_HASH_OK

/*   */
#undef PHAR_HAVE_OPENSSL

/* whether to include POSIX-like functions */
#undef HAVE_POSIX

/* Whether to build posix as dynamic module */
#undef COMPILE_DL_POSIX

/* Whether you have a working ttyname_r */
#undef HAVE_TTYNAME_R

/* Wether struct utsname has domainname */
#undef HAVE_UTSNAME_DOMAINNAME

/* Whether to build pspell as dynamic module */
#undef COMPILE_DL_PSPELL

/*   */
#undef HAVE_PSPELL

/*   */
#undef HAVE_RL_CALLBACK_READ_CHAR

/*   */
#undef HAVE_LIBREADLINE

/*   */
#undef HAVE_LIBEDIT

/* Whether to build readline as dynamic module */
#undef COMPILE_DL_READLINE

/* Whether we have librecode 3.5 */
#undef HAVE_BROKEN_RECODE

/* Whether we have librecode 3.5 or higher */
#undef HAVE_LIBRECODE

/* Whether to build recode as dynamic module */
#undef COMPILE_DL_RECODE

/* Whether Reflection is enabled */
#undef HAVE_REFLECTION

/* Whether to build reflection as dynamic module */
#undef COMPILE_DL_REFLECTION

/*   */
#undef HAVE_PWRITE

/* whether pwrite64 is default */
#undef PHP_PWRITE_64

/*   */
#undef HAVE_PREAD

/* whether pread64 is default */
#undef PHP_PREAD_64

/* Whether to build session as dynamic module */
#undef COMPILE_DL_SESSION

/*   */
#undef HAVE_PHP_SESSION

/* Whether you have libmm */
#undef HAVE_LIBMM

/*   */
#undef HAVE_SHMOP

/* Whether to build shmop as dynamic module */
#undef COMPILE_DL_SHMOP

/*   */
#undef HAVE_LIBXML

/*   */
#undef HAVE_SIMPLEXML

/* Whether to build simplexml as dynamic module */
#undef COMPILE_DL_SIMPLEXML

/*   */
#undef HAVE_NET_SNMP

/*   */
#undef HAVE_SNMP_PARSE_OID

/*   */
#undef HAVE_SNMP

/*   */
#undef UCD_SNMP_HACK

/* Whether to build snmp as dynamic module */
#undef COMPILE_DL_SNMP

/*   */
#undef HAVE_LIBXML

/*   */
#undef HAVE_SOAP

/* Whether to build soap as dynamic module */
#undef COMPILE_DL_SOAP

/* Whether you have struct cmsghdr */
#undef HAVE_CMSGHDR

/*   */
#undef MISSING_MSGHDR_MSGFLAGS

/*   */
#undef HAVE_SOCKETS

/* Whether to build sockets as dynamic module */
#undef COMPILE_DL_SOCKETS

/* Whether struct _zend_object_value is packed */
#undef HAVE_PACKED_OBJECT_VALUE

/* Whether you want SPL (Standard PHP Library) support */
#undef HAVE_SPL

/* Whether to build spl as dynamic module */
#undef COMPILE_DL_SPL

/* Have PDO */
#undef PHP_SQLITE2_HAVE_PDO

/* Whether to build sqlite as dynamic module */
#undef COMPILE_DL_SQLITE

/* Size of a pointer */
#undef SQLITE_PTR_SZ

/*   */
#undef SQLITE_UTF8

/* Define if flush should be called explicitly after a buffered io. */
#undef HAVE_FLUSHIO

/*   */
#undef HAVE_CRYPT

/* whether the compiler supports __alignof__ */
#undef HAVE_ALIGNOF

/* whether the compiler supports __attribute__ ((__aligned__)) */
#undef HAVE_ATTRIBUTE_ALIGNED

/* Whether PHP has to use its own crypt_r for blowfish, des, ext des and md5 */
#undef PHP_USE_PHP_CRYPT_R

/* Whether the system supports standard DES salt */
#undef PHP_STD_DES_CRYPT

/* Whether the system supports BlowFish salt */
#undef PHP_BLOWFISH_CRYPT

/* Whether the system supports extended DES salt */
#undef PHP_EXT_DES_CRYPT

/* Whether the system supports MD5 salt */
#undef PHP_MD5_CRYPT

/* Whether the system supports SHA512 salt */
#undef PHP_SHA512_CRYPT

/* Whether the system supports SHA256 salt */
#undef PHP_SHA256_CRYPT

/* Whether the system supports standard DES salt */
#undef PHP_STD_DES_CRYPT

/* Whether the system supports BlowFish salt */
#undef PHP_BLOWFISH_CRYPT

/* Whether the system supports extended DES salt */
#undef PHP_EXT_DES_CRYPT

/* Whether the system supports SHA512 salt */
#undef PHP_EXT_SHA512_CRYPT

/* Whether the system supports SHA256 salt */
#undef PHP_EXT_SHA256_CRYPT

/* Whether PHP has to use its own crypt_r for blowfish, des and ext des */
#undef PHP_USE_PHP_CRYPT_R

/* Define if your system has fork/vfork/CreateProcess */
#undef PHP_CAN_SUPPORT_PROC_OPEN

/* Whether to enable chroot() function */
#undef ENABLE_CHROOT_FUNC

/*   */
#undef HAVE_RES_NSEARCH

/*   */
#undef HAVE_RES_NSEARCH

/*   */
#undef HAVE_LIBRESOLV

/*   */
#undef HAVE_RES_NSEARCH

/*   */
#undef HAVE_LIBBIND

/*   */
#undef HAVE_RES_NSEARCH

/*   */
#undef HAVE_LIBSOCKET

/*   */
#undef HAVE_DNS_SEARCH

/*   */
#undef HAVE_DNS_SEARCH

/*   */
#undef HAVE_LIBRESOLV

/*   */
#undef HAVE_DNS_SEARCH

/*   */
#undef HAVE_LIBBIND

/*   */
#undef HAVE_DNS_SEARCH

/*   */
#undef HAVE_LIBSOCKET

/*   */
#undef HAVE_DN_EXPAND

/*   */
#undef HAVE_DN_EXPAND

/*   */
#undef HAVE_LIBRESOLV

/*   */
#undef HAVE_DN_EXPAND

/*   */
#undef HAVE_LIBBIND

/*   */
#undef HAVE_DN_EXPAND

/*   */
#undef HAVE_LIBSOCKET

/*   */
#undef HAVE_DN_SKIPNAME

/*   */
#undef HAVE_DN_SKIPNAME

/*   */
#undef HAVE_LIBRESOLV

/*   */
#undef HAVE_DN_SKIPNAME

/*   */
#undef HAVE_LIBBIND

/*   */
#undef HAVE_DN_SKIPNAME

/*   */
#undef HAVE_LIBSOCKET

/*   */
#undef HAVE_RES_SEARCH

/*   */
#undef HAVE_RES_SEARCH

/*   */
#undef HAVE_LIBRESOLV

/*   */
#undef HAVE_RES_SEARCH

/*   */
#undef HAVE_LIBBIND

/*   */
#undef HAVE_RES_SEARCH

/*   */
#undef HAVE_LIBSOCKET

/* whether atof() accepts NAN */
#undef HAVE_ATOF_ACCEPTS_NAN

/* whether atof() accepts INF */
#undef HAVE_ATOF_ACCEPTS_INF

/* whether HUGE_VAL == INF */
#undef HAVE_HUGE_VAL_INF

/* whether HUGE_VAL + -HUGEVAL == NAN */
#undef HAVE_HUGE_VAL_NAN

/* whether strptime() declaration fails */
#undef HAVE_STRPTIME_DECL_FAILS

/* Define if your system has mbstate_t in wchar.h */
#undef HAVE_MBSTATE_T

/* Whether to build standard as dynamic module */
#undef COMPILE_DL_STANDARD

/*   */
#undef HAVE_SYBASE_CT

/* Whether to build sybase_ct as dynamic module */
#undef COMPILE_DL_SYBASE_CT

/*   */
#undef HAVE_SYSVMSG

/* Whether to build sysvmsg as dynamic module */
#undef COMPILE_DL_SYSVMSG

/* Whether to build sysvsem as dynamic module */
#undef COMPILE_DL_SYSVSEM

/*   */
#undef HAVE_SYSVSEM

/*   */
#undef HAVE_SEMUN

/*   */
#undef HAVE_SEMUN

/*   */
#undef HAVE_SYSVSHM

/* Whether to build sysvshm as dynamic module */
#undef COMPILE_DL_SYSVSHM

/*   */
#undef HAVE_TIDYOPTGETDOC

/* Whether to build tidy as dynamic module */
#undef COMPILE_DL_TIDY

/*   */
#undef HAVE_TIDY

/* Whether to build tokenizer as dynamic module */
#undef COMPILE_DL_TOKENIZER

/*   */
#undef HAVE_LIBXML

/*   */
#undef HAVE_LIBEXPAT

/*   */
#undef HAVE_WDDX

/* Whether to build wddx as dynamic module */
#undef COMPILE_DL_WDDX

/*   */
#undef HAVE_LIBXML

/*   */
#undef HAVE_LIBEXPAT

/* Whether to build xml as dynamic module */
#undef COMPILE_DL_XML

/*   */
#undef HAVE_XML

/*   */
#undef HAVE_LIBXML

/*   */
#undef HAVE_XMLREADER

/* Whether to build xmlreader as dynamic module */
#undef COMPILE_DL_XMLREADER

/*   */
#undef HAVE_XMLRPC

/*   */
#undef HAVE_LIBXML

/*   */
#undef HAVE_LIBEXPAT

/*   */
#undef HAVE_LIBICONV

/*   */
#undef HAVE_GICONV_H

/*   */
#undef HAVE_LIBICONV

/*   */
#undef HAVE_ICONV

/*   */
#undef UNDEF_THREADS_HACK

/* Whether to build xmlrpc as dynamic module */
#undef COMPILE_DL_XMLRPC

/* Whether to build xmlrpc as dynamic module */
#undef COMPILE_DL_XMLRPC

/*   */
#undef HAVE_LIBXML

/*   */
#undef HAVE_XMLWRITER

/* Whether to build xmlwriter as dynamic module */
#undef COMPILE_DL_XMLWRITER

/*   */
#undef HAVE_XSL_EXSLT

/*   */
#undef HAVE_XSL

/* Whether to build xsl as dynamic module */
#undef COMPILE_DL_XSL

/*   */
#undef HAVE_ZIP

/* Whether to build zip as dynamic module */
#undef COMPILE_DL_ZIP

/* Whether to build mysqlnd as dynamic module */
#undef COMPILE_DL_MYSQLND

/* Enable compressed protocol support */
#undef MYSQLND_COMPRESSION_ENABLED

/* Define if int32_t type is present.  */
#undef HAVE_INT32_T

/* Define if uint32_t type is present.  */
#undef HAVE_UINT32_T

/* Whether sprintf is broken */
#undef ZEND_BROKEN_SPRINTF

/* whether floatingpoint.h defines fp_except */
#undef HAVE_FP_EXCEPT

/* whether _FPU_SETCW is present and usable */
#undef HAVE__FPU_SETCW

/* whether fpsetprec is present and usable */
#undef HAVE_FPSETPREC

/* whether _controlfp is present usable */
#undef HAVE__CONTROLFP

/* whether _controlfp_s is present and usable */
#undef HAVE__CONTROLFP_S

/* whether FPU control word can be manipulated by inline assembler */
#undef HAVE_FPU_INLINE_ASM_X86

/* Define if double cast to long preserves least significant bits */
#undef ZEND_DVAL_TO_LVAL_CAST_OK

/* Define if dlsym() requires a leading underscore in symbol names.  */
#undef DLSYM_NEEDS_UNDERSCORE

/* virtual machine dispatch method */
#undef ZEND_VM_KIND

/* virtual machine dispatch method */
#undef ZEND_VM_KIND

/* virtual machine dispatch method */
#undef ZEND_VM_KIND

/*   */
#undef ZEND_DEBUG

/*   */
#undef ZEND_DEBUG

/*   */
#undef ZTS

/*   */
#undef ZEND_MULTIBYTE

/* Define if the target system is darwin */
#undef DARWIN

/*   */
#undef ZEND_MM_ALIGNMENT

/*   */
#undef ZEND_MM_ALIGNMENT_LOG2

/* Define if the target system has support for memory allocation using mmap(MAP_ANON) */
#undef HAVE_MEM_MMAP_ANON

/* Define if the target system has support for memory allocation using mmap(/dev/zero) */
#undef HAVE_MEM_MMAP_ZERO

/*   */
#undef ZTS

/* Whether you use GNU Pth */
#undef GNUPTH

/*   */
#undef TSRM_ST

/* Whether to use native BeOS threads */
#undef BETHREADS

/* Whether to use Pthreads */
#undef PTHREADS

/* PHP build date */
#undef PHP_BUILD_DATE

/* hardcode for each of the cross compiler host */
#undef PHP_OS

/* hardcode for each of the cross compiler host */
#undef PHP_UNAME

/* uname -a output */
#undef PHP_UNAME

/* uname output */
#undef PHP_OS

/*   */
#undef HAVE_BUILD_DEFS_H


#ifndef ZEND_ACCONFIG_H_NO_C_PROTOS

#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif

#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif

#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif

#ifdef HAVE_IEEEFP_H
# include <ieeefp.h>
#endif

#ifdef HAVE_STRING_H
# include <string.h>
#else
# include <strings.h>
#endif

#if ZEND_BROKEN_SPRINTF
int zend_sprintf(char *buffer, const char *format, ...);
#else
# define zend_sprintf sprintf
#endif

#include <math.h>

/* To enable the is_nan, is_infinite and is_finite PHP functions */
#ifdef NETWARE
	#define HAVE_ISNAN 1
	#define HAVE_ISINF 1
	#define HAVE_ISFINITE 1
#endif

#ifndef zend_isnan
#ifdef HAVE_ISNAN
#define zend_isnan(a) isnan(a)
#elif defined(HAVE_FPCLASS)
#define zend_isnan(a) ((fpclass(a) == FP_SNAN) || (fpclass(a) == FP_QNAN))
#else
#define zend_isnan(a) 0
#endif
#endif

#ifdef HAVE_ISINF
#define zend_isinf(a) isinf(a)
#elif defined(INFINITY)
/* Might not work, but is required by ISO C99 */
#define zend_isinf(a) (((a)==INFINITY)?1:0)
#elif defined(HAVE_FPCLASS)
#define zend_isinf(a) ((fpclass(a) == FP_PINF) || (fpclass(a) == FP_NINF))
#else
#define zend_isinf(a) 0
#endif

#ifdef HAVE_FINITE
#define zend_finite(a) finite(a)
#elif defined(HAVE_ISFINITE) || defined(isfinite)
#define zend_finite(a) isfinite(a)
#elif defined(fpclassify)
#define zend_finite(a) ((fpclassify((a))!=FP_INFINITE&&fpclassify((a))!=FP_NAN)?1:0)
#else
#define zend_finite(a) (zend_isnan(a) ? 0 : zend_isinf(a) ? 0 : 1)
#endif

#endif /* ifndef ZEND_ACCONFIG_H_NO_C_PROTOS */

#ifdef NETWARE
#ifdef USE_WINSOCK
#/*This detection against winsock is of no use*/ undef HAVE_SOCKLEN_T
#/*This detection against winsock is of no use*/ undef HAVE_SYS_SOCKET_H
#endif
#endif

/*
 * Local variables:
 * tab-width: 4
 * c-basic-offset: 4
 * indent-tabs-mode: t
 * End:
 */
#undef PTHREADS