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
|
/* config.h.in. Generated from configure.ac by autoheader. */
#ifndef SUDO_CONFIG_H
#define SUDO_CONFIG_H
/* Configure script arguments used to build sudo. */
#undef CONFIGURE_ARGS
/* Define to 1 if you want sudo to honor '.' and "" in the PATH. */
#undef ALLOW_DOT_PATH
/* Define to 1 if you want the insults from the "classic" version sudo. */
#undef CLASSIC_INSULTS
/* Define to 1 if you want insults culled from the twisted minds of CSOps. */
#undef CSOPS_INSULTS
/* Define to 1 if you want sudo to display "command not allowed" instead of
"command not found" when a command cannot be found. */
#undef DONT_LEAK_PATH_INFO
/* A colon-separated list of pathnames to be used as the editor for visudo. */
#undef EDITOR
/* Define to 1 to enable sudo's plugin interface. */
#undef ENABLE_SUDO_PLUGIN_API
/* Define to 1 to enable environment function debugging. */
#undef ENV_DEBUG
/* Define to 1 if you want visudo to honor the EDITOR and VISUAL env
variables. */
#undef ENV_EDITOR
/* Define to 1 to enable environment resetting by default. */
#undef ENV_RESET
/* If defined, users in this group need not enter a passwd (ie "sudo"). */
#undef EXEMPTGROUP
/* Define to 1 if you want to require fully qualified hosts in sudoers. */
#undef FQDN
/* Define to the type of elements in the array argument to 'getgroups'.
Usually this is either 'int' or 'gid_t'. */
#undef GETGROUPS_T
/* Define to 1 if you want insults from the "Goon Show". */
#undef GOONS_INSULTS
/* Define to 1 if you want 2001-like insults. */
#undef HAL_INSULTS
/* Define to 1 if you use AFS. */
#undef HAVE_AFS
/* Define to 1 if you use AIX general authentication. */
#undef HAVE_AIXAUTH
/* Define to 1 to enable AppArmor support. */
#undef HAVE_APPARMOR
/* Define to 1 if you have the 'arc4random' function. */
#undef HAVE_ARC4RANDOM
/* Define to 1 if you have the 'arc4random_buf' function. */
#undef HAVE_ARC4RANDOM_BUF
/* Define to 1 if you have the 'arc4random_uniform' function. */
#undef HAVE_ARC4RANDOM_UNIFORM
/* Define to 1 if you have the 'ASN1_STRING_get0_data' function. */
#undef HAVE_ASN1_STRING_GET0_DATA
/* Define to 1 if you have the 'asprintf' function. */
#undef HAVE_ASPRINTF
/* Define to 1 if the system has the type 'authdb_t'. */
#undef HAVE_AUTHDB_T
/* Define to 1 if you have the 'authenticate' function. */
#undef HAVE_AUTHENTICATE
/* Define to 1 if you have the 'auth_challenge' function. */
#undef HAVE_AUTH_CHALLENGE
/* Define to 1 if the 'au_close' functions takes 4 arguments like Solaris 11.
*/
#undef HAVE_AU_CLOSE_SOLARIS11
/* Define to 1 if you have the 'bigcrypt' function. */
#undef HAVE_BIGCRYPT
/* Define to 1 if you use BSD authentication. */
#undef HAVE_BSD_AUTH_H
/* Define to 1 to enable BSM audit support. */
#undef HAVE_BSM_AUDIT
/* Define to 1 if you have the 'bzero' function. */
#undef HAVE_BZERO
/* Define to 1 if you have the 'cfmakeraw' function. */
#undef HAVE_CFMAKERAW
/* Define to 1 if you have the 'clock_gettime' function. */
#undef HAVE_CLOCK_GETTIME
/* Define to 1 if you have the 'closefrom' function. */
#undef HAVE_CLOSEFROM
/* Define to 1 if you have the 'close_range' function. */
#undef HAVE_CLOSE_RANGE
/* Define to 1 if you have the <crt_externs.h> header file. */
#undef HAVE_CRT_EXTERNS_H
/* Define to 1 if you have the 'crypt' function. */
#undef HAVE_CRYPT
/* Define to 1 if you use OSF DCE. */
#undef HAVE_DCE
/* Define to 1 if your 'DIR' contains dd_fd. */
#undef HAVE_DD_FD
/* Define to 1 if you have the declaration of 'errno', and to 0 if you don't.
*/
#undef HAVE_DECL_ERRNO
/* Define to 1 if you have the declaration of 'getdelim', and to 0 if you
don't. */
#undef HAVE_DECL_GETDELIM
/* Define to 1 if you have the declaration of 'getdomainname', and to 0 if you
don't. */
#undef HAVE_DECL_GETDOMAINNAME
/* Define to 1 if you have the declaration of 'getgrouplist_2', and to 0 if
you don't. */
#undef HAVE_DECL_GETGROUPLIST_2
/* Define to 1 if you have the declaration of 'getresuid', and to 0 if you
don't. */
#undef HAVE_DECL_GETRESUID
/* Define to 1 if you have the declaration of 'getusershell', and to 0 if you
don't. */
#undef HAVE_DECL_GETUSERSHELL
/* Define to 1 if you have the declaration of 'h_errno', and to 0 if you
don't. */
#undef HAVE_DECL_H_ERRNO
/* Define to 1 if you have the declaration of 'innetgr', and to 0 if you
don't. */
#undef HAVE_DECL_INNETGR
/* Define to 1 if you have the declaration of 'LLONG_MAX', and to 0 if you
don't. */
#undef HAVE_DECL_LLONG_MAX
/* Define to 1 if you have the declaration of 'LLONG_MIN', and to 0 if you
don't. */
#undef HAVE_DECL_LLONG_MIN
/* Define to 1 if you have the declaration of 'NSIG', and to 0 if you don't.
*/
#undef HAVE_DECL_NSIG
/* Define to 1 if you have the declaration of 'PATH_MAX', and to 0 if you
don't. */
#undef HAVE_DECL_PATH_MAX
/* Define to 1 if you have the declaration of 'pread64', and to 0 if you
don't. */
#undef HAVE_DECL_PREAD64
/* Define to 1 if you have the declaration of 'pwrite64', and to 0 if you
don't. */
#undef HAVE_DECL_PWRITE64
/* Define to 1 if you have the declaration of 'QUAD_MAX', and to 0 if you
don't. */
#undef HAVE_DECL_QUAD_MAX
/* Define to 1 if you have the declaration of 'QUAD_MIN', and to 0 if you
don't. */
#undef HAVE_DECL_QUAD_MIN
/* Define to 1 if you have the declaration of 'SECCOMP_MODE_FILTER', and to 0
if you don't. */
#undef HAVE_DECL_SECCOMP_MODE_FILTER
/* Define to 1 if you have the declaration of 'setauthdb', and to 0 if you
don't. */
#undef HAVE_DECL_SETAUTHDB
/* Define to 1 if you have the declaration of 'setresuid', and to 0 if you
don't. */
#undef HAVE_DECL_SETRESUID
/* Define to 1 if you have the declaration of 'SIG2STR_MAX', and to 0 if you
don't. */
#undef HAVE_DECL_SIG2STR_MAX
/* Define to 1 if you have the declaration of 'SIZE_MAX', and to 0 if you
don't. */
#undef HAVE_DECL_SIZE_MAX
/* Define to 1 if you have the declaration of 'SIZE_T_MAX', and to 0 if you
don't. */
#undef HAVE_DECL_SIZE_T_MAX
/* Define to 1 if you have the declaration of 'SSIZE_MAX', and to 0 if you
don't. */
#undef HAVE_DECL_SSIZE_MAX
/* Define to 1 if you have the declaration of 'sys_sigabbrev', and to 0 if you
don't. */
#undef HAVE_DECL_SYS_SIGABBREV
/* Define to 1 if you have the declaration of 'sys_siglist', and to 0 if you
don't. */
#undef HAVE_DECL_SYS_SIGLIST
/* Define to 1 if you have the declaration of 'sys_signame', and to 0 if you
don't. */
#undef HAVE_DECL_SYS_SIGNAME
/* Define to 1 if you have the declaration of 'ULLONG_MAX', and to 0 if you
don't. */
#undef HAVE_DECL_ULLONG_MAX
/* Define to 1 if you have the declaration of 'UQUAD_MAX', and to 0 if you
don't. */
#undef HAVE_DECL_UQUAD_MAX
/* Define to 1 if you have the declaration of 'usrinfo', and to 0 if you
don't. */
#undef HAVE_DECL_USRINFO
/* Define to 1 if you have the declaration of '_innetgr', and to 0 if you
don't. */
#undef HAVE_DECL__INNETGR
/* Define to 1 if you have the declaration of '_NSIG', and to 0 if you don't.
*/
#undef HAVE_DECL__NSIG
/* Define to 1 if you have the declaration of '_POSIX_PATH_MAX', and to 0 if
you don't. */
#undef HAVE_DECL__POSIX_PATH_MAX
/* Define to 1 if you have the declaration of '_sys_siglist', and to 0 if you
don't. */
#undef HAVE_DECL__SYS_SIGLIST
/* Define to 1 if you have the declaration of '_sys_signame', and to 0 if you
don't. */
#undef HAVE_DECL__SYS_SIGNAME
/* Define to 1 if you have the declaration of '__NSIG', and to 0 if you don't.
*/
#undef HAVE_DECL___NSIG
/* Define to 1 if you have the 'devname' function. */
#undef HAVE_DEVNAME
/* Define to 1 if you have the <dirent.h> header file, and it defines 'DIR'.
*/
#undef HAVE_DIRENT_H
/* Define to 1 if you have the 'dirfd' function or macro. */
#undef HAVE_DIRFD
/* Define to 1 if you have the 'dispcrypt' function. */
#undef HAVE_DISPCRYPT
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define to 1 if you have the 'dlopen' function. */
#undef HAVE_DLOPEN
/* Define to 1 if you have the 'dl_iterate_phdr' function. */
#undef HAVE_DL_ITERATE_PHDR
/* Define to 1 if the compiler supports the __visibility__ attribute. */
#undef HAVE_DSO_VISIBILITY
/* Define to 1 if you have the 'dup3' function. */
#undef HAVE_DUP3
/* Define to 1 if you have the <endian.h> header file. */
#undef HAVE_ENDIAN_H
/* Define to 1 if you have the 'exect' function. */
#undef HAVE_EXECT
/* Define to 1 if you have the 'execvP' function. */
#undef HAVE_EXECVP
/* Define to 1 if you have the 'execvpe' function. */
#undef HAVE_EXECVPE
/* 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 'faccessat' function. */
#undef HAVE_FACCESSAT
/* Define to 1 if the compiler supports the fallthrough attribute. */
#undef HAVE_FALLTHROUGH_ATTRIBUTE
/* Define to 1 if you have the 'fchmodat' function. */
#undef HAVE_FCHMODAT
/* Define to 1 if you have the 'fchownat' function. */
#undef HAVE_FCHOWNAT
/* Define to 1 if your system has the F_CLOSEM fcntl. */
#undef HAVE_FCNTL_CLOSEM
/* Define to 1 if you have the 'fexecve' function. */
#undef HAVE_FEXECVE
/* Define to 1 if you have the 'fmemopen' function. */
#undef HAVE_FMEMOPEN
/* Define to 1 if you have the 'fnmatch' function. */
#undef HAVE_FNMATCH
/* Define to 1 if you have the 'freeifaddrs' function. */
#undef HAVE_FREEIFADDRS
/* Define to 1 if you have the 'freezero' function. */
#undef HAVE_FREEZERO
/* Define to 1 if fseeko (and ftello) are declared in stdio.h. */
#undef HAVE_FSEEKO
/* Define to 1 if you have the 'fstatat' function. */
#undef HAVE_FSTATAT
/* Define to 1 if you have the 'futime' function. */
#undef HAVE_FUTIME
/* Define to 1 if you have the 'futimens' function. */
#undef HAVE_FUTIMENS
/* Define to 1 if you have the 'futimes' function. */
#undef HAVE_FUTIMES
/* Define to 1 if you have the 'futimesat' function. */
#undef HAVE_FUTIMESAT
/* Define to 1 if you use the FWTK authsrv daemon. */
#undef HAVE_FWTK
/* Define to 1 if you are using gcrypt's sha2 functions. */
#undef HAVE_GCRYPT
/* Define to 1 if you have the 'getaddrinfo' function. */
#undef HAVE_GETADDRINFO
/* Define to 1 if you have the 'getauxval' function. */
#undef HAVE_GETAUXVAL
/* Define to 1 if you have the 'getdelim' function. */
#undef HAVE_GETDELIM
/* Define to 1 if you have the 'getdomainname' function. */
#undef HAVE_GETDOMAINNAME
/* Define to 1 if you have the 'getentropy' function. */
#undef HAVE_GETENTROPY
/* Define to 1 if you have the 'getgrouplist' function. */
#undef HAVE_GETGROUPLIST
/* Define to 1 if you have the 'getgrouplist_2' function. */
#undef HAVE_GETGROUPLIST_2
/* Define to 1 if your system has a working 'getgroups' function. */
#undef HAVE_GETGROUPS
/* Define to 1 if you have the 'getgrset' function. */
#undef HAVE_GETGRSET
/* Define to 1 if you have the 'gethrtime' function. */
#undef HAVE_GETHRTIME
/* Define to 1 if you have the 'getifaddrs' function. */
#undef HAVE_GETIFADDRS
/* Define to 1 if you have the 'getopt_long' function. */
#undef HAVE_GETOPT_LONG
/* Define to 1 if you have the 'getprogname' function. */
#undef HAVE_GETPROGNAME
/* Define to 1 if you have the 'getprpwnam' function. (SecureWare-style shadow
passwords). */
#undef HAVE_GETPRPWNAM
/* Define to 1 if you have the 'getpwnam_shadow' function. */
#undef HAVE_GETPWNAM_SHADOW
/* Define to 1 if you have the 'getresuid' function. */
#undef HAVE_GETRESUID
/* Define to 1 if you have the 'getspnam' function (SVR4-style shadow
passwords). */
#undef HAVE_GETSPNAM
/* Define to 1 if you have the 'getttyent' function. */
#undef HAVE_GETTTYENT
/* Define to 1 if you have the 'getuserattr' function. */
#undef HAVE_GETUSERATTR
/* Define to 1 if you have the 'getusershell' function. */
#undef HAVE_GETUSERSHELL
/* Define to 1 if you have the 'getutid' function. */
#undef HAVE_GETUTID
/* Define to 1 if you have the 'getutsid' function. */
#undef HAVE_GETUTSID
/* Define to 1 if you have the 'getutxid' function. */
#undef HAVE_GETUTXID
/* Define to 1 if you have the 'glob' function. */
#undef HAVE_GLOB
/* Define to 1 if you have the 'gmtime_r' function. */
#undef HAVE_GMTIME_R
/* Define to 1 if you have the 'grantpt' function. */
#undef HAVE_GRANTPT
/* Define to 1 if you have the <gssapi/gssapi.h> header file. */
#undef HAVE_GSSAPI_GSSAPI_H
/* Define to 1 if you have the <gssapi/gssapi_krb5.h> header file. */
#undef HAVE_GSSAPI_GSSAPI_KRB5_H
/* Define to 1 if you have the <gssapi.h> header file. */
#undef HAVE_GSSAPI_H
/* Define to 1 if you have the 'gss_krb5_ccache_name' function. */
#undef HAVE_GSS_KRB5_CCACHE_NAME
/* Define to 1 if your Kerberos is Heimdal. */
#undef HAVE_HEIMDAL
/* Define to 1 if you have the 'inet_ntop' function. */
#undef HAVE_INET_NTOP
/* Define to 1 if you have the 'inet_pton' function. */
#undef HAVE_INET_PTON
/* Define to 1 if you have the 'initprivs' function. */
#undef HAVE_INITPRIVS
/* Define to 1 if you have the 'innetgr' function. */
#undef HAVE_INNETGR
/* 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 if you have isblank(3). */
#undef HAVE_ISBLANK
/* Define to 1 if you have the 'iscomsec' function. (HP-UX >= 10.x check for
shadow enabled). */
#undef HAVE_ISCOMSEC
/* Define to 1 if you use Kerberos V. */
#undef HAVE_KERB5
/* Define to 1 if you have the 'killpg' function. */
#undef HAVE_KILLPG
/* Define to 1 if your system has a NetBSD-style kinfo_proc2 struct. */
#undef HAVE_KINFO_PROC2_NETBSD
/* Define to 1 if your system has a 4.4BSD-style kinfo_proc struct. */
#undef HAVE_KINFO_PROC_44BSD
/* Define to 1 if your system has a Dragonfly-style kinfo_proc struct. */
#undef HAVE_KINFO_PROC_DFLY
/* Define to 1 if your system has a FreeBSD-style kinfo_proc struct. */
#undef HAVE_KINFO_PROC_FREEBSD
/* Define to 1 if your system has an OpenBSD-style kinfo_proc struct. */
#undef HAVE_KINFO_PROC_OPENBSD
/* Define to 1 if you have the 'krb5_get_init_creds_opt_alloc' function. */
#undef HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC
/* Define to 1 if your 'krb5_get_init_creds_opt_free' function takes two
arguments. */
#undef HAVE_KRB5_GET_INIT_CREDS_OPT_FREE_TWO_ARGS
/* Define to 1 if you have the 'krb5_init_secure_context' function. */
#undef HAVE_KRB5_INIT_SECURE_CONTEXT
/* Define to 1 if you have the 'krb5_verify_user' function. */
#undef HAVE_KRB5_VERIFY_USER
/* Define to 1 if your LDAP needs <lber.h>. (OpenLDAP does not). */
#undef HAVE_LBER_H
/* Define to 1 if you use LDAP for sudoers. */
#undef HAVE_LDAP
/* Define to 1 if you have the <ldapssl.h> header file. */
#undef HAVE_LDAPSSL_H
/* Define to 1 if you have the 'ldapssl_init' function. */
#undef HAVE_LDAPSSL_INIT
/* Define to 1 if you have the 'ldapssl_set_strength' function. */
#undef HAVE_LDAPSSL_SET_STRENGTH
/* Define to 1 if you have the 'ldap_create' function. */
#undef HAVE_LDAP_CREATE
/* Define to 1 if you have the 'ldap_initialize' function. */
#undef HAVE_LDAP_INITIALIZE
/* Define to 1 if you have the 'ldap_sasl_bind_s' function. */
#undef HAVE_LDAP_SASL_BIND_S
/* Define to 1 if you have the 'ldap_sasl_interactive_bind_s' function. */
#undef HAVE_LDAP_SASL_INTERACTIVE_BIND_S
/* Define to 1 if you have the 'ldap_search_ext_s' function. */
#undef HAVE_LDAP_SEARCH_EXT_S
/* Define to 1 if you have the 'ldap_search_st' function. */
#undef HAVE_LDAP_SEARCH_ST
/* Define to 1 if you have the 'ldap_ssl_client_init' function. */
#undef HAVE_LDAP_SSL_CLIENT_INIT
/* Define to 1 if you have the <ldap_ssl.h> header file. */
#undef HAVE_LDAP_SSL_H
/* Define to 1 if you have the 'ldap_ssl_init' function. */
#undef HAVE_LDAP_SSL_INIT
/* 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_start_tls_s_np' function. */
#undef HAVE_LDAP_START_TLS_S_NP
/* Define to 1 if you have the 'ldap_str2dn' function. */
#undef HAVE_LDAP_STR2DN
/* Define to 1 if you have the 'ldap_unbind_ext_s' function. */
#undef HAVE_LDAP_UNBIND_EXT_S
/* Define to 1 if you have the <libintl.h> header file. */
#undef HAVE_LIBINTL_H
/* Define to 1 if you have the <libproc.h> header file. */
#undef HAVE_LIBPROC_H
/* Define to 1 if you have the <libutil.h> header file. */
#undef HAVE_LIBUTIL_H
/* Define to 1 to enable Linux audit support. */
#undef HAVE_LINUX_AUDIT
/* Define to 1 if you have the <linux/close_range.h> header file. */
#undef HAVE_LINUX_CLOSE_RANGE_H
/* Define to 1 if you have the <linux/random.h> header file. */
#undef HAVE_LINUX_RANDOM_H
/* Define to 1 if you have the 'localtime_r' function. */
#undef HAVE_LOCALTIME_R
/* Define to 1 if you have the 'lockf' function. */
#undef HAVE_LOCKF
/* Define to 1 if you have the <login_cap.h> header file. */
#undef HAVE_LOGIN_CAP_H
/* Define to 1 if the system has the type 'long long int'. */
#undef HAVE_LONG_LONG_INT
/* Define to 1 if you have the <machine/endian.h> header file. */
#undef HAVE_MACHINE_ENDIAN_H
/* Define to 1 if you have the 'mach_continuous_time' function. */
#undef HAVE_MACH_CONTINUOUS_TIME
/* Define to 1 if you have the <maillock.h> header file. */
#undef HAVE_MAILLOCK_H
/* Define to 1 if you have the 'memrchr' function. */
#undef HAVE_MEMRCHR
/* Define to 1 if you have the 'memset_explicit' function. */
#undef HAVE_MEMSET_EXPLICIT
/* Define to 1 if you have the 'memset_s' function. */
#undef HAVE_MEMSET_S
/* Define to 1 if you have the <minix/config.h> header file. */
#undef HAVE_MINIX_CONFIG_H
/* Define to 1 if you have the 'mkdirat' function. */
#undef HAVE_MKDIRAT
/* Define to 1 if you have the 'mkdtempat' function. */
#undef HAVE_MKDTEMPAT
/* Define to 1 if you have the 'mkdtempat_np' function. */
#undef HAVE_MKDTEMPAT_NP
/* Define to 1 if you have the 'mkostempsat' function. */
#undef HAVE_MKOSTEMPSAT
/* Define to 1 if you have the 'mkostempsat_np' function. */
#undef HAVE_MKOSTEMPSAT_NP
/* Define to 1 if you have the <mps/ldap_ssl.h> header file. */
#undef HAVE_MPS_LDAP_SSL_H
/* Define to 1 if you have the 'nanosleep' function. */
#undef HAVE_NANOSLEEP
/* Define to 1 if you have the <ndir.h> header file, and it defines 'DIR'. */
#undef HAVE_NDIR_H
/* Define to 1 if you have the <netgroup.h> header file. */
#undef HAVE_NETGROUP_H
/* Define to 1 if you have the 'ngettext' function. */
#undef HAVE_NGETTEXT
/* Define to 1 if you have the 'nl_langinfo' function. */
#undef HAVE_NL_LANGINFO
/* Define to 1 if you have the <nss_dbdefs.h> header file. */
#undef HAVE_NSS_DBDEFS_H
/* Define to 1 if you have the 'nss_search' function. */
#undef HAVE_NSS_SEARCH
/* Define to 1 if you have the 'openat' function. */
#undef HAVE_OPENAT
/* Define to 1 if you have the 'openpty' function. */
#undef HAVE_OPENPTY
/* Define to 1 if you are using OpenSSL's TLS and sha2 functions. */
#undef HAVE_OPENSSL
/* Define to 1 if you use NRL OPIE. */
#undef HAVE_OPIE
/* Define to 1 if you have the 'optreset' symbol. */
#undef HAVE_OPTRESET
/* Define to 1 if you use PAM authentication. */
#undef HAVE_PAM
/* Define to 1 if you have the 'pam_getenvlist' function. */
#undef HAVE_PAM_GETENVLIST
/* Define to 1 if you use a specific PAM session for sudo -i. */
#undef HAVE_PAM_LOGIN
/* Define to 1 if you have the <pam/pam_appl.h> header file. */
#undef HAVE_PAM_PAM_APPL_H
/* Define to 1 if you have the <paths.h> header file. */
#undef HAVE_PATHS_H
/* Define to 1 if you have the 'pipe2' function. */
#undef HAVE_PIPE2
/* Define to 1 if you have the 'poll' function. */
#undef HAVE_POLL
/* Define to 1 if you have the 'posix_openpt' function. */
#undef HAVE_POSIX_OPENPT
/* Define to 1 if you have the 'posix_spawn' function. */
#undef HAVE_POSIX_SPAWN
/* Define to 1 if you have the 'posix_spawnp' function. */
#undef HAVE_POSIX_SPAWNP
/* Define to 1 if you have the 'ppoll' function. */
#undef HAVE_PPOLL
/* Define to 1 if you have the 'pread' function. */
#undef HAVE_PREAD
/* Define to 1 if you have the 'pread64' function. */
#undef HAVE_PREAD64
/* Define to 1 if you have the 'priv_set' function. */
#undef HAVE_PRIV_SET
/* Define to 1 if you have the 'process_vm_readv' function. */
#undef HAVE_PROCESS_VM_READV
/* Define to 1 if you have the <procfs.h> header file. */
#undef HAVE_PROCFS_H
/* Define to 1 if you have the 'proc_pidinfo' function. */
#undef HAVE_PROC_PIDINFO
/* Define to 1 if you have the <project.h> header file. */
#undef HAVE_PROJECT_H
/* Define to 1 if you have the 'pselect' function. */
#undef HAVE_PSELECT
/* Define to 1 if you have the 'pstat_getproc' function. */
#undef HAVE_PSTAT_GETPROC
/* Define to 1 if you have the 'pthread_atfork' function. */
#undef HAVE_PTHREAD_ATFORK
/* Define to 1 if you have the <pthread.h> header file. */
#undef HAVE_PTHREAD_H
/* Define to 1 if you have the <pty.h> header file. */
#undef HAVE_PTY_H
/* Define to 1 if you have the 'pwrite' function. */
#undef HAVE_PWRITE
/* Define to 1 if you have the 'pwrite64' function. */
#undef HAVE_PWRITE64
/* Define to 1 if you have the 'pw_dup' function. */
#undef HAVE_PW_DUP
/* Define to 1 if you have the 'reallocarray' function. */
#undef HAVE_REALLOCARRAY
/* Define to 1 if you have the 'realpath' function. */
#undef HAVE_REALPATH
/* Define to 1 if you have the 'renameat' function. */
#undef HAVE_RENAMEAT
/* Define to 1 if you have the 'revoke' function. */
#undef HAVE_REVOKE
/* Define to 1 if the skeychallenge() function is RFC1938-compliant and takes
4 arguments. */
#undef HAVE_RFC1938_SKEYCHALLENGE
/* Define to 1 if you have the <sasl.h> header file. */
#undef HAVE_SASL_H
/* Define to 1 if you have the <sasl/sasl.h> header file. */
#undef HAVE_SASL_SASL_H
/* Define to 1 if you use SecurID for authentication. */
#undef HAVE_SECURID
/* Define to 1 if you have the <security/pam_appl.h> header file. */
#undef HAVE_SECURITY_PAM_APPL_H
/* Define to 1 to enable SELinux RBAC support. */
#undef HAVE_SELINUX
/* Define to 1 if you have the 'setauthdb' function. */
#undef HAVE_SETAUTHDB
/* Define to 1 if you have the 'seteuid' function. */
#undef HAVE_SETEUID
/* Define to 1 if you have the 'setgroupent' function. */
#undef HAVE_SETGROUPENT
/* Define to 1 if you have the 'setkeycreatecon' function. */
#undef HAVE_SETKEYCREATECON
/* Define to 1 if you have the 'setpassent' function. */
#undef HAVE_SETPASSENT
/* Define to 1 if you have the 'setprogname' function. */
#undef HAVE_SETPROGNAME
/* Define to 1 if you have the 'setresuid' function. */
#undef HAVE_SETRESUID
/* Define to 1 if you have the 'setreuid' function. */
#undef HAVE_SETREUID
/* Define to 1 if you have the 'setrlimit64' function. */
#undef HAVE_SETRLIMIT64
/* Define to 1 if you have the 'set_auth_parameters' function. */
#undef HAVE_SET_AUTH_PARAMETERS
/* Define to 1 if you have the 'SHA224Update' function. */
#undef HAVE_SHA224UPDATE
/* Define to 1 if you have the 'shl_load' function. */
#undef HAVE_SHL_LOAD
/* Define to 1 if you have the 'sia_ses_init' function. */
#undef HAVE_SIA_SES_INIT
/* Define to 1 if you have the 'sig2str' function. */
#undef HAVE_SIG2STR
/* Define to 1 if you have the 'sigabbrev_np' function. */
#undef HAVE_SIGABBREV_NP
/* Define to 1 if the system has the type 'sig_atomic_t'. */
#undef HAVE_SIG_ATOMIC_T
/* Define to 1 if you use S/Key. */
#undef HAVE_SKEY
/* Define to 1 if your S/Key library has skeyaccess(). */
#undef HAVE_SKEYACCESS
/* Define to 1 if you have the 'snprintf' function. */
#undef HAVE_SNPRINTF
/* Define to 1 if the system has the type 'socklen_t'. */
#undef HAVE_SOCKLEN_T
/* Define to 1 to enable Solaris audit support. */
#undef HAVE_SOLARIS_AUDIT
/* Define to 1 if you have the <spawn.h> header file. */
#undef HAVE_SPAWN_H
/* Define to 1 if you have the 'SSL_CTX_get0_certificate' function. */
#undef HAVE_SSL_CTX_GET0_CERTIFICATE
/* Define to 1 if you have the 'SSL_CTX_set0_tmp_dh_pkey' function. */
#undef HAVE_SSL_CTX_SET0_TMP_DH_PKEY
/* Define to 1 if you have the 'SSL_CTX_set_ciphersuites' function or macro.
*/
#undef HAVE_SSL_CTX_SET_CIPHERSUITES
/* Define to 1 if you have the 'SSL_CTX_set_min_proto_version' function or
macro. */
#undef HAVE_SSL_CTX_SET_MIN_PROTO_VERSION
/* Define to 1 if you have the 'SSL_read_ex' function. */
#undef HAVE_SSL_READ_EX
/* Define to 1 to enable SSSD support. */
#undef HAVE_SSSD
/* Define to 1 if stdbool.h conforms to C99. */
#undef HAVE_STDBOOL_H
/* 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 'str2sig' function. */
#undef HAVE_STR2SIG
/* 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 'strsignal' function. */
#undef HAVE_STRSIGNAL
/* Define to 1 if you have the 'strtoull' function. */
#undef HAVE_STRTOULL
/* Define to 1 if 'd_namlen' is a member of 'struct dirent'. */
#undef HAVE_STRUCT_DIRENT_D_NAMLEN
/* Define to 1 if 'd_type' is a member of 'struct dirent'. */
#undef HAVE_STRUCT_DIRENT_D_TYPE
/* Define to 1 if the system has the type 'struct in6_addr'. */
#undef HAVE_STRUCT_IN6_ADDR
/* Define to 1 if 'pr_ttydev' is a member of 'struct psinfo'. */
#undef HAVE_STRUCT_PSINFO_PR_TTYDEV
/* Define if your struct sockaddr_in has a sin_len field. */
#undef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
/* Define if your struct sockaddr has an sa_len field. */
#undef HAVE_STRUCT_SOCKADDR_SA_LEN
/* Define to 1 if 'tm_gmtoff' is a member of 'struct tm'. */
#undef HAVE_STRUCT_TM_TM_GMTOFF
/* Define to 1 if 'ut_exit' is a member of 'struct utmp'. */
#undef HAVE_STRUCT_UTMP_UT_EXIT
/* Define to 1 if 'ut_exit.e_termination' is a member of 'struct utmp'. */
#undef HAVE_STRUCT_UTMP_UT_EXIT_E_TERMINATION
/* Define to 1 if 'ut_exit.__e_termination' is a member of 'struct utmp'. */
#undef HAVE_STRUCT_UTMP_UT_EXIT___E_TERMINATION
/* Define to 1 if 'ut_id' is a member of 'struct utmp'. */
#undef HAVE_STRUCT_UTMP_UT_ID
/* Define to 1 if 'ut_pid' is a member of 'struct utmp'. */
#undef HAVE_STRUCT_UTMP_UT_PID
/* Define to 1 if 'ut_tv' is a member of 'struct utmp'. */
#undef HAVE_STRUCT_UTMP_UT_TV
/* Define to 1 if 'ut_type' is a member of 'struct utmp'. */
#undef HAVE_STRUCT_UTMP_UT_TYPE
/* Define to 1 if 'ut_user' is a member of 'struct utmp'. */
#undef HAVE_STRUCT_UTMP_UT_USER
/* Define to 1 if your struct stat has an st_mtim member. */
#undef HAVE_ST_MTIM
/* Define to 1 if your struct stat has an st_mtimespec member. */
#undef HAVE_ST_MTIMESPEC
/* Define to 1 if your struct stat has an st_nmtime member. */
#undef HAVE_ST_NMTIME
/* Define to 1 if your struct stat uses an st__tim union. */
#undef HAVE_ST__TIM
/* Define to 1 if you have the 'sysctl' function. */
#undef HAVE_SYSCTL
/* Define to 1 if you have the 'sysinfo' function. */
#undef HAVE_SYSINFO
/* Define to 1 if you have the <sys/bsdtypes.h> header file. */
#undef HAVE_SYS_BSDTYPES_H
/* Define to 1 if you have the <sys/dir.h> header file, and it defines 'DIR'.
*/
#undef HAVE_SYS_DIR_H
/* Define to 1 if you have the <sys/endian.h> header file. */
#undef HAVE_SYS_ENDIAN_H
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines 'DIR'.
*/
#undef HAVE_SYS_NDIR_H
/* Define to 1 if you have the <sys/procfs.h> header file. */
#undef HAVE_SYS_PROCFS_H
/* Define to 1 if you have the <sys/random.h> header file. */
#undef HAVE_SYS_RANDOM_H
/* Define to 1 if you have the <sys/select.h> header file. */
#undef HAVE_SYS_SELECT_H
/* Define to 1 if your libc has the 'sys_sigabbrev' symbol. */
#undef HAVE_SYS_SIGABBREV
/* 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/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/stropts.h> header file. */
#undef HAVE_SYS_STROPTS_H
/* Define to 1 if you have the <sys/syscall.h> header file. */
#undef HAVE_SYS_SYSCALL_H
/* Define to 1 if you have the <sys/sysctl.h> header file. */
#undef HAVE_SYS_SYSCTL_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/systeminfo.h> header file. */
#undef HAVE_SYS_SYSTEMINFO_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 'timegm' function. */
#undef HAVE_TIMEGM
/* Define to 1 if you have the 'TLS_method' function. */
#undef HAVE_TLS_METHOD
/* Define to 1 if you have the 'ttyslot' function. */
#undef HAVE_TTYSLOT
/* Define to 1 if the system has the type 'uintmax_t'. */
#undef HAVE_UINTMAX_T
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define to 1 if you have the 'unlinkat' function. */
#undef HAVE_UNLINKAT
/* Define to 1 if you have the 'unsetenv' function. */
#undef HAVE_UNSETENV
/* Define to 1 if the system has the type 'unsigned long long int'. */
#undef HAVE_UNSIGNED_LONG_LONG_INT
/* Define to 1 if you have the <util.h> header file. */
#undef HAVE_UTIL_H
/* Define to 1 if you have the 'utimensat' function. */
#undef HAVE_UTIMENSAT
/* Define to 1 if you have the 'utimes' function. */
#undef HAVE_UTIMES
/* Define to 1 if you have the <utmps.h> header file. */
#undef HAVE_UTMPS_H
/* Define to 1 if you have the <utmpx.h> header file. */
#undef HAVE_UTMPX_H
/* Define to 1 if you have the 'vasprintf' function. */
#undef HAVE_VASPRINTF
/* Define to 1 if you have the 'va_copy' function. */
#undef HAVE_VA_COPY
/* Define to 1 if you have the 'vsnprintf' function. */
#undef HAVE_VSNPRINTF
/* Define to 1 if you have the <wchar.h> header file. */
#undef HAVE_WCHAR_H
/* Define to 1 if you are using wolfSSL's TLS and sha2 functions. */
#undef HAVE_WOLFSSL
/* Define to 1 if you have the 'wordexp' function. */
#undef HAVE_WORDEXP
/* Define to 1 if you have the <wordexp.h> header file. */
#undef HAVE_WORDEXP_H
/* Define to 1 if you have the 'X509_STORE_CTX_get0_cert' function. */
#undef HAVE_X509_STORE_CTX_GET0_CERT
/* Define to 1 if you have the <zlib.h> header file. */
#undef HAVE_ZLIB_H
/* Define to 1 if the system has the type '_Bool'. */
#undef HAVE__BOOL
/* Define to 1 if you have the '_getpty' function. */
#undef HAVE__GETPTY
/* Define to 1 if you have the '_innetgr' function. */
#undef HAVE__INNETGR
/* Define to 1 if you have the '_NSGetEnviron' function. */
#undef HAVE__NSGETENVIRON
/* Define to 1 if you have the '_nss_initf_group' function. */
#undef HAVE__NSS_INITF_GROUP
/* Define to 1 if you have the '_nss_XbyY_buf_alloc' function. */
#undef HAVE__NSS_XBYY_BUF_ALLOC
/* Define to 1 if you have the '_ttyname_dev' function. */
#undef HAVE__TTYNAME_DEV
/* Define to 1 if you have the '__builtin_clz' built-in function */
#undef HAVE___BUILTIN_CLZ
/* Define to 1 if you have the '__builtin_clzl' built-in function */
#undef HAVE___BUILTIN_CLZL
/* Define to 1 if the compiler supports the C99 __func__ variable. */
#undef HAVE___FUNC__
/* Define to 1 if you have dyld with __interpose attribute support. */
#undef HAVE___INTERPOSE
/* Define to 1 if you have the '__nss_initf_group' function. */
#undef HAVE___NSS_INITF_GROUP
/* Define to 1 if you have the '__nss_XbyY_buf_alloc' function. */
#undef HAVE___NSS_XBYY_BUF_ALLOC
/* Define to 1 if your crt0.o defines the __progname symbol for you. */
#undef HAVE___PROGNAME
/* Define to 1 if you have the '__va_copy' function. */
#undef HAVE___VA_COPY
/* Define to 1 if you want the hostname to be entered into the log file. */
#undef HOST_IN_LOG
/* The message given when a bad password is entered. */
#undef INCORRECT_PASSWORD
/* Define to (int) if the 'ioctl' function request takes an int request
argument. */
#undef IOCTL_REQ_CAST
/* The syslog facility sudo will use. */
#undef LOGFAC
/* Define to SLOG_SYSLOG, SLOG_FILE, or SLOG_BOTH. */
#undef LOGGING
/* Define to 1 if you want a two line OTP (S/Key or OPIE) prompt. */
#undef LONG_OTP_PROMPT
/* Define to the sub-directory where libtool stores uninstalled libraries. */
#undef LT_OBJDIR
/* The subject of the mail sent by sudo to the MAILTO user/address. */
#undef MAILSUBJECT
/* The user or email address that sudo mail is sent to. */
#undef MAILTO
/* 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
/* The max number of chars per log file line (for line wrapping). */
#undef MAXLOGFILELEN
/* Define to 1 if resolv.h must be included to get the 'inet_ntop' or
'inet_pton' function prototypes. */
#undef NEED_RESOLV_H
/* Define to 1 if you don't want sudo to prompt for a password by default. */
#undef NO_AUTHENTICATION
/* Define to 1 if you want sudo to free up memory before exiting. */
#undef NO_LEAKS
/* Define to 1 if you don't want users to get the lecture the first time they
use sudo. */
#undef NO_LECTURE
/* Define to 1 if you don't want to use sudo's PAM session support. */
#undef NO_PAM_SESSION
/* Define to avoid running the mailer as root. */
#undef NO_ROOT_MAILER
/* Define to 1 if root should not be allowed to use sudo. */
#undef NO_ROOT_SUDO
/* Define if your C preprocessor does not support variadic macros. */
#undef NO_VARIADIC_MACROS
/* 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
/* Define to 1 if your system uses a Solaris-derived PAM and not Linux-PAM or
OpenPAM. */
#undef PAM_SUN_CODEBASE
/* The default password prompt. */
#undef PASSPROMPT
/* The passwd prompt timeout (in minutes). */
#undef PASSWORD_TIMEOUT
/* Enable replacement (v)snprintf if system (v)snprintf is broken. */
#undef PREFER_PORTABLE_SNPRINTF
/* The syslog priority sudo will use for unsuccessful attempts/errors. */
#undef PRI_FAILURE
/* The syslog priority sudo will use for successful attempts. */
#undef PRI_SUCCESS
/* Define to const if the 'putenv' function takes a const argument. */
#undef PUTENV_CONST
/* Define to 1 if you want insults from "Monty Python's Flying Circus". */
#undef PYTHON_INSULTS
/* The default value of preloaded objects (if any). */
#undef RTLD_PRELOAD_DEFAULT
/* The delimiter to use when defining multiple preloaded objects. */
#undef RTLD_PRELOAD_DELIM
/* An extra environment variable that is required to enable preloading (if
any). */
#undef RTLD_PRELOAD_ENABLE_VAR
/* The environment variable that controls preloading of dynamic objects. */
#undef RTLD_PRELOAD_VAR
/* The environment variable that controls preloading of 32-bit dynamic
objects. */
#undef RTLD_PRELOAD_VAR_32
/* The environment variable that controls preloading of 64-bit dynamic
objects. */
#undef RTLD_PRELOAD_VAR_64
/* The user sudo should run commands as by default. */
#undef RUNAS_DEFAULT
/* A colon-separated list of directories to override the user's PATH with. */
#undef SECURE_PATH
/* Define to 1 to send mail when the user is not allowed to run a command. */
#undef SEND_MAIL_WHEN_NOT_OK
/* Define to 1 to send mail when the user is not allowed to run sudo on this
host. */
#undef SEND_MAIL_WHEN_NO_HOST
/* Define to 1 to send mail when the user is not in the sudoers file. */
#undef SEND_MAIL_WHEN_NO_USER
/* Define to 1 if the sha2 functions use 'const void *' instead of 'const
unsigned char'. */
#undef SHA2_VOID_PTR
/* Define to 1 if you want sudo to start a shell if given no arguments. */
#undef SHELL_IF_NO_ARGS
/* Define to 1 if you want sudo to set $HOME in shell mode. */
#undef SHELL_SETS_HOME
/* The size of 'id_t', as computed by sizeof. */
#undef SIZEOF_ID_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 'time_t', as computed by sizeof. */
#undef SIZEOF_TIME_T
/* The size of 'uid_t', as computed by sizeof. */
#undef SIZEOF_UID_T
/* Define to 1 to compile the sudoers plugin statically into the sudo binary.
*/
#undef STATIC_SUDOERS_PLUGIN
/* 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 the code in interfaces.c does not compile for you. */
#undef STUB_LOAD_INTERFACES
/* Define to 1 to compile support for sudo_logsrvd in the sudoers plugin. */
#undef SUDOERS_LOG_CLIENT
/* An instance string to append to the username (separated by a slash) for
Kerberos V authentication. */
#undef SUDO_KRB5_INSTANCE
/* The umask that the sudo-run prog should use. */
#undef SUDO_UMASK
/* The number of minutes before sudo asks for a password again. */
#undef TIMEOUT
/* Define to global, ppid or tty to set the default timestamp record type. */
#undef TIMESTAMP_TYPE
/* The number of tries a user gets to enter their password. */
#undef TRIES_FOR_PASSWORD
/* Define to 1 to use the umask specified in sudoers even when it is less
restrictive than the invoking user's. */
#undef UMASK_OVERRIDE
/* Define to 1 if the 'unsetenv' function returns void instead of 'int'. */
#undef UNSETENV_VOID
/* Define to 1 if you want to insult the user for entering an incorrect
password. */
#undef USE_INSULTS
/* Define to 1 if you use GNU stow packaging. */
#undef USE_STOW
/* 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 to avoid using the passwd/shadow file for authentication. */
#undef WITHOUT_PASSWD
/* Number of bits in a file offset, on hosts where this is settable. */
#undef _FILE_OFFSET_BITS
/* Define to 1 if necessary to make fseeko visible. */
#undef _LARGEFILE_SOURCE
/* Define to 1 on platforms where this makes off_t a 64-bit type. */
#undef _LARGE_FILES
/* Number of bits in time_t, on hosts where this is settable. */
#undef _TIME_BITS
/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
#define below would cause a syntax error. */
#undef _UINT32_T
/* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
#define below would cause a syntax error. */
#undef _UINT64_T
/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
#define below would cause a syntax error. */
#undef _UINT8_T
/* Define to 1 on platforms where this makes time_t a 64-bit type. */
#undef __MINGW_USE_VC2005_COMPAT
/* Define to __FUNCTION__ if your compiler supports __FUNCTION__ but not
__func__ */
#undef __func__
/* Define to empty if 'const' does not conform to ANSI C. */
#undef const
/* Define as 'int' if <sys/types.h> doesn't define. */
#undef gid_t
/* Define to '__inline__' or '__inline' if that's what the C compiler
calls it, or to nothing if 'inline' is not supported under any name. */
#ifndef __cplusplus
#undef inline
#endif
/* Define to the type of a signed integer type of width exactly 16 bits if
such a type exists and the standard includes do not define it. */
#undef int16_t
/* Define to the type of a signed integer type of width exactly 32 bits if
such a type exists and the standard includes do not define it. */
#undef int32_t
/* Define to the type of a signed integer type of width exactly 64 bits if
such a type exists and the standard includes do not define it. */
#undef int64_t
/* Define to the type of a signed integer type of width exactly 8 bits if such
a type exists and the standard includes do not define it. */
#undef int8_t
/* Define to the widest signed integer type if <stdint.h> and <inttypes.h> do
not define. */
#undef intmax_t
/* Define to an OS-specific initialization function or 'os_init_common'. */
#undef os_init
/* Define to the equivalent of the C99 'restrict' keyword, or to
nothing if this is not supported. Do not define if restrict is
supported only directly. */
#undef restrict
/* Work around a bug in older versions of Sun C++, which did not
#define __restrict__ or support _Restrict or __restrict__
even though the corresponding Sun C compiler ended up with
"#define restrict _Restrict" or "#define restrict __restrict__"
in the previous line. This workaround can be removed once
we assume Oracle Developer Studio 12.5 (2016) or later. */
#if defined __SUNPRO_CC && !defined __RESTRICT && !defined __restrict__
# define _Restrict
# define __restrict__
#endif
/* Define as 'int' if <sys/types.h> doesn't define. */
#undef uid_t
/* Define to the type of an unsigned integer type of width exactly 16 bits if
such a type exists and the standard includes do not define it. */
#undef uint16_t
/* Define to the type of an unsigned integer type of width exactly 32 bits if
such a type exists and the standard includes do not define it. */
#undef uint32_t
/* Define to the type of an unsigned integer type of width exactly 64 bits if
such a type exists and the standard includes do not define it. */
#undef uint64_t
/* Define to the type of an unsigned integer type of width exactly 8 bits if
such a type exists and the standard includes do not define it. */
#undef uint8_t
/* Define to the widest unsigned integer type if <stdint.h> and <inttypes.h>
do not define. */
#undef uintmax_t
/* Define to empty if the keyword 'volatile' does not work. Warning: valid
code using 'volatile' can become incorrect without. Disable with care. */
#undef volatile
#ifndef HAVE_SIG_ATOMIC_T
typedef int sig_atomic_t;
#endif
#ifndef HAVE_SOCKLEN_T
typedef unsigned int socklen_t;
#endif
#ifndef __GNUC_PREREQ__
# ifdef __GNUC__
# define __GNUC_PREREQ__(ma, mi) \
((__GNUC__ > (ma)) || (__GNUC__ == (ma) && __GNUC_MINOR__ >= (mi)))
# else
# define __GNUC_PREREQ__(ma, mi) 0
# endif
#endif
/* Define away __attribute__ for non-gcc or old gcc. */
#if !defined(__attribute__) && !__GNUC_PREREQ__(2, 5)
# define __attribute__(x)
#endif
/* For functions that call exit() directly. */
#ifdef __has_c_attribute
# if __has_c_attribute(__noreturn__)
# define sudo_noreturn [[__noreturn__]]
# endif
#endif
#ifndef sudo_noreturn
# if __GNUC_PREREQ__(2, 5)
# define sudo_noreturn __attribute__((__noreturn__))
# else
# define sudo_noreturn
# endif
#endif
/* For malloc-like functions that return uninitialized or zeroed memory. */
#if __GNUC_PREREQ__(2, 96)
# define sudo_malloclike __attribute__((__malloc__))
#else
# define sudo_malloclike
#endif
/* Compile-time checking for function arguments that must not be NULL. */
#if __GNUC_PREREQ__(3, 3)
# define sudo_attr_nonnull(_a) __attribute__((__nonnull__ (_a)))
#else
# define sudo_attr_nonnull(_a)
#endif
/* For catching format string mismatches. */
#if __GNUC_PREREQ__(2, 7)
# define sudo_printflike(_f, _v) __attribute__((__format__ (__printf__, _f, _v))) sudo_attr_nonnull(_f)
# define sudo_printf0like(_f, _v) __attribute__((__format__ (__printf__, _f, _v)))
# define sudo_attr_fmt_arg(_f) __attribute__((__format_arg__ (_f)))
#else
# define sudo_printflike(_f, _v)
# define sudo_printf0like(_f, _v)
# define sudo_attr_fmt_arg(_f)
#endif
/* C23 defines a fallthrough attribute, gcc 7.0 and clang 10 have their own. */
#ifdef __has_c_attribute
# if __has_c_attribute(__fallthrough__)
# define FALLTHROUGH [[__fallthrough__]]
# endif
#endif
#ifndef FALLTHROUGH
# if defined(HAVE_FALLTHROUGH_ATTRIBUTE)
# define FALLTHROUGH __attribute__((__fallthrough__))
# else
# define FALLTHROUGH do { } while (0)
# endif
#endif
/* Symbol visibility controls. */
#ifdef HAVE_DSO_VISIBILITY
# if defined(__GNUC__)
# define sudo_dso_public __attribute__((__visibility__("default")))
# elif defined(__SUNPRO_C)
# define sudo_dso_public __global
# else
# define sudo_dso_public __declspec(dllexport)
# endif
#else
# define sudo_dso_public
#endif
/* BSD compatibility on some SVR4 systems. */
#ifdef __svr4__
# define BSD_COMP
#endif
/* Enable BSD extensions on systems that have them. */
#ifndef _BSD_SOURCE
# undef _BSD_SOURCE
#endif
/* Enable OpenBSD extensions on NetBSD. */
#ifndef _OPENBSD_SOURCE
# undef _OPENBSD_SOURCE
#endif
/* Enable BSD types on IRIX. */
#ifndef _BSD_TYPES
# undef _BSD_TYPES
#endif
/* Enable Linux-compatible extensions on AIX. */
#ifndef _LINUX_SOURCE_COMPAT
# undef _LINUX_SOURCE_COMPAT
#endif
/* Enable unlimited getgroups(2) support on macOS. */
#ifndef _DARWIN_UNLIMITED_GETGROUPS
# undef _DARWIN_UNLIMITED_GETGROUPS
#endif
/* Enable prototypes in GCC fixed includes on older systems. */
#ifndef __USE_FIXED_PROTOTYPES__
# undef __USE_FIXED_PROTOTYPES__
#endif
/* Enable XPG4v2 extensions to POSIX, needed for MSG_WAITALL on older HP-UX. */
#ifndef _XOPEN_SOURCE_EXTENDED
# undef _XOPEN_SOURCE_EXTENDED
#endif
/* Enable reentrant versions of the standard C API (obsolete). */
#ifndef _REENTRANT
# undef _REENTRANT
#endif
/* Enable "safer" versions of the standard C API (ISO C11). */
#ifndef __STDC_WANT_LIB_EXT1__
# undef __STDC_WANT_LIB_EXT1__
#endif
/* Prevent static analyzers from genering bogus memory leak warnings. */
#if defined(__COVERITY__) && !defined(NO_LEAKS)
# define NO_LEAKS
#endif
#endif /* SUDO_CONFIG_H */
|