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
|
/* main/php_config.h.in. Generated from configure.ac by autoheader. */
#ifndef PHP_CONFIG_H
#define PHP_CONFIG_H
#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
/* The cdb handler header file. */
#undef CDB_INCLUDE_FILE
/* Define to 1 if the PHP extension 'bcmath' is built as a dynamic module. */
#undef COMPILE_DL_BCMATH
/* Define to 1 if the PHP extension 'bz2' is built as a dynamic module. */
#undef COMPILE_DL_BZ2
/* Define to 1 if the PHP extension 'calendar' is built as a dynamic module.
*/
#undef COMPILE_DL_CALENDAR
/* Define to 1 if the PHP extension 'ctype' is built as a dynamic module. */
#undef COMPILE_DL_CTYPE
/* Define to 1 if the PHP extension 'curl' is built as a dynamic module. */
#undef COMPILE_DL_CURL
/* Define to 1 if the PHP extension 'date' is built as a dynamic module. */
#undef COMPILE_DL_DATE
/* Define to 1 if the PHP extension 'dba' is built as a dynamic module. */
#undef COMPILE_DL_DBA
/* Define to 1 if the PHP extension 'dl_test' is built as a dynamic module. */
#undef COMPILE_DL_DL_TEST
/* Define to 1 if the PHP extension 'dom' is built as a dynamic module. */
#undef COMPILE_DL_DOM
/* Define to 1 if the PHP extension 'enchant' is built as a dynamic module. */
#undef COMPILE_DL_ENCHANT
/* Define to 1 if the PHP extension 'exif' is built as a dynamic module. */
#undef COMPILE_DL_EXIF
/* Define to 1 if the PHP extension 'ffi' is built as a dynamic module. */
#undef COMPILE_DL_FFI
/* Define to 1 if the PHP extension 'fileinfo' is built as a dynamic module.
*/
#undef COMPILE_DL_FILEINFO
/* Define to 1 if the PHP extension 'filter' is built as a dynamic module. */
#undef COMPILE_DL_FILTER
/* Define to 1 if the PHP extension 'ftp' is built as a dynamic module. */
#undef COMPILE_DL_FTP
/* Define to 1 if the PHP extension 'gd' is built as a dynamic module. */
#undef COMPILE_DL_GD
/* Define to 1 if the PHP extension 'gettext' is built as a dynamic module. */
#undef COMPILE_DL_GETTEXT
/* Define to 1 if the PHP extension 'gmp' is built as a dynamic module. */
#undef COMPILE_DL_GMP
/* Define to 1 if the PHP extension 'hash' is built as a dynamic module. */
#undef COMPILE_DL_HASH
/* Define to 1 if the PHP extension 'iconv' is built as a dynamic module. */
#undef COMPILE_DL_ICONV
/* Define to 1 if the PHP extension 'intl' is built as a dynamic module. */
#undef COMPILE_DL_INTL
/* Define to 1 if the PHP extension 'json' is built as a dynamic module. */
#undef COMPILE_DL_JSON
/* Define to 1 if the PHP extension 'ldap' is built as a dynamic module. */
#undef COMPILE_DL_LDAP
/* Define to 1 if the PHP extension 'libxml' is built as a dynamic module. */
#undef COMPILE_DL_LIBXML
/* Define to 1 if the PHP extension 'mbstring' is built as a dynamic module.
*/
#undef COMPILE_DL_MBSTRING
/* Define to 1 if the PHP extension 'mysqli' is built as a dynamic module. */
#undef COMPILE_DL_MYSQLI
/* Define to 1 if the PHP extension 'mysqlnd' is built as a dynamic module. */
#undef COMPILE_DL_MYSQLND
/* Define to 1 if the PHP extension 'odbc' is built as a dynamic module. */
#undef COMPILE_DL_ODBC
/* Define to 1 if the PHP extension 'opcache' is built as a dynamic module. */
#undef COMPILE_DL_OPCACHE
/* Define to 1 if the PHP extension 'openssl' is built as a dynamic module. */
#undef COMPILE_DL_OPENSSL
/* Define to 1 if the PHP extension 'pcntl' is built as a dynamic module. */
#undef COMPILE_DL_PCNTL
/* Define to 1 if the PHP extension 'pcre' is built as a dynamic module. */
#undef COMPILE_DL_PCRE
/* Define to 1 if the PHP extension 'pdo' is built as a dynamic module. */
#undef COMPILE_DL_PDO
/* Define to 1 if the PHP extension 'pdo_dblib' is built as a dynamic module.
*/
#undef COMPILE_DL_PDO_DBLIB
/* Define to 1 if the PHP extension 'pdo_firebird' is built as a dynamic
module. */
#undef COMPILE_DL_PDO_FIREBIRD
/* Define to 1 if the PHP extension 'pdo_mysql' is built as a dynamic module.
*/
#undef COMPILE_DL_PDO_MYSQL
/* Define to 1 if the PHP extension 'pdo_odbc' is built as a dynamic module.
*/
#undef COMPILE_DL_PDO_ODBC
/* Define to 1 if the PHP extension 'pdo_pgsql' is built as a dynamic module.
*/
#undef COMPILE_DL_PDO_PGSQL
/* Define to 1 if the PHP extension 'pdo_sqlite' is built as a dynamic module.
*/
#undef COMPILE_DL_PDO_SQLITE
/* Define to 1 if the PHP extension 'pgsql' is built as a dynamic module. */
#undef COMPILE_DL_PGSQL
/* Define to 1 if the PHP extension 'phar' is built as a dynamic module. */
#undef COMPILE_DL_PHAR
/* Define to 1 if the PHP extension 'posix' is built as a dynamic module. */
#undef COMPILE_DL_POSIX
/* Define to 1 if the PHP extension 'random' is built as a dynamic module. */
#undef COMPILE_DL_RANDOM
/* Define to 1 if the PHP extension 'readline' is built as a dynamic module.
*/
#undef COMPILE_DL_READLINE
/* Define to 1 if the PHP extension 'reflection' is built as a dynamic module.
*/
#undef COMPILE_DL_REFLECTION
/* Define to 1 if the PHP extension 'session' is built as a dynamic module. */
#undef COMPILE_DL_SESSION
/* Define to 1 if the PHP extension 'shmop' is built as a dynamic module. */
#undef COMPILE_DL_SHMOP
/* Define to 1 if the PHP extension 'simplexml' is built as a dynamic module.
*/
#undef COMPILE_DL_SIMPLEXML
/* Define to 1 if the PHP extension 'snmp' is built as a dynamic module. */
#undef COMPILE_DL_SNMP
/* Define to 1 if the PHP extension 'soap' is built as a dynamic module. */
#undef COMPILE_DL_SOAP
/* Define to 1 if the PHP extension 'sockets' is built as a dynamic module. */
#undef COMPILE_DL_SOCKETS
/* Define to 1 if the PHP extension 'sodium' is built as a dynamic module. */
#undef COMPILE_DL_SODIUM
/* Define to 1 if the PHP extension 'spl' is built as a dynamic module. */
#undef COMPILE_DL_SPL
/* Define to 1 if the PHP extension 'sqlite3' is built as a dynamic module. */
#undef COMPILE_DL_SQLITE3
/* Define to 1 if the PHP extension 'standard' is built as a dynamic module.
*/
#undef COMPILE_DL_STANDARD
/* Define to 1 if the PHP extension 'sysvmsg' is built as a dynamic module. */
#undef COMPILE_DL_SYSVMSG
/* Define to 1 if the PHP extension 'sysvsem' is built as a dynamic module. */
#undef COMPILE_DL_SYSVSEM
/* Define to 1 if the PHP extension 'sysvshm' is built as a dynamic module. */
#undef COMPILE_DL_SYSVSHM
/* Define to 1 if the PHP extension 'tidy' is built as a dynamic module. */
#undef COMPILE_DL_TIDY
/* Define to 1 if the PHP extension 'tokenizer' is built as a dynamic module.
*/
#undef COMPILE_DL_TOKENIZER
/* Define to 1 if the PHP extension 'xml' is built as a dynamic module. */
#undef COMPILE_DL_XML
/* Define to 1 if the PHP extension 'xmlreader' is built as a dynamic module.
*/
#undef COMPILE_DL_XMLREADER
/* Define to 1 if the PHP extension 'xmlwriter' is built as a dynamic module.
*/
#undef COMPILE_DL_XMLWRITER
/* Define to 1 if the PHP extension 'xsl' is built as a dynamic module. */
#undef COMPILE_DL_XSL
/* Define to 1 if the PHP extension 'zend_test' is built as a dynamic module.
*/
#undef COMPILE_DL_ZEND_TEST
/* Define to 1 if the PHP extension 'zip' is built as a dynamic module. */
#undef COMPILE_DL_ZIP
/* Define to 1 if the PHP extension 'zlib' is built as a dynamic module. */
#undef COMPILE_DL_ZLIB
/* Define to 1 if fopencookie seeker uses off64_t. */
#undef COOKIE_SEEKER_USES_OFF64_T
/* Define to 1 if crypt_r uses CRYPTD. */
#undef CRYPT_R_CRYPTD
/* Define to 1 if struct crypt_data requires _GNU_SOURCE. */
#undef CRYPT_R_GNU_SOURCE
/* Define to 1 if crypt_r uses struct crypt_data. */
#undef CRYPT_R_STRUCT_CRYPT_DATA
/* Define to 1 if using 'alloca.c'. */
#undef C_ALLOCA
/* The DB1 handler header file. */
#undef DB1_INCLUDE_FILE
/* The DB1 handler version information. */
#undef DB1_VERSION
/* The DB2 handler header file. */
#undef DB2_INCLUDE_FILE
/* The DB3 handler header file. */
#undef DB3_INCLUDE_FILE
/* The DB4 handler header file. */
#undef DB4_INCLUDE_FILE
/* Define to 1 if the dba extension uses the cdb handler. */
#undef DBA_CDB
/* Define to 1 if the dba extension uses the PHP built-in cdb handler. */
#undef DBA_CDB_BUILTIN
/* Define to 1 if the dba extension uses the Berkeley DB version 1 (DB1)
handler. */
#undef DBA_DB1
/* Define to 1 if the dba extension uses the Berkeley DB version 2 (DB2)
handler. */
#undef DBA_DB2
/* Define to 1 if the dba extension uses the Berkeley DB version 3 (DB3)
handler. */
#undef DBA_DB3
/* Define to 1 if the dba extension uses the Berkeley DB version 4 (DB4)
handler. */
#undef DBA_DB4
/* Define to 1 if the dba extension uses the DBM handler. */
#undef DBA_DBM
/* Define to 1 if the dba extension uses the bundled flatfile handler. */
#undef DBA_FLATFILE
/* Define to 1 if the dba extension uses the GDBM handler. */
#undef DBA_GDBM
/* Define to 1 if the dba extension uses the bundled inifile handler. */
#undef DBA_INIFILE
/* Define to 1 if the dba extension uses the LMDB handler. */
#undef DBA_LMDB
/* Define to 1 if the dba extension uses the NDBM handler. */
#undef DBA_NDBM
/* Define to 1 if the dba extension uses the QDBM handler. */
#undef DBA_QDBM
/* Define to 1 if the dba extension uses the Tokyo Cabinet handler. */
#undef DBA_TCADB
/* The DBM handler include file. */
#undef DBM_INCLUDE_FILE
/* The DBM handler version information. */
#undef DBM_VERSION
/* Define to string "1" if PHP short open tags '<?' are enabled by default,
and to string "0" if they are not. */
#undef DEFAULT_SHORT_OPEN_TAG
/* Define to 1 if 'dlsym()' requires a leading underscore in symbol names. */
#undef DLSYM_NEEDS_UNDERSCORE
/* Define to 1 to enable the 'chroot' function. */
#undef ENABLE_CHROOT_FUNC
/* The GDBM handler header file. */
#undef GDBM_INCLUDE_FILE
/* Define to 1 if 'TIOCGWINSZ' requires <sys/ioctl.h>. */
#undef GWINSZ_IN_SYS_IOCTL
/* Define to 1 if 'ldap_set_rebind_proc' has 3 arguments. */
#undef HAVE_3ARG_SETREBINDPROC
/* Define to 1 when aarch64 CRC32 API is available. */
#undef HAVE_AARCH64_CRC32
/* Define to 1 if the odbc extension uses the Adabas D. */
#undef HAVE_ADABAS
/* Define to 1 if the compiler supports '__alignof__'. */
#undef HAVE_ALIGNOF
/* Define to 1 if you have 'alloca', as a function or macro. */
#undef HAVE_ALLOCA
/* Define to 1 if <alloca.h> works. */
#undef HAVE_ALLOCA_H
/* Define to 1 if you have the 'alphasort' function. */
#undef HAVE_ALPHASORT
/* Define to 1 if AppArmor confinement is available for PHP-FPM. */
#undef HAVE_APPARMOR
/* Define to 1 if you have the 'arc4random_buf' function. */
#undef HAVE_ARC4RANDOM_BUF
/* Define to 1 if the system has the 'libargon2' library. */
#undef HAVE_ARGON2LIB
/* Define to 1 if you have the <arpa/inet.h> header file. */
#undef HAVE_ARPA_INET_H
/* Define to 1 if you have the <arpa/nameser.h> header file. */
#undef HAVE_ARPA_NAMESER_H
/* Define to 1 if you have the 'asctime_r' function. */
#undef HAVE_ASCTIME_R
/* Define to 1 if asm goto support is available. */
#undef HAVE_ASM_GOTO
/* Define to 1 if you have the 'asprintf' function. */
#undef HAVE_ASPRINTF
/* Define to 1 if you have the 'atoll' function. */
#undef HAVE_ATOLL
/* Define to 1 if the compiler supports the 'aligned' variable attribute. */
#undef HAVE_ATTRIBUTE_ALIGNED
/* Define to 1 if the PHP extension 'bcmath' is available. */
#undef HAVE_BCMATH
/* Define to 1 if you have the 'bind_textdomain_codeset' function. */
#undef HAVE_BIND_TEXTDOMAIN_CODESET
/* Define to 1 if system has a broken 'getcwd'. */
#undef HAVE_BROKEN_GETCWD
/* Define to 1 if PHP has the <main/build-defs.h> header file. */
#undef HAVE_BUILD_DEFS_H
/* Define to 1 if compiler supports __sync_bool_compare_and_swap() a.o. */
#undef HAVE_BUILTIN_ATOMIC
/* Define to 1 if PHP uses the bundled PCRE library. */
#undef HAVE_BUNDLED_PCRE
/* Define to 1 if the PHP extension 'bz2' is available. */
#undef HAVE_BZ2
/* Define to 1 if the PHP extension 'calendar' is available. */
#undef HAVE_CALENDAR
/* Define to 1 if libzip library has the
'zip_register_cancel_callback_with_state' function (available since 1.6.0).
*/
#undef HAVE_CANCEL_CALLBACK
/* Define to 1 if Capstone is available. */
#undef HAVE_CAPSTONE
/* Define to 1 if you have the 'chroot' function. */
#undef HAVE_CHROOT
/* Define to 1 if you have the 'clearenv' function. */
#undef HAVE_CLEARENV
/* Define to 1 if you have the <cli0cli.h> header file. */
#undef HAVE_CLI0CLI_H
/* Define to 1 if you have the <cli0core.h> header file. */
#undef HAVE_CLI0CORE_H
/* Define to 1 if you have the <cli0defs.h> header file. */
#undef HAVE_CLI0DEFS_H
/* Define to 1 if you have the <cli0env.h> header file. */
#undef HAVE_CLI0ENV_H
/* Define to 1 if you have the <cli0ext.h> header file. */
#undef HAVE_CLI0EXT_H
/* Define to 1 if you have the 'clock_gettime' function. */
#undef HAVE_CLOCK_GETTIME
/* Define to 1 if you have the 'clock_get_time' function. */
#undef HAVE_CLOCK_GET_TIME
/* Define to 1 if the odbc extension uses custom ODBC installation. */
#undef HAVE_CODBC
/* Define to 1 if you have the <CommonCrypto/CommonRandom.h> header file. */
#undef HAVE_COMMONCRYPTO_COMMONRANDOM_H
/* Define to 1 if you have the 'copy_file_range' function. */
#undef HAVE_COPY_FILE_RANGE
/* Define to 1 if '__cpuid_count' is available. */
#undef HAVE_CPUID_COUNT
/* Define to 1 if you have the <cpuid.h> header file. */
#undef HAVE_CPUID_H
/* Define to 1 if you have the 'CreateProcess' function. */
#undef HAVE_CREATEPROCESS
/* Define to 1 if you have the 'crypt' function. */
#undef HAVE_CRYPT
/* Define to 1 if you have the <crypt.h> header file. */
#undef HAVE_CRYPT_H
/* Define to 1 if you have the 'crypt_r' function. */
#undef HAVE_CRYPT_R
/* Define to 1 if you have the 'ctermid' function. */
#undef HAVE_CTERMID
/* Define to 1 if you have the 'ctime_r' function. */
#undef HAVE_CTIME_R
/* Define to 1 if the PHP extension 'ctype' is available. */
#undef HAVE_CTYPE
/* Define to 1 if the PHP extension 'curl' is available. */
#undef HAVE_CURL
/* Define to 1 if libcurl is linked against old OpenSSL < 1.1. */
#undef HAVE_CURL_OLD_OPENSSL
/* Define to 1 if the PHP extension 'dba' is available. */
#undef HAVE_DBA
/* Define to 1 if the odbc extension uses the DBMaker. */
#undef HAVE_DBMAKER
/* Define to 1 if you have the 'dcngettext' function. */
#undef HAVE_DCNGETTEXT
/* Define to 1 if you have the declaration of 'PGRES_TUPLES_CHUNK', and to 0
if you don't. */
#undef HAVE_DECL_PGRES_TUPLES_CHUNK
/* Define to 1 if you have the declaration of 'P_ALL', and to 0 if you don't.
*/
#undef HAVE_DECL_P_ALL
/* Define to 1 if you have the declaration of 'P_JAILID', and to 0 if you
don't. */
#undef HAVE_DECL_P_JAILID
/* Define to 1 if you have the declaration of 'P_PIDFD', and to 0 if you
don't. */
#undef HAVE_DECL_P_PIDFD
/* Define to 1 if you have the declaration of 'P_UID', and to 0 if you don't.
*/
#undef HAVE_DECL_P_UID
/* Define to 1 if you have the declaration of 'strerror_r', and to 0 if you
don't. */
#undef HAVE_DECL_STRERROR_R
/* Define to 1 if you have the declaration of 'strptime'. */
#undef HAVE_DECL_STRPTIME
/* Define to 1 if you have the declaration of 'tzname', and to 0 if you don't.
*/
#undef HAVE_DECL_TZNAME
/* Define to 1 if you have the declaration of 'WCONTINUED', and to 0 if you
don't. */
#undef HAVE_DECL_WCONTINUED
/* Define to 1 if you have the declaration of 'WEXITED', and to 0 if you
don't. */
#undef HAVE_DECL_WEXITED
/* Define to 1 if you have the declaration of 'WNOWAIT', and to 0 if you
don't. */
#undef HAVE_DECL_WNOWAIT
/* Define to 1 if you have the declaration of 'WSTOPPED', and to 0 if you
don't. */
#undef HAVE_DECL_WSTOPPED
/* Define to 1 if you have the <dirent.h> header file. */
#undef HAVE_DIRENT_H
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define to 1 if you have dmalloc. */
#undef HAVE_DMALLOC
/* Define to 1 if you have the 'dngettext' function. */
#undef HAVE_DNGETTEXT
/* Define to 1 if you have the <dns.h> header file. */
#undef HAVE_DNS_H
/* Define to 1 if you have the 'dns_search' function. */
#undef HAVE_DNS_SEARCH
/* Define to 1 if you have the 'dn_expand' function. */
#undef HAVE_DN_EXPAND
/* Define to 1 if you have the 'dn_skipname' function. */
#undef HAVE_DN_SKIPNAME
/* Define to 1 if the PHP extension 'dom' is available. */
#undef HAVE_DOM
/* Define to 1 if DTrace support is enabled. */
#undef HAVE_DTRACE
/* Define to 1 if you have the 'eaccess' function. */
#undef HAVE_EACCESS
/* Define to 1 if you have the 'elf_aux_info' function. */
#undef HAVE_ELF_AUX_INFO
/* Define to 1 if the odbc extension uses the Empress. */
#undef HAVE_EMPRESS
/* Define to 1 if the PHP extension 'enchant' is available. */
#undef HAVE_ENCHANT
/* Define to 1 if Enchant library has the 'enchant_broker_set_param' function
(available since 1.5.0 and removed in 2.x). */
#undef HAVE_ENCHANT_BROKER_SET_PARAM
/* Define to 1 if Enchant library has the 'enchant_get_version' function
(available since 1.6.0). */
#undef HAVE_ENCHANT_GET_VERSION
/* Define to 1 if libzip library has encryption support (available since
1.2.0). */
#undef HAVE_ENCRYPTION
/* Define to 1 if system has a working epoll. */
#undef HAVE_EPOLL
/* Define to 1 if edit/readline library has the 'rl_erase_empty_line' global
variable. */
#undef HAVE_ERASE_EMPTY_LINE
/* Define to 1 if the odbc extension uses the Easysoft OOB. */
#undef HAVE_ESOOB
/* Define to 1 if the PHP extension 'exif' is available. */
#undef HAVE_EXIF
/* Define to 1 if you have the 'explicit_bzero' function. */
#undef HAVE_EXPLICIT_BZERO
/* Define to 1 if you have the 'explicit_memset' function. */
#undef HAVE_EXPLICIT_MEMSET
/* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Define to 1 if you have the 'fdatasync' function. */
#undef HAVE_FDATASYNC
/* Define to 1 if the PHP extension 'ffi' is available. */
#undef HAVE_FFI
/* Define to 1 if libffi supports the 'FFI_FASTCALL' calling convention. */
#undef HAVE_FFI_FASTCALL
/* Define to 1 if libffi supports the 'FFI_MS_CDECL' calling convention. */
#undef HAVE_FFI_MS_CDECL
/* Define to 1 if libffi supports the 'FFI_PASCAL' calling convention. */
#undef HAVE_FFI_PASCAL
/* Define to 1 if libffi supports the 'FFI_REGISTER' calling convention. */
#undef HAVE_FFI_REGISTER
/* Define to 1 if libffi supports the 'FFI_STDCALL' calling convention. */
#undef HAVE_FFI_STDCALL
/* Define to 1 if libffi supports the 'FFI_SYSV' calling convention. */
#undef HAVE_FFI_SYSV
/* Define to 1 if libffi supports the 'FFI_THISCALL' calling convention. */
#undef HAVE_FFI_THISCALL
/* Define to 1 if you have the 'flock' function. */
#undef HAVE_FLOCK
/* Define to 1 if flush should be called explicitly after a buffered io. */
#undef HAVE_FLUSHIO
/* Define to 1 if your system has a working POSIX 'fnmatch' function. */
#undef HAVE_FNMATCH
/* Define to 1 if you have the 'fopencookie' function. */
#undef HAVE_FOPENCOOKIE
/* Define to 1 if you have the 'fork' function. */
#undef HAVE_FORK
/* Define to 1 if you have the 'forkx' function. */
#undef HAVE_FORKX
/* Define to 1 if you have the 'fpathconf' function. */
#undef HAVE_FPATHCONF
/* Define to 1 if PHP-FPM has ACL support. */
#undef HAVE_FPM_ACL
/* Define to 1 if fpsetprec is present and usable. */
#undef HAVE_FPSETPREC
/* Define to 1 if FPU control word can be manipulated by inline assembler. */
#undef HAVE_FPU_INLINE_ASM_X86
/* Define to 1 if you have the 'ftok' function. */
#undef HAVE_FTOK
/* Define to 1 if the PHP extension 'ftp' is available. */
#undef HAVE_FTP
/* Define to 1 if FTP over SSL is enabled. */
#undef HAVE_FTP_SSL
/* Define to 1 if the system has the `ifunc' function attribute */
#undef HAVE_FUNC_ATTRIBUTE_IFUNC
/* Define to 1 if the system has the `target' function attribute */
#undef HAVE_FUNC_ATTRIBUTE_TARGET
/* Define to 1 if the system has the `visibility' function attribute */
#undef HAVE_FUNC_ATTRIBUTE_VISIBILITY
/* Define to 1 if you have the three-argument form of gethostbyname_r(). */
#undef HAVE_FUNC_GETHOSTBYNAME_R_3
/* Define to 1 if you have the five-argument form of gethostbyname_r(). */
#undef HAVE_FUNC_GETHOSTBYNAME_R_5
/* Define to 1 if you have the six-argument form of gethostbyname_r(). */
#undef HAVE_FUNC_GETHOSTBYNAME_R_6
/* Define to 1 if you have the 'funopen' function. */
#undef HAVE_FUNOPEN
/* Define to 1 if you have the 'gai_strerror' function. */
#undef HAVE_GAI_STRERROR
/* Define to 1 if the target system has support for global register variables.
*/
#undef HAVE_GCC_GLOBAL_REGS
/* Define to 1 if GCOV code coverage is enabled. */
#undef HAVE_GCOV
/* Define to 1 if gd extension has AVIF support. */
#undef HAVE_GD_AVIF
/* Define to 1 if gd extension has BMP support. */
#undef HAVE_GD_BMP
/* Define to 1 if gd extension uses GD library bundled in PHP. */
#undef HAVE_GD_BUNDLED
/* Define to 1 if gd extension has FreeType support. */
#undef HAVE_GD_FREETYPE
/* Define to 1 if GD library has the 'gdImageGetInterpolationMethod' function.
*/
#undef HAVE_GD_GET_INTERPOLATION
/* Define to 1 if gd extension has JPEG support. */
#undef HAVE_GD_JPG
/* Define to 1 if GD library has the 'gdVersionString' function. */
#undef HAVE_GD_LIBVERSION
/* Define to 1 if gd extension has PNG support. */
#undef HAVE_GD_PNG
/* Define to 1 if gd extension has TGA support. */
#undef HAVE_GD_TGA
/* Define to 1 if gd extension has WebP support. */
#undef HAVE_GD_WEBP
/* Define to 1 if gd extension has XPM support. */
#undef HAVE_GD_XPM
/* Define to 1 if you have the 'getaddrinfo' function. */
#undef HAVE_GETADDRINFO
/* Define to 1 if you have the 'getcpuid' function. */
#undef HAVE_GETCPUID
/* Define to 1 if you have the 'getcwd' function. */
#undef HAVE_GETCWD
/* Define to 1 if you have the 'getgrgid_r' function. */
#undef HAVE_GETGRGID_R
/* Define to 1 if you have the 'getgrnam_r' function. */
#undef HAVE_GETGRNAM_R
/* Define to 1 if you have the 'getgroups' function. */
#undef HAVE_GETGROUPS
/* Define to 1 if you have some form of gethostbyname_r(). */
#undef HAVE_GETHOSTBYNAME_R
/* Define to 1 if you have the 'gethostname' function. */
#undef HAVE_GETHOSTNAME
/* Define to 1 if you have the 'getifaddrs' function. */
#undef HAVE_GETIFADDRS
/* Define to 1 if you have the 'getloadavg' function. */
#undef HAVE_GETLOADAVG
/* Define to 1 if you have the 'getlogin' function. */
#undef HAVE_GETLOGIN
/* Define to 1 if you have the 'getopt' function. */
#undef HAVE_GETOPT
/* Define to 1 if you have the 'getpgid' function. */
#undef HAVE_GETPGID
/* Define to 1 if you have the 'getpid' function. */
#undef HAVE_GETPID
/* Define to 1 if you have the 'getpriority' function. */
#undef HAVE_GETPRIORITY
/* Define to 1 if you have the 'getprotobyname' function. */
#undef HAVE_GETPROTOBYNAME
/* Define to 1 if you have the 'getprotobynumber' function. */
#undef HAVE_GETPROTOBYNUMBER
/* Define to 1 if you have the 'getpwnam_r' function. */
#undef HAVE_GETPWNAM_R
/* Define to 1 if you have the 'getpwuid_r' function. */
#undef HAVE_GETPWUID_R
/* Define to 1 if you have the 'getrandom' function. */
#undef HAVE_GETRANDOM
/* Define to 1 if you have the 'getrlimit' function. */
#undef HAVE_GETRLIMIT
/* Define to 1 if you have the 'getrusage' function. */
#undef HAVE_GETRUSAGE
/* Define to 1 if you have the 'getservbyname' function. */
#undef HAVE_GETSERVBYNAME
/* Define to 1 if you have the 'getservbyport' function. */
#undef HAVE_GETSERVBYPORT
/* Define to 1 if you have the 'getsid' function. */
#undef HAVE_GETSID
/* Define to 1 if you have the 'gettid' function. */
#undef HAVE_GETTID
/* Define to 1 if you have the 'gettimeofday' function. */
#undef HAVE_GETTIMEOFDAY
/* Define to 1 if you have the 'getwd' function. */
#undef HAVE_GETWD
/* Define to 1 if iconv implementation is glibc. */
#undef HAVE_GLIBC_ICONV
/* Define to 1 if you have the 'glob' function. */
#undef HAVE_GLOB
/* Define to 1 if the PHP extension 'gmp' is available. */
#undef HAVE_GMP
/* Define to 1 if you have the 'gmtime_r' function. */
#undef HAVE_GMTIME_R
/* Define to 1 if you have the <grp.h> header file. */
#undef HAVE_GRP_H
/* Define to 1 if edit/readline library has the 'history_list' function. */
#undef HAVE_HISTORY_LIST
/* Define to 1 if you have the 'hstrerror' function. */
#undef HAVE_HSTRERROR
/* Define to 1 to enable copying PHP CODE pages into HUGE PAGES. */
#undef HAVE_HUGE_CODE_PAGES
/* Define to 1 if the odbc extension uses the IBM DB2. */
#undef HAVE_IBMDB2
/* Define to 1 if iconv implementation is IBM. */
#undef HAVE_IBM_ICONV
/* Define to 1 if the PHP extension 'iconv' is available. */
#undef HAVE_ICONV
/* Define to 1 if you have the <ieeefp.h> header file. */
#undef HAVE_IEEEFP_H
/* Define to 1 if you have the 'if_indextoname' function. */
#undef HAVE_IF_INDEXTONAME
/* Define to 1 if you have the 'if_nametoindex' function. */
#undef HAVE_IF_NAMETOINDEX
/* Define to 1 if you have the <immintrin.h> header file. */
#undef HAVE_IMMINTRIN_H
/* Define to 1 if you have the 'initgroups' function. */
#undef HAVE_INITGROUPS
/* Define to 1 if the system has the type 'intmax_t'. */
#undef HAVE_INTMAX_T
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Define to 1 if the odbc extension uses the iODBC. */
#undef HAVE_IODBC
/* Define to 1 if you have the <iodbc.h> header file. */
#undef HAVE_IODBC_H
/* Define to 1 if you have the <io.h> header file. */
#undef HAVE_IO_H
/* Define to 1 if IPv6 is enabled and supported. */
#undef HAVE_IPV6
/* Define to 1 if you have the <isqlext.h> header file. */
#undef HAVE_ISQLEXT_H
/* Define to 1 if you have the <isql.h> header file. */
#undef HAVE_ISQL_H
/* Define to 1 to enable JIT. */
#undef HAVE_JIT
/* Define to 1 if you have the 'kill' function. */
#undef HAVE_KILL
/* Define to 1 if system has a working 'kqueue' function. */
#undef HAVE_KQUEUE
/* Define to 1 if you have the <langinfo.h> header file. */
#undef HAVE_LANGINFO_H
/* Define to 1 if you have the 'lchown' function. */
#undef HAVE_LCHOWN
/* Define to 1 if the PHP extension 'ldap' is available. */
#undef HAVE_LDAP
/* Define to 1 if you have the 'ldap_control_find' function. */
#undef HAVE_LDAP_CONTROL_FIND
/* Define to 1 if you have the 'ldap_extended_operation' function. */
#undef HAVE_LDAP_EXTENDED_OPERATION
/* Define to 1 if you have the 'ldap_extended_operation_s' function. */
#undef HAVE_LDAP_EXTENDED_OPERATION_S
/* Define to 1 if you have the 'ldap_parse_extended_result' function. */
#undef HAVE_LDAP_PARSE_EXTENDED_RESULT
/* Define to 1 if you have the 'ldap_parse_reference' function. */
#undef HAVE_LDAP_PARSE_REFERENCE
/* Define to 1 if you have the 'ldap_parse_result' function. */
#undef HAVE_LDAP_PARSE_RESULT
/* Define to 1 if you have the 'ldap_passwd' function. */
#undef HAVE_LDAP_PASSWD
/* Define to 1 if you have the 'ldap_refresh_s' function. */
#undef HAVE_LDAP_REFRESH_S
/* Define to 1 if the ldap extension has SASL support enabled. */
#undef HAVE_LDAP_SASL
/* Define to 1 if you have the 'ldap_start_tls_s' function. */
#undef HAVE_LDAP_START_TLS_S
/* Define to 1 if you have the 'ldap_whoami_s' function. */
#undef HAVE_LDAP_WHOAMI_S
/* Define to 1 if you have the 'atomic' library (-latomic). */
#undef HAVE_LIBATOMIC
/* Define to 1 if you have the libavif library. */
#undef HAVE_LIBAVIF
/* Define to 1 if you have the 'dl' library (-ldl). */
#undef HAVE_LIBDL
/* Define to 1 if readline extension uses the 'libedit' library. */
#undef HAVE_LIBEDIT
/* Define to 1 if the system has the Expat XML parser library. */
#undef HAVE_LIBEXPAT
/* Define to 1 if you have the FreeType library. */
#undef HAVE_LIBFREETYPE
/* Define to 1 if gd extension uses external system GD library. */
#undef HAVE_LIBGD
/* Define to 1 if you have the 'libiconv' function. */
#undef HAVE_LIBICONV
/* Define to 1 if you have the 'intl' library. */
#undef HAVE_LIBINTL
/* Define to 1 if you have the libjpeg library. */
#undef HAVE_LIBJPEG
/* Define to 1 if the system has the 'mm' library. */
#undef HAVE_LIBMM
/* Define to 1 if you have the libpng library. */
#undef HAVE_LIBPNG
/* Define to 1 if you have the <libproc.h> header file. */
#undef HAVE_LIBPROC_H
/* Define to 1 if you have the <LibraryManager.h> header file. */
#undef HAVE_LIBRARYMANAGER_H
/* Define to 1 if readline extension uses the 'readline' library. */
#undef HAVE_LIBREADLINE
/* Define to 1 if you have the 'resolv' library (-lresolv). */
#undef HAVE_LIBRESOLV
/* Define to 1 if you have the 'socket' library (-lsocket). */
#undef HAVE_LIBSOCKET
/* Define to 1 if the PHP extension 'sodium' is available. */
#undef HAVE_LIBSODIUMLIB
/* Define to 1 if you have the libwebp library. */
#undef HAVE_LIBWEBP
/* Define to 1 if the PHP extension 'libxml' is available. */
#undef HAVE_LIBXML
/* Define to 1 if libzip library has the 'zip_libzip_version' function
(available since 1.3.1). */
#undef HAVE_LIBZIP_VERSION
/* Define to 1 if you have the <linux/filter.h> header file. */
#undef HAVE_LINUX_FILTER_H
/* Define to 1 if you have the <linux/sock_diag.h> header file. */
#undef HAVE_LINUX_SOCK_DIAG_H
/* Define to 1 if you have the 'localtime_r' function. */
#undef HAVE_LOCALTIME_R
/* Define to 1 if the system has the type 'long double'. */
#undef HAVE_LONG_DOUBLE
/* Define to 1 if you have 'SO_LISTENQ*'. */
#undef HAVE_LQ_SO_LISTENQ
/* Define to 1 if you have 'TCP_CONNECTION_INFO'. */
#undef HAVE_LQ_TCP_CONNECTION_INFO
/* Define to 1 if you have 'TCP_INFO'. */
#undef HAVE_LQ_TCP_INFO
/* Define to 1 if you have the 'mach_vm_read' function. */
#undef HAVE_MACH_VM_READ
/* Define to 1 if you have the 'makedev' function. */
#undef HAVE_MAKEDEV
/* Define to 1 if mbstring has multibyte regex support enabled. */
#undef HAVE_MBREGEX
/* Define to 1 if the PHP extension 'mbstring' is available. */
#undef HAVE_MBSTRING
/* Define to 1 if you have the 'memcntl' function. */
#undef HAVE_MEMCNTL
/* Define to 1 if you have the 'memfd_create' function. */
#undef HAVE_MEMFD_CREATE
/* Define to 1 if you have the 'memmem' function. */
#undef HAVE_MEMMEM
/* Define to 1 if you have the 'mempcpy' function. */
#undef HAVE_MEMPCPY
/* Define to 1 if you have the 'memrchr' function. */
#undef HAVE_MEMRCHR
/* Define to 1 if libzip library has 'zip_*_method_supported' functions
(available since 1.7.0). */
#undef HAVE_METHOD_SUPPORTED
/* Define to 1 if you have the <minix/config.h> header file. */
#undef HAVE_MINIX_CONFIG_H
/* Define to 1 if you have the 'mkfifo' function. */
#undef HAVE_MKFIFO
/* Define to 1 if you have the 'mknod' function. */
#undef HAVE_MKNOD
/* Define to 1 if you have the 'mkstemp' function. */
#undef HAVE_MKSTEMP
/* Define to 1 if you have the 'mmap' function. */
#undef HAVE_MMAP
/* Define to 1 if you have the 'mprotect' function. */
#undef HAVE_MPROTECT
/* Define to 1 if you have the 'mremap' function. */
#undef HAVE_MREMAP
/* Define to 1 if you have the 'nanosleep' function. */
#undef HAVE_NANOSLEEP
/* Define to 1 if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H
/* Define to 1 if you have the <net/if.h> header file. */
#undef HAVE_NET_IF_H
/* Define to 1 if you have the 'ngettext' function. */
#undef HAVE_NGETTEXT
/* Define to 1 if you have the 'nice' function. */
#undef HAVE_NICE
/* Define to 1 if you have the 'nl_langinfo' function. */
#undef HAVE_NL_LANGINFO
/* Define to 1 if you have the <nmmintrin.h> header file. */
#undef HAVE_NMMINTRIN_H
/* Define to 1 if you have the <odbc.h> header file. */
#undef HAVE_ODBC_H
/* Define to 1 if you have the 'openpty' function. */
#undef HAVE_OPENPTY
/* Define to 1 to enable OpenSSL argon2 password hashing. */
#undef HAVE_OPENSSL_ARGON2
/* Define to 1 if you have the <openssl/crypto.h> header file. */
#undef HAVE_OPENSSL_CRYPTO_H
/* Define to 1 if the PHP extension 'openssl' is available. */
#undef HAVE_OPENSSL_EXT
/* Define to 1 if the ldap extension uses the Oracle Instant Client. */
#undef HAVE_ORALDAP
/* Define to 1 if you have the 'pathconf' function. */
#undef HAVE_PATHCONF
/* Define to 1 if PCRE JIT is enabled and supported. */
#undef HAVE_PCRE_JIT_SUPPORT
/* Define to 1 if pcre has Valgrind support enabled. */
#undef HAVE_PCRE_VALGRIND_SUPPORT
/* Define to 1 if the PHP extension 'pdo_pgsql' is available. */
#undef HAVE_PDO_PGSQL
/* Define to 1 if the PHP extension 'pgsql' is available. */
#undef HAVE_PGSQL
/* Define to 1 if libpq has the 'PQchangePassword' function (PostgreSQL 17 or
later). */
#undef HAVE_PG_CHANGE_PASSWORD
/* Define to 1 if libpq has the 'PQresultMemorySize' function (PostgreSQL 12
or later). */
#undef HAVE_PG_RESULT_MEMORY_SIZE
/* Define to 1 if libpq has the 'PQsetChunkedRowsMode' function (PostgreSQL 17
or later). */
#undef HAVE_PG_SET_CHUNKED_ROWS_SIZE
/* Define to 1 if libpq has the 'PQsocketPoll' function (PostgreSQL 17 or
later). */
#undef HAVE_PG_SOCKET_POLL
/* Define to 1 if the phpdbg SAPI has libedit/readline integration. */
#undef HAVE_PHPDBG_READLINE
/* Define to 1 if the PHP extension 'session' is available. */
#undef HAVE_PHP_SESSION
/* Define to 1 if you have the 'pidfd_open' function. */
#undef HAVE_PIDFD_OPEN
/* Define to 1 if you have the 'poll' function. */
#undef HAVE_POLL
/* Define to 1 if you have the <poll.h> header file. */
#undef HAVE_POLL_H
/* Define to 1 if you have the 'port_create' function. */
#undef HAVE_PORT_CREATE
/* Define to 1 if the PHP extension 'posix' is available. */
#undef HAVE_POSIX
/* Define to 1 if you have the 'posix_spawn_file_actions_addchdir_np'
function. */
#undef HAVE_POSIX_SPAWN_FILE_ACTIONS_ADDCHDIR_NP
/* Define to 1 if libpq has the 'PQclosePrepared' function (PostgreSQL 17 or
later). */
#undef HAVE_PQCLOSEPREPARED
/* Define to 1 if PGVerbosity enum has PQERRORS_SQLSTATE. */
#undef HAVE_PQERRORS_SQLSTATE
/* Define to 1 if you have the 'prctl' function. */
#undef HAVE_PRCTL
/* Define to 1 if you have the 'pread' function. */
#undef HAVE_PREAD
/* Define to 1 if you have the 'procctl' function. */
#undef HAVE_PROCCTL
/* Define to 1 if libzip library has the
'zip_register_progress_callback_with_state' function (available since
1.3.0). */
#undef HAVE_PROGRESS_CALLBACK
/* Define to 1 if you have the 'pset_bind' function. */
#undef HAVE_PSET_BIND
/* Define if the PS_STRINGS exists. */
#undef HAVE_PS_STRINGS
/* Define to 1 if you have the 'pthread_attr_getstack' function. */
#undef HAVE_PTHREAD_ATTR_GETSTACK
/* Define to 1 if you have the 'pthread_attr_get_np' function. */
#undef HAVE_PTHREAD_ATTR_GET_NP
/* Define to 1 if you have the 'pthread_getattr_np' function. */
#undef HAVE_PTHREAD_GETATTR_NP
/* Define to 1 if you have the 'pthread_get_stackaddr_np' function. */
#undef HAVE_PTHREAD_GET_STACKADDR_NP
/* Define to 1 if you have the 'pthread_jit_write_protect_np' function. */
#undef HAVE_PTHREAD_JIT_WRITE_PROTECT_NP
/* Define to 1 if you have the 'pthread_set_qos_class_self_np' function. */
#undef HAVE_PTHREAD_SET_QOS_CLASS_SELF_NP
/* Define to 1 if you have the 'pthread_stackseg_np' function. */
#undef HAVE_PTHREAD_STACKSEG_NP
/* Define to 1 if you have the 'ptrace' function. */
#undef HAVE_PTRACE
/* Define to 1 if the system has the type 'ptrdiff_t'. */
#undef HAVE_PTRDIFF_T
/* Define to 1 if you have the <pty.h> header file. */
#undef HAVE_PTY_H
/* Define to 1 if you have the 'putenv' function. */
#undef HAVE_PUTENV
/* Define to 1 if you have the <pwd.h> header file. */
#undef HAVE_PWD_H
/* Define to 1 if you have the 'pwrite' function. */
#undef HAVE_PWRITE
/* Define to 1 if OpenSSL crypto library has the 'RAND_egd' function. */
#undef HAVE_RAND_EGD
/* Define to 1 if you have the <resolv.h> header file. */
#undef HAVE_RESOLV_H
/* Define to 1 if you have the 'res_ndestroy' function. */
#undef HAVE_RES_NDESTROY
/* Define to 1 if you have the 'res_nsearch' function. */
#undef HAVE_RES_NSEARCH
/* Define to 1 if you have the 'res_search' function. */
#undef HAVE_RES_SEARCH
/* Define to 1 if you have the 'rfork' function. */
#undef HAVE_RFORK
/* Define to 1 if edit/readline library has the 'rl_callback_read_char'
function. */
#undef HAVE_RL_CALLBACK_READ_CHAR
/* Define to 1 if edit/readline library has the 'rl_completion_matches'
function. */
#undef HAVE_RL_COMPLETION_MATCHES
/* Define to 1 if edit/readline library has the 'rl_on_new_line' function. */
#undef HAVE_RL_ON_NEW_LINE
/* Define to 1 if the odbc extension uses the SAP DB. */
#undef HAVE_SAPDB
/* Define to 1 if you have the 'scandir' function. */
#undef HAVE_SCANDIR
/* Define to 1 if the 'sched_getcpu' function is properly supported. */
#undef HAVE_SCHED_GETCPU
/* Define to 1 if you have the 'sched_setaffinity' function. */
#undef HAVE_SCHED_SETAFFINITY
/* Define to 1 if system has a working 'select' function. */
#undef HAVE_SELECT
/* Define to 1 if SELinux is available in PHP-FPM. */
#undef HAVE_SELINUX
/* Define to 1 if you have the 'setegid' function. */
#undef HAVE_SETEGID
/* Define to 1 if you have the 'setenv' function. */
#undef HAVE_SETENV
/* Define to 1 if you have the 'seteuid' function. */
#undef HAVE_SETEUID
/* Define to 1 if you have the 'setitimer' function. */
#undef HAVE_SETITIMER
/* Define to 1 if you have the 'setpflags' function. */
#undef HAVE_SETPFLAGS
/* Define to 1 if you have the 'setpriority' function. */
#undef HAVE_SETPRIORITY
/* Define to 1 if you have the 'setproctitle' function. */
#undef HAVE_SETPROCTITLE
/* Define to 1 if you have the 'setproctitle_fast' function. */
#undef HAVE_SETPROCTITLE_FAST
/* Define to 1 if you have the 'setrlimit' function. */
#undef HAVE_SETRLIMIT
/* Define to 1 if you have the 'setsid' function. */
#undef HAVE_SETSID
/* Define to 1 if libzip library has the 'zip_file_set_mtime' function
(available since 1.0.0). */
#undef HAVE_SET_MTIME
/* Define to 1 if the PHP extension 'shmop' is available. */
#undef HAVE_SHMOP
/* Define to 1 if you have the 'shm_create_largepage' function. */
#undef HAVE_SHM_CREATE_LARGEPAGE
/* Define to 1 if you have the SysV IPC SHM support. */
#undef HAVE_SHM_IPC
/* Define to 1 if you have the mmap(MAP_ANON) SHM support. */
#undef HAVE_SHM_MMAP_ANON
/* Define to 1 if you have the POSIX mmap() SHM support. */
#undef HAVE_SHM_MMAP_POSIX
/* Define to 1 if you have the 'shutdown' function. */
#undef HAVE_SHUTDOWN
/* Define to 1 if SNMP library has the 'shutdown_snmp_logging' function. */
#undef HAVE_SHUTDOWN_SNMP_LOGGING
/* Define to 1 if you have the 'sigaction' function. */
#undef HAVE_SIGACTION
/* Define to 1 if you have the 'sigprocmask' function. */
#undef HAVE_SIGPROCMASK
/* Define to 1 if you have the 'sigtimedwait' function. */
#undef HAVE_SIGTIMEDWAIT
/* Define to 1 if you have the 'sigwaitinfo' function. */
#undef HAVE_SIGWAITINFO
/* Define to 1 if the PHP extension 'simplexml' is available. */
#undef HAVE_SIMPLEXML
/* Define to 1 if the PHP hash extension uses the slow SHA3 algorithm. */
#undef HAVE_SLOW_HASH3
/* Define to 1 if the PHP extension 'snmp' is available. */
#undef HAVE_SNMP
/* Define to 1 if SNMP library has the 'usmHMAC192SHA256AuthProtocol' array.
*/
#undef HAVE_SNMP_SHA256
/* Define to 1 if SNMP library has the 'usmHMAC384SHA512AuthProtocol' array.
*/
#undef HAVE_SNMP_SHA512
/* Define to 1 if the PHP extension 'soap' is available. */
#undef HAVE_SOAP
/* Define to 1 if you have the 'sockatmark' function. */
#undef HAVE_SOCKATMARK
/* Define to 1 if you have the 'socketpair' function. */
#undef HAVE_SOCKETPAIR
/* Define to 1 if the PHP extension 'sockets' is available. */
#undef HAVE_SOCKETS
/* Define to 1 if the system has the type 'socklen_t'. */
#undef HAVE_SOCKLEN_T
/* Define to 1 if the odbc extension uses the Solid DB. */
#undef HAVE_SOLID
/* Define to 1 if Solid DB 3.0 is used. */
#undef HAVE_SOLID_30
/* Define to 1 if Solid DB 3.5 is used. */
#undef HAVE_SOLID_35
/* Define to 1 if you have the <sqlcli1.h> header file. */
#undef HAVE_SQLCLI1_H
/* Define to 1 if ODBC library has 'SQLDataSources', as a function or macro.
*/
#undef HAVE_SQLDATASOURCES
/* Define to 1 if you have the <sqlext.h> header file. */
#undef HAVE_SQLEXT_H
/* Define to 1 if the PHP extension 'sqlite3' is available. */
#undef HAVE_SQLITE3
/* Define to 1 if SQLite library has the 'sqlite3_close_v2' function. */
#undef HAVE_SQLITE3_CLOSE_V2
/* Define to 1 if SQLite library was compiled with the
SQLITE_ENABLE_COLUMN_METADATA and has the 'sqlite3_column_table_name'
function. */
#undef HAVE_SQLITE3_COLUMN_TABLE_NAME
/* Define to 1 if SQLite library has the 'sqlite3_errstr' function. */
#undef HAVE_SQLITE3_ERRSTR
/* Define to 1 if SQLite library has the 'sqlite3_expanded_sql' function. */
#undef HAVE_SQLITE3_EXPANDED_SQL
/* Define to 1 if you have the <sqltypes.h> header file. */
#undef HAVE_SQLTYPES_H
/* Define to 1 if you have the <sqlucode.h> header file. */
#undef HAVE_SQLUCODE_H
/* Define to 1 if you have the <sqlunix.h> header file. */
#undef HAVE_SQLUNIX_H
/* Define to 1 if you have the <sql.h> header file. */
#undef HAVE_SQL_H
/* Define to 1 if the system has the type 'ssize_t'. */
#undef HAVE_SSIZE_T
/* Define to 1 if you have the 'statfs' function. */
#undef HAVE_STATFS
/* Define to 1 if you have the 'statvfs' function. */
#undef HAVE_STATVFS
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
/* Define to 1 if you have the <stdio.h> header file. */
#undef HAVE_STDIO_H
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
/* Define to 1 if you have the 'std_syslog' function. */
#undef HAVE_STD_SYSLOG
/* Define to 1 if you have the 'strcasecmp' function. */
#undef HAVE_STRCASECMP
/* Define to 1 if you have the 'strcasestr' function. */
#undef HAVE_STRCASESTR
/* Define if you have 'strerror_r'. */
#undef HAVE_STRERROR_R
/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H
/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H
/* Define to 1 if you have the 'strlcat' function. */
#undef HAVE_STRLCAT
/* Define to 1 if you have the 'strlcpy' function. */
#undef HAVE_STRLCPY
/* Define to 1 if you have the 'strndup' function. */
#undef HAVE_STRNDUP
/* Define to 1 if you have the 'strnlen' function. */
#undef HAVE_STRNLEN
/* Define to 1 if you have the 'strptime' function. */
#undef HAVE_STRPTIME
/* Define to 1 if you have the 'strtok_r' function. */
#undef HAVE_STRTOK_R
/* Define to 1 if you have the 'strtoll' function. */
#undef HAVE_STRTOLL
/* Define to 1 if the system has the type 'struct cmsgcred'. */
#undef HAVE_STRUCT_CMSGCRED
/* Define to 1 if the system has the type 'struct flock'. */
#undef HAVE_STRUCT_FLOCK
/* Define to 1 if 'sa_len' is a member of 'struct sockaddr'. */
#undef HAVE_STRUCT_SOCKADDR_SA_LEN
/* Define to 1 if the system has the type 'struct sockaddr_storage'. */
#undef HAVE_STRUCT_SOCKADDR_STORAGE
/* Define to 1 if 'ss_family' is a member of 'struct sockaddr_storage'. */
#undef HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY
/* Define to 1 if 'sun_len' is a member of 'struct sockaddr_un'. */
#undef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
/* Define to 1 if 'st_blksize' is a member of 'struct stat'. */
#undef HAVE_STRUCT_STAT_ST_BLKSIZE
/* Define to 1 if 'st_blocks' is a member of 'struct stat'. */
#undef HAVE_STRUCT_STAT_ST_BLOCKS
/* Define to 1 if 'st_rdev' is a member of 'struct stat'. */
#undef HAVE_STRUCT_STAT_ST_RDEV
/* Define to 1 if 'tm_gmtoff' is a member of 'struct tm'. */
#undef HAVE_STRUCT_TM_TM_GMTOFF
/* Define to 1 if 'tm_zone' is a member of 'struct tm'. */
#undef HAVE_STRUCT_TM_TM_ZONE
/* Define to 1 if the system has the type 'struct ucred'. */
#undef HAVE_STRUCT_UCRED
/* Define to 1 if 'domainname' is a member of 'struct utsname'. */
#undef HAVE_STRUCT_UTSNAME_DOMAINNAME
/* Define to 1 if your 'struct stat' has 'st_blocks'. Deprecated, use
'HAVE_STRUCT_STAT_ST_BLOCKS' instead. */
#undef HAVE_ST_BLOCKS
/* Define to 1 if you have the 'symlink' function. */
#undef HAVE_SYMLINK
/* Define to 1 if you have the <sysexits.h> header file. */
#undef HAVE_SYSEXITS_H
/* Define to 1 if you have the <syslog.h> header file. */
#undef HAVE_SYSLOG_H
/* Define to 1 if FPM has systemd integration. */
#undef HAVE_SYSTEMD
/* Define to 1 if the PHP extension 'sysvmsg' is available. */
#undef HAVE_SYSVMSG
/* Define to 1 if the PHP extension 'sysvsem' is available. */
#undef HAVE_SYSVSEM
/* Define to 1 if the PHP extension 'sysvshm' is available. */
#undef HAVE_SYSVSHM
/* Define to 1 if you have the <sys/acl.h> header file. */
#undef HAVE_SYS_ACL_H
/* Define to 1 if you have the <sys/file.h> header file. */
#undef HAVE_SYS_FILE_H
/* Define to 1 if you have the <sys/ioctl.h> header file. */
#undef HAVE_SYS_IOCTL_H
/* Define to 1 if you have the <sys/ipc.h> header file. */
#undef HAVE_SYS_IPC_H
/* Define to 1 if you have the <sys/loadavg.h> header file. */
#undef HAVE_SYS_LOADAVG_H
/* Define to 1 if you have the <sys/mman.h> header file. */
#undef HAVE_SYS_MMAN_H
/* Define to 1 if you have the <sys/mount.h> header file. */
#undef HAVE_SYS_MOUNT_H
/* Define to 1 if you have the <sys/param.h> header file. */
#undef HAVE_SYS_PARAM_H
/* Define to 1 if you have the <sys/poll.h> header file. */
#undef HAVE_SYS_POLL_H
/* Define to 1 if you have the <sys/pstat.h> header file. */
#undef HAVE_SYS_PSTAT_H
/* Define to 1 if you have the <sys/resource.h> header file. */
#undef HAVE_SYS_RESOURCE_H
/* Define to 1 if you have the <sys/select.h> header file. */
#undef HAVE_SYS_SELECT_H
/* Define to 1 if you have the <sys/socket.h> header file. */
#undef HAVE_SYS_SOCKET_H
/* Define to 1 if you have the <sys/sockio.h> header file. */
#undef HAVE_SYS_SOCKIO_H
/* Define to 1 if you have the <sys/statfs.h> header file. */
#undef HAVE_SYS_STATFS_H
/* Define to 1 if you have the <sys/statvfs.h> header file. */
#undef HAVE_SYS_STATVFS_H
/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H
/* Define to 1 if you have the <sys/sysexits.h> header file. */
#undef HAVE_SYS_SYSEXITS_H
/* Define to 1 if you have the <sys/sysmacros.h> header file. */
#undef HAVE_SYS_SYSMACROS_H
/* Define to 1 if you have the <sys/time.h> header file. */
#undef HAVE_SYS_TIME_H
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
/* Define to 1 if you have the <sys/uio.h> header file. */
#undef HAVE_SYS_UIO_H
/* Define to 1 if you have the <sys/utsname.h> header file. */
#undef HAVE_SYS_UTSNAME_H
/* Define to 1 if you have the <sys/vfs.h> header file. */
#undef HAVE_SYS_VFS_H
/* Define to 1 if you have the <sys/wait.h> header file. */
#undef HAVE_SYS_WAIT_H
/* Define to 1 if the PHP extension 'tidy' is available. */
#undef HAVE_TIDY
/* Define to 1 if you have the <tidybuffio.h> header file. */
#undef HAVE_TIDYBUFFIO_H
/* Define to 1 if tidyOptGetCategory is available. */
#undef HAVE_TIDYOPTGETCATEGORY
/* Define to 1 if Tidy library has the 'tidyOptGetDoc' function. */
#undef HAVE_TIDYOPTGETDOC
/* Define to 1 if you have the <tidyp.h> header file. */
#undef HAVE_TIDYP_H
/* Define to 1 if Tidy library has the 'tidyReleaseDate' function. */
#undef HAVE_TIDYRELEASEDATE
/* Define to 1 if you have the <tidy.h> header file. */
#undef HAVE_TIDY_H
/* Define to 1 if you have the <timelib_config.h> header file. */
#undef HAVE_TIMELIB_CONFIG_H
/* Define to 1 if you have the 'times' function. */
#undef HAVE_TIMES
/* Define to 1 if you have the <tmmintrin.h> header file. */
#undef HAVE_TMMINTRIN_H
/* Define to 1 if your 'struct tm' has 'tm_zone'. Deprecated, use
'HAVE_STRUCT_TM_TM_ZONE' instead. */
#undef HAVE_TM_ZONE
/* Define to 1 if you have a working 'ttyname_r' function. */
#undef HAVE_TTYNAME_R
/* Define to 1 if you don't have 'tm_zone' but do have the external array
'tzname'. */
#undef HAVE_TZNAME
/* Define to 1 if you have the 'tzset' function. */
#undef HAVE_TZSET
/* Define to 1 if you have the <udbcext.h> header file. */
#undef HAVE_UDBCEXT_H
/* Define to 1 if the system has the type 'union semun'. */
#undef HAVE_UNION_SEMUN
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define to 1 if the odbc extension uses the unixODBC. */
#undef HAVE_UNIXODBC
/* Define to 1 if you have the <unix.h> header file. */
#undef HAVE_UNIX_H
/* Define to 1 if you have the 'unsetenv' function. */
#undef HAVE_UNSETENV
/* Define to 1 if you have the 'unshare' function. */
#undef HAVE_UNSHARE
/* Define to 1 if the PHP extension 'odbc' is available. */
#undef HAVE_UODBC
/* Define to 1 if faulting on write-protected memory support can be compiled
for userfaultfd. */
#undef HAVE_USERFAULTFD_WRITEFAULT
/* Define to 1 if you have the 'usleep' function. */
#undef HAVE_USLEEP
/* Define to 1 if you have the 'utime' function. */
#undef HAVE_UTIME
/* Define to 1 if you have the 'utimes' function. */
#undef HAVE_UTIMES
/* Define to 1 if you have the <utime.h> header file. */
#undef HAVE_UTIME_H
/* Define to 1 if Valgrind is enabled and supported. */
#undef HAVE_VALGRIND
/* Define to 1 if you have the <valgrind/cachegrind.h> header file. */
#undef HAVE_VALGRIND_CACHEGRIND_H
/* Define to 1 if you have the 'vasprintf' function. */
#undef HAVE_VASPRINTF
/* Define to 1 if you have the 'wait3' function. */
#undef HAVE_WAIT3
/* Define to 1 if you have the 'wait4' function. */
#undef HAVE_WAIT4
/* Define to 1 if you have the 'waitid' function. */
#undef HAVE_WAITID
/* Define to 1 if you have the <wchar.h> header file. */
#undef HAVE_WCHAR_H
/* Define to 1 if you have the 'WIFCONTINUED' function. */
#undef HAVE_WIFCONTINUED
/* Define to 1 if you have the <wmmintrin.h> header file. */
#undef HAVE_WMMINTRIN_H
/* Define to 1 if the PHP extension 'xml' is available. */
#undef HAVE_XML
/* Define to 1 if the PHP extension 'xmlreader' is available. */
#undef HAVE_XMLREADER
/* Define to 1 if the PHP extension 'xmlwriter' is available. */
#undef HAVE_XMLWRITER
/* Define to 1 if you have the xpm library. */
#undef HAVE_XPM
/* Define to 1 if the PHP extension 'xsl' is available. */
#undef HAVE_XSL
/* Define to 1 if the system has the EXSLT extension library for XSLT. */
#undef HAVE_XSL_EXSLT
/* Define to 1 if the PHP extension 'zip' is available. */
#undef HAVE_ZIP
/* Define to 1 if the PHP extension 'zlib' is available. */
#undef HAVE_ZLIB
/* Define to 1 if _controlfp is present and usable. */
#undef HAVE__CONTROLFP
/* Define to 1 if _controlfp_s is present and usable. */
#undef HAVE__CONTROLFP_S
/* Define to 1 if _FPU_SETCW is present and usable. */
#undef HAVE__FPU_SETCW
/* Define to 1 if you have the '__atomic_exchange_1' function. */
#undef HAVE___ATOMIC_EXCHANGE_1
/* Define to 1 if 'iconv()' is aliased to 'libiconv()'. */
#undef ICONV_ALIASED_LIBICONV
/* Define to 1 if iconv has broken IGNORE. */
#undef ICONV_BROKEN_IGNORE
/* Define to 1 if GD library has JIS-mapped Japanese font support. */
#undef JISX0208
/* The LMDB handler header file. */
#undef LMDB_INCLUDE_FILE
/* Define to 1 to load the OpenSSL legacy algorithm provider in addition to
the default provider. */
#undef LOAD_OPENSSL_LEGACY_PROVIDER
/* Define to 1 if 'major', 'minor', and 'makedev' are declared in <mkdev.h>.
*/
#undef MAJOR_IN_MKDEV
/* Define to 1 if 'major', 'minor', and 'makedev' are declared in
<sysmacros.h>. */
#undef MAJOR_IN_SYSMACROS
/* Define to 1 if 'asctime_r' declaration is missing. */
#undef MISSING_ASCTIME_R_DECL
/* Define to 1 if 'ctime_r' declaration is missing. */
#undef MISSING_CTIME_R_DECL
/* Define to 1 if 'gmtime_r' declaration is missing. */
#undef MISSING_GMTIME_R_DECL
/* Define to 1 if 'localtime_r' declaration is missing. */
#undef MISSING_LOCALTIME_R_DECL
/* Define to 1 if 'strtok_r' declaration is missing. */
#undef MISSING_STRTOK_R_DECL
/* Define to 1 if mysqlnd has compressed protocol support. */
#undef MYSQLND_COMPRESSION_ENABLED
/* Define to 1 if mysqlnd extended SSL is enabled through a system library. */
#undef MYSQLND_HAVE_SSL
/* Define to 1 if mysqlnd core SSL is enabled. */
#undef MYSQLND_SSL_SUPPORTED
/* The NDBM handler header file. */
#undef NDBM_INCLUDE_FILE
/* The highest supported ODBC version. */
#undef ODBCVER
/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT
/* Define to the full name of this package. */
#undef PACKAGE_NAME
/* Define to the full name and version of this package. */
#undef PACKAGE_STRING
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
/* Define to the home page for this package. */
#undef PACKAGE_URL
/* Define to the version of this package. */
#undef PACKAGE_VERSION
/* Number of bits in non-UTF mode for PCRE library. */
#undef PCRE2_CODE_UNIT_WIDTH
/* The MySQL Unix socket location as defined by 'mysql_config' for use with
the pdo_mysql extension. */
#undef PDO_MYSQL_UNIX_ADDR
/* Define to the ODBC driver or driver manager value. */
#undef PDO_ODBC_TYPE
/* Define to 1 if SQLite library was compiled with the
SQLITE_OMIT_LOAD_EXTENSION and does not have the extension support with the
'sqlite3_load_extension' function. For usage in the pdo_sqlite. See
https://www.sqlite.org/compile.html. */
#undef PDO_SQLITE_OMIT_LOAD_EXTENSION
/* Define to 1 if the pdo_mysql extension uses mysqlnd. */
#undef PDO_USE_MYSQLND
/* Define to 1 if phar extension has native OpenSSL support. */
#undef PHAR_HAVE_OPENSSL
/* The build architecture. */
#undef PHP_BUILD_ARCH
/* The compiler used for the PHP build. */
#undef PHP_BUILD_COMPILER
/* The PHP build provider information. */
#undef PHP_BUILD_PROVIDER
/* The system that PHP was built on. */
#undef PHP_BUILD_SYSTEM
/* Define to 1 if your system has fork/vfork/CreateProcess. */
#undef PHP_CAN_SUPPORT_PROC_OPEN
/* Define to 1 if the compiler supports AVX-512. */
#undef PHP_HAVE_AVX512_SUPPORTS
/* Define to 1 if the compiler supports AVX-512 VBMI. */
#undef PHP_HAVE_AVX512_VBMI_SUPPORTS
/* Define to 1 if the compiler supports '__builtin_clz'. */
#undef PHP_HAVE_BUILTIN_CLZ
/* Define to 1 if the compiler supports '__builtin_clzl'. */
#undef PHP_HAVE_BUILTIN_CLZL
/* Define to 1 if the compiler supports '__builtin_clzll'. */
#undef PHP_HAVE_BUILTIN_CLZLL
/* Define to 1 if the compiler supports '__builtin_cpu_init'. */
#undef PHP_HAVE_BUILTIN_CPU_INIT
/* Define to 1 if the compiler supports '__builtin_cpu_supports'. */
#undef PHP_HAVE_BUILTIN_CPU_SUPPORTS
/* Define to 1 if the compiler supports '__builtin_ctzl'. */
#undef PHP_HAVE_BUILTIN_CTZL
/* Define to 1 if the compiler supports '__builtin_ctzll'. */
#undef PHP_HAVE_BUILTIN_CTZLL
/* Define to 1 if the compiler supports '__builtin_expect'. */
#undef PHP_HAVE_BUILTIN_EXPECT
/* Define to 1 if the compiler supports '__builtin_frame_address'. */
#undef PHP_HAVE_BUILTIN_FRAME_ADDRESS
/* Define to 1 if the compiler supports '__builtin_saddll_overflow'. */
#undef PHP_HAVE_BUILTIN_SADDLL_OVERFLOW
/* Define to 1 if the compiler supports '__builtin_saddl_overflow'. */
#undef PHP_HAVE_BUILTIN_SADDL_OVERFLOW
/* Define to 1 if the compiler supports '__builtin_smulll_overflow'. */
#undef PHP_HAVE_BUILTIN_SMULLL_OVERFLOW
/* Define to 1 if the compiler supports '__builtin_smull_overflow'. */
#undef PHP_HAVE_BUILTIN_SMULL_OVERFLOW
/* Define to 1 if the compiler supports '__builtin_ssubll_overflow'. */
#undef PHP_HAVE_BUILTIN_SSUBLL_OVERFLOW
/* Define to 1 if the compiler supports '__builtin_ssubl_overflow'. */
#undef PHP_HAVE_BUILTIN_SSUBL_OVERFLOW
/* Define to 1 if the compiler supports '__builtin_unreachable'. */
#undef PHP_HAVE_BUILTIN_UNREACHABLE
/* Define to 1 if the compiler supports '__builtin_usub_overflow'. */
#undef PHP_HAVE_BUILTIN_USUB_OVERFLOW
/* Define to 1 if you have HP-UX 10.x.-style reentrant time functions. */
#undef PHP_HPUX_TIME_R
/* The iconv implementation. */
#undef PHP_ICONV_IMPL
/* Define to 1 you have IRIX-style reentrant time functions. */
#undef PHP_IRIX_TIME_R
/* Define to 1 if mhash support is enabled. */
#undef PHP_MHASH_BC
/* The MySQL Unix socket location. */
#undef PHP_MYSQL_UNIX_SOCK_ADDR
/* Define to 1 if oniguruma has an invalid entry for KOI8 encoding. */
#undef PHP_ONIG_BAD_KOI8_ENTRY
/* The 'uname' output. */
#undef PHP_OS
/* Define to 1 if 'pread' declaration with 'off64_t' is missing. */
#undef PHP_PREAD_64
/* Define to 1 if 'pwrite' declaration with 'off64_t' is missing. */
#undef PHP_PWRITE_64
/* Define to 1 if PHP uses its own SIGCHLD handler, and to 0 if not. */
#undef PHP_SIGCHILD
/* The 'uname -a' output. */
#undef PHP_UNAME
/* Define to 1 if PHP uses its own crypt_r, and to 0 if using the external
crypt library. */
#undef PHP_USE_PHP_CRYPT_R
/* Define to 1 if 'dlopen()' uses the 'RTLD_NOW' mode flag instead of
'RTLD_LAZY'. */
#undef PHP_USE_RTLD_NOW
/* Define to 1 if 'write(2)' works. */
#undef PHP_WRITE_STDOUT
/* Define to the /proc/pid/mem interface filename value. */
#undef PROC_MEM_FILE
/* The QDBM handler header file. */
#undef QDBM_INCLUDE_FILE
/* The size of 'int', as computed by sizeof. */
#undef SIZEOF_INT
/* The size of 'intmax_t', as computed by sizeof. */
#undef SIZEOF_INTMAX_T
/* The size of 'long', as computed by sizeof. */
#undef SIZEOF_LONG
/* The size of 'long long', as computed by sizeof. */
#undef SIZEOF_LONG_LONG
/* The size of 'off_t', as computed by sizeof. */
#undef SIZEOF_OFF_T
/* The size of 'ptrdiff_t', as computed by sizeof. */
#undef SIZEOF_PTRDIFF_T
/* The size of 'size_t', as computed by sizeof. */
#undef SIZEOF_SIZE_T
/* The size of 'ssize_t', as computed by sizeof. */
#undef SIZEOF_SSIZE_T
/* Define to 1 if SQLite library was compiled with the
SQLITE_OMIT_LOAD_EXTENSION and does not have the extension support with the
'sqlite3_load_extension' function. For usage in the sqlite3 PHP extension.
See https://www.sqlite.org/compile.html. */
#undef SQLITE_OMIT_LOAD_EXTENSION
/* Define to 1 to be able to use the wchar defs in the obsolete <sqlunix.h>
header file on some FreeBSD systems. */
#undef SS_FBX
/* Define to 1 to be able to use the obsolete <sqlunix.h> header file on some
Linux systems. */
#undef SS_LINUX
/* 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 runtime.
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 to 1 if all of the C89 standard headers exist (not just the ones
required in a freestanding environment). This macro is provided for
backward compatibility; new code need not use it. */
#undef STDC_HEADERS
/* Define to 1 if strerror_r returns char *. */
#undef STRERROR_R_CHAR_P
/* The Tokyo Cabinet handler header file. */
#undef TCADB_INCLUDE_FILE
/* Define to 1 if your <sys/time.h> declares 'struct tm'. */
#undef TM_IN_SYS_TIME
/* Define to 1 if gd extension has JIS-mapped Japanese font support. */
#undef USE_GD_JISX0208
/* Define to 1 if cross-process locking is required by 'accept()'. */
#undef USE_LOCKING
/* Define to 1 to use system default cipher list instead of the hardcoded
value in OpenSSL. */
#undef USE_OPENSSL_SYSTEM_CIPHERS
/* Enable extensions on AIX, Interix, z/OS. */
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
#endif
/* Enable general extensions on macOS. */
#ifndef _DARWIN_C_SOURCE
# undef _DARWIN_C_SOURCE
#endif
/* Enable general extensions on Solaris. */
#ifndef __EXTENSIONS__
# undef __EXTENSIONS__
#endif
/* Enable GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif
/* Enable X/Open compliant socket functions that do not require linking
with -lxnet on HP-UX 11.11. */
#ifndef _HPUX_ALT_XOPEN_SOCKET_API
# undef _HPUX_ALT_XOPEN_SOCKET_API
#endif
/* Identify the host operating system as Minix.
This macro does not affect the system headers' behavior.
A future release of Autoconf may stop defining this macro. */
#ifndef _MINIX
# undef _MINIX
#endif
/* Enable general extensions on NetBSD.
Enable NetBSD compatibility extensions on Minix. */
#ifndef _NETBSD_SOURCE
# undef _NETBSD_SOURCE
#endif
/* Enable OpenBSD compatibility extensions on NetBSD.
Oddly enough, this does nothing on OpenBSD. */
#ifndef _OPENBSD_SOURCE
# undef _OPENBSD_SOURCE
#endif
/* Define to 1 if needed for POSIX-compatible behavior. */
#ifndef _POSIX_SOURCE
# undef _POSIX_SOURCE
#endif
/* Define to 2 if needed for POSIX-compatible behavior. */
#ifndef _POSIX_1_SOURCE
# undef _POSIX_1_SOURCE
#endif
/* Enable POSIX-compatible threading on Solaris. */
#ifndef _POSIX_PTHREAD_SEMANTICS
# undef _POSIX_PTHREAD_SEMANTICS
#endif
/* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
# undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-1:2014. */
#ifndef __STDC_WANT_IEC_60559_BFP_EXT__
# undef __STDC_WANT_IEC_60559_BFP_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-2:2015. */
#ifndef __STDC_WANT_IEC_60559_DFP_EXT__
# undef __STDC_WANT_IEC_60559_DFP_EXT__
#endif
/* Enable extensions specified by C23 Annex F. */
#ifndef __STDC_WANT_IEC_60559_EXT__
# undef __STDC_WANT_IEC_60559_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-4:2015. */
#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
# undef __STDC_WANT_IEC_60559_FUNCS_EXT__
#endif
/* Enable extensions specified by C23 Annex H and ISO/IEC TS 18661-3:2015. */
#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
# undef __STDC_WANT_IEC_60559_TYPES_EXT__
#endif
/* Enable extensions specified by ISO/IEC TR 24731-2:2010. */
#ifndef __STDC_WANT_LIB_EXT2__
# undef __STDC_WANT_LIB_EXT2__
#endif
/* Enable extensions specified by ISO/IEC 24747:2009. */
#ifndef __STDC_WANT_MATH_SPEC_FUNCS__
# undef __STDC_WANT_MATH_SPEC_FUNCS__
#endif
/* Enable extensions on HP NonStop. */
#ifndef _TANDEM_SOURCE
# undef _TANDEM_SOURCE
#endif
/* Enable X/Open extensions. Define to 500 only if necessary
to make mbstate_t available. */
#ifndef _XOPEN_SOURCE
# undef _XOPEN_SOURCE
#endif
/* Define if processor uses big-endian word. */
#undef WORDS_BIGENDIAN
/* Define to 1 if checking the stack limit is supported. */
#undef ZEND_CHECK_STACK_LIMIT
/* Define to 1 if debugging is enabled, and to 0 if not. */
#undef ZEND_DEBUG
/* Define to 1 if Zend fiber uses ucontext instead of boost context. */
#undef ZEND_FIBER_UCONTEXT
/* Define to 1 if Zend max execution timers are supported and enabled. */
#undef ZEND_MAX_EXECUTION_TIMERS
/* Number of bytes for the ZEND_MM alignment. */
#undef ZEND_MM_ALIGNMENT
/* Number of bytes for the logarithmic ZEND_MM alignment. */
#undef ZEND_MM_ALIGNMENT_LOG2
/* Define to 1 if ZEND_MM needs 8-byte realignment, and to 0 if not. */
#undef ZEND_MM_NEED_EIGHT_BYTE_REALIGNMENT
/* Define to 1 if Zend signal handling is supported and enabled. */
#undef ZEND_SIGNALS
/* Define to 1 if thread safety (ZTS) is enabled. */
#undef ZTS
/* */
#undef _XOPEN_SOURCE
/* Define to 1 when using musl libc. */
#undef __MUSL__
/* Define as 'int' if <sys/types.h> doesn't define. */
#undef gid_t
/* Define as 'unsigned int' if <stddef.h> doesn't define. */
#undef size_t
/* Define as 'int' if <sys/types.h> doesn't define. */
#undef uid_t
#include <stdlib.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#include <string.h>
#endif /* PHP_CONFIG_H */
|