Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

   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
/***********************************************************************
 * Copyright (c) 2009-2016, Secure Endpoints Inc.
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 
 * - Redistributions of source code must retain the above copyright
 *   notice, this list of conditions and the following disclaimer.
 * 
 * - Redistributions in binary form must reproduce the above copyright
 *   notice, this list of conditions and the following disclaimer in
 *   the documentation and/or other materials provided with the
 *   distribution.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 * 
 **********************************************************************/

#ifndef __CONFIG_H__
#define __CONFIG_H__

#ifndef RCSID
#define RCSID(msg) \
static const char *const rcsid[] = { (const char *)rcsid, "@(#)" msg }
#endif

/* If this file is being included by a resource script, don't bother
   with anything other than the version macros. */
#ifndef RC_INVOKED

#define MaxHostNameLen (64+4)
#define MaxPathLen MAX_PATH

#ifndef MAXHOSTNAMELEN
#define MAXHOSTNAMELEN MaxHostNameLen
#endif
#ifndef MAXPATHLEN
#define MAXPATHLEN MaxPathLen
#endif

#ifdef BUILD_KRB5_LIB
#ifndef KRB5_LIB
#ifdef _WIN32
#define KRB5_LIB_FUNCTION
#define KRB5_LIB_CALL     __stdcall
#define KRB5_LIB_VARIABLE
#else
#define KRB5_LIB_FUNCTION
#define KRB5_LIB_CALL
#define KRB5_LIB_VARIABLE
#endif
#endif
#endif


#ifdef BUILD_ROKEN_LIB
#ifndef ROKEN_LIB
#ifdef _WIN32
#define ROKEN_LIB_FUNCTION
#define ROKEN_LIB_CALL     __cdecl
#define ROKEN_LIB_VARIABLE
#else
#define ROKEN_LIB_FUNCTION
#define ROKEN_LIB_CALL
#define ROKEN_LIB_VARIABLE
#endif
#endif
#endif


#ifdef BUILD_GSSAPI_LIB
#ifndef GSSAPI_LIB
#ifdef _WIN32
#define GSSAPI_LIB_FUNCTION
#define GSSAPI_LIB_CALL     __stdcall
#define GSSAPI_LIB_VARIABLE
#else
#define GSSAPI_LIB_FUNCTION
#define GSSAPI_LIB_CALL
#define GSSAPI_LIB_VARIABLE
#endif
#endif
#endif

/* Feature macros */

@FEATURE_DEFS@

/* Define is backslashes act as path name delimiters */
#define BACKSLASH_PATH_DELIM 1

/* Path separator character */
#define PATH_SEP ";"

/* Define if you want to use DES encryption in telnet. */
#define DES_ENCRYPTION 1

/* Define this if you want support for broken ENV_{VAR,VAL} telnets. */
/* #undef ENV_HACK */

/* define if prototype of gethostbyaddr is compatible with struct hostent
   *gethostbyaddr(const void *, size_t, int) */
/* #undef GETHOSTBYADDR_PROTO_COMPATIBLE */

/* define if prototype of gethostbyname is compatible with struct hostent
   *gethostbyname(const char *) */
#define GETHOSTBYNAME_PROTO_COMPATIBLE 1

/* define if prototype of getservbyname is compatible with struct servent
   *getservbyname(const char *, const char *) */
#define GETSERVBYNAME_PROTO_COMPATIBLE 1

/* define if prototype of getsockname is compatible with int getsockname(int,
   struct sockaddr*, socklen_t*) */
/* #undef GETSOCKNAME_PROTO_COMPATIBLE */

/* Define if you have the `altzone' variable. */
/* #undef HAVE_ALTZONE */

/* Define to 1 if you have the `arc4random' function. */
/* #undef HAVE_ARC4RANDOM */

/* 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 <arpa/telnet.h> header file. */
/* #undef HAVE_ARPA_TELNET_H  */

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

/* Define to 1 if you have the `asnprintf' function. */
/* #undef HAVE_ASNPRINTF */

/* Define to 1 if you have the `asprintf' function. */
/* #undef HAVE_ASPRINTF */

/* Define to 1 if you have the `atexit' function. */
#define HAVE_ATEXIT 1

/* Define to 1 if you have the <bind/bitypes.h> header file. */
/* #undef HAVE_BIND_BITYPES_H */

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

/* Define to 1 if you have the `bswap16' function. */
/* #undef HAVE_BSWAP16 */

/* Define to 1 if you have the `bswap32' function. */
/* #undef HAVE_BSWAP32 */

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

/* Define to 1 if you have the `cap_set_proc' function. */
/* #undef HAVE_CAP_SET_PROC */

/* Define to 1 if you have the `cgetent' function. */
/* #undef HAVE_CGETENT */

/* Define if the system defines 'CHAR' type */
#define HAVE_CHAR 1

/* Define if you have the function `chown'. */
#define HAVE_CHOWN 1

/* Define if you have the function `closefrom'. */
/* #undef HAVE_CLOSEFROM */

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

/* Define if <conio.h> is present on the system is should be used for
   handling low level console operations. */
#define HAVE_CONIO_H

/* Define if you have the function `copyhostent'. */
/* #undef HAVE_COPYHOSTENT */

/* Define to 1 if you have the `crypt' function. */
/* #undef HAVE_CRYPT */

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

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

/* Define if you have the function `daemon'. */
/* #define HAVE_DAEMON 1 */

/* define if you have a berkeley db1/2 library */
/* #undef HAVE_DB1 */

/* define if you have a berkeley db3/4 library */
/* #define HAVE_DB3 1 */

/* Define to 1 if you have the <db3/db.h> header file. */
/* #undef HAVE_DB3_DB_H */

/* Define to 1 if you have the <db4/db.h> header file. */
/* #define HAVE_DB4_DB_H 1 */

/* Define to 1 if you have the `dbm_firstkey' function. */
/* #define HAVE_DBM_FIRSTKEY 1 */

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

/* Define to 1 if you have the `dbopen' function. */
/* #undef HAVE_DBOPEN */

/* Define to 1 if you have the <db_185.h> header file. */
/* #define HAVE_DB_185_H 1 */

/* Define to 1 if you have the `db_create' function. */
/* #define HAVE_DB_CREATE 1 */

/* Define to 1 if you have the <db.h> header file. */
/* #define HAVE_DB_H 1 */

/* define if you have ndbm compat in db */
/* #define HAVE_DB_NDBM 1 */

/* Define to 1 if you have the declaration of `altzone', and to 0 if you
   don't. */
/* #undef HAVE_DECL_ALTZONE */

/* Define to 1 if you have the declaration of `environ', and to 0 if you
   don't. */
#define HAVE_DECL_ENVIRON 1

/* Define to 1 if you have the declaration of `h_errlist', and to 0 if you
   don't. */
/* #undef HAVE_DECL_H_ERRLIST */

/* Define to 1 if you have the declaration of `h_errno', and to 0 if you
   don't. */
#define HAVE_DECL_H_ERRNO 1

/* Define to 1 if you have the declaration of `h_nerr', and to 0 if you don't.
   */
/* #undef HAVE_DECL_H_NERR */

/* Define to 1 if you have the declaration of `optarg', and to 0 if you don't.
   */
/* #undef HAVE_DECL_OPTARG */

/* Define to 1 if you have the declaration of `opterr', and to 0 if you don't.
   */
/* #undef HAVE_DECL_OPTERR */

/* Define to 1 if you have the declaration of `optind', and to 0 if you don't.
   */
/* #undef HAVE_DECL_OPTIND */

/* Define to 1 if you have the declaration of `optopt', and to 0 if you don't.
   */
/* #undef HAVE_DECL_OPTOPT */

/* Define to 1 if you have the declaration of `timezone', and to 0 if you
   don't. */
#define HAVE_DECL_TIMEZONE 1

/* Define to 1 if you have the declaration of `_res', and to 0 if you don't.
   */
/* #undef HAVE_DECL__RES */

/* Define to 1 if you have the declaration of `__progname', and to 0 if you
   don't. */
#define HAVE_DECL___PROGNAME 0

/* Define to 1 if you have the <dirent.h> header file. */
/* MSVC doesn't provide a <dirent.h>, but we implement it in
   lib/roken. */
#define HAVE_DIRENT_H 1

/* Define to 1 if you have the <dlfcn.h> header file. */
/* MSVC doesn't provide a <dlfcn.h>, but we implement it in lib/roken. */
#define HAVE_DLFCN_H 1

/* Define to 1 if you have the `dlopen' function. */
/* MSVC doesn't provide a <dlfcn.h>, but we implement it in lib/roken. */
#define HAVE_DLOPEN 1

/* Define to 1 if you have the `dladdr' function. */
/* MSVC doesn't provide a <dlfcn.h>, but we implement it in lib/roken. */
#define HAVE_DLADDR 1

/* Define to 1 if you have the `dn_expand' function. */
/* #undef HAVE_DN_EXPAND */

/* Define to 1 if you have the `door_create' function. */
/* #undef HAVE_DOOR_CREATE */

/* Define if you have the function `ecalloc'. */
/* #undef HAVE_ECALLOC */

/* Define to 1 if you have the `el_init' function. */
/* #undef HAVE_EL_INIT */

/* Define if you have the function `emalloc'. */
/* #undef HAVE_EMALLOC */

/* Define if you have the function `erealloc'. */
/* #undef HAVE_EREALLOC */

/* Define if you have the function `err'. */
#define HAVE_ERR 1

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

/* Define if you have the function `errx'. */
#define HAVE_ERRX 1

/* Define to 1 if you have the <err.h> header file. */
#define HAVE_ERR_H 1

/* Define if you have the function `estrdup'. */
/* #undef HAVE_ESTRDUP */

/* Define if you have the function `fchown'. */
/* #undef HAVE_FCHOWN */

/* Define to 1 if you have the `fcntl' function. */
/* #undef HAVE_FCNTL */

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

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

/* Define if you have the function `fnmatch'. */
/* #undef HAVE_FNMATCH */

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

/* Define if el_init takes four arguments. */
/* #undef HAVE_FOUR_VALUED_EL_INIT */

/* Have -framework Security */
/* #undef HAVE_FRAMEWORK_SECURITY */

/* Define to 1 if you have the `freeaddrinfo' function. */
#define HAVE_FREEADDRINFO 1

/* Define if you have the function `freehostent'. */
/* #undef HAVE_FREEHOSTENT */

/* Define to 1 if you have the `gai_strerror' function. */
#define HAVE_GAI_STRERROR 1

/* Define to 1 if you have the <gdbm/ndbm.h> header file. */
/* #undef HAVE_GDBM_NDBM_H */

/* Define to 1 if you have the `getaddrinfo' function. */
#define HAVE_GETADDRINFO 1

/* Define to 1 if you have the `getconfattr' function. */
/* #undef HAVE_GETCONFATTR */

/* Define if you have the function `getcwd'. */
#define HAVE_GETCWD 1

/* Define if you have the function `getdtablesize'. */
/* #define HAVE_GETDTABLESIZE 1 */

/* Define if you have the function `getegid'. */
/* #define HAVE_GETEGID 1 */

/* Define if you have the function `geteuid'. */
/* #define HAVE_GETEUID 1 */

/* Define if you have the function `getgid'. */
/* #define HAVE_GETGID 1 */

/* Define to 1 if you have the `gethostbyname' function. */
#define HAVE_GETHOSTBYNAME 1

/* Define to 1 if you have the `gethostbyname2' function. */
/* #undef HAVE_GETHOSTBYNAME2 */

/* Define if you have the function `gethostname'. */
#define HAVE_GETHOSTNAME 1

/* Define if you have the function `getifaddrs'. */
/* #undef HAVE_GETIFADDRS */

/* Define if you have the function `getipnodebyaddr'. */
/* #undef HAVE_GETIPNODEBYADDR */

/* Define if you have the function `getipnodebyname'. */
/* #undef HAVE_GETIPNODEBYNAME */

/* Define to 1 if you have the `getlogin' function. */
/* #define HAVE_GETLOGIN 1 */

/* Define if you have a working getmsg. */
/* #undef HAVE_GETMSG */

/* Define to 1 if you have the `getnameinfo' function. */
#define HAVE_GETNAMEINFO 1

/* Define if you have the function `getopt'. */
/* #define HAVE_GETOPT 1 */

/* Define to 1 if you have the `getpagesize' function. */
/* #define HAVE_GETPAGESIZE 1 */

/* Define to 1 if you have the `getpeereid' function. */
/* #define HAVE_GETPEEREID 1 */

/* Define to 1 if you have the `getpeerucred' function. */
/* #undef HAVE_GETPEERUCRED */

/* Define to 1 if you have the `getprogname' function. */
/* #define HAVE_GETPROGNAME 1 */

/* Define to 1 if you have the `getpwnam_r' function. */
/* #define HAVE_GETPWNAM_R 1 */

/* Define to 1 if you have the `getrlimit' function. */
/* #define HAVE_GETRLIMIT 1 */

/* Define to 1 if you have the `getsockopt' function. */
#define HAVE_GETSOCKOPT 1

/* Define to 1 if you have the `getspnam' function. */
/* #undef HAVE_GETSPNAM */

/* Define if you have the function `gettimeofday'. */
/* #define HAVE_GETTIMEOFDAY 1 */

/* Define to 1 if you have the `getudbnam' function. */
/* #undef HAVE_GETUDBNAM */

/* Define if you have the function `getuid'. */
/* #define HAVE_GETUID 1 */

/* Define if you have the function `getusershell'. */
/* #define HAVE_GETUSERSHELL 1 */

/* define if you have a glob() that groks GLOB_BRACE, GLOB_NOCHECK,
   GLOB_QUOTE, GLOB_TILDE, and GLOB_LIMIT */
/* #define HAVE_GLOB 1 */

/* Define to 1 if you have the `grantpt' function. */
/* #define HAVE_GRANTPT 1 */

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

/* Define to 1 if you have the `hstrerror' function. */
/* #define HAVE_HSTRERROR 1 */

/* Define if you have the `h_errlist' variable. */
/* #undef HAVE_H_ERRLIST */

/* Define if you have the `h_errno' variable. */
/* #define HAVE_H_ERRNO 1 */

/* Define if you have the `h_nerr' variable. */
/* #undef HAVE_H_NERR */

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

/* Define if you have the in6addr_loopback variable */
/* #undef HAVE_IN6ADDR_LOOPBACK */

/*  */
#define HAVE_INET_ADDR 1

/* define */
/* #define HAVE_INET_ATON 1 */

/* define */
/* #define HAVE_INET_NTOP 1 */

/* define */
/* #define HAVE_INET_PTON 1 */

#if _WIN32_WINNT >= 0x0600

#define HAVE_INET_NTOP 1

#define HAVE_INET_PTON 1

#endif

/* Define if you have the function `initgroups'. */
/* #define HAVE_INITGROUPS 1 */

/* Define to 1 if you have the `initstate' function. */
/* #define HAVE_INITSTATE 1 */

/* Define if you have the function `innetgr'. */
/* #undef HAVE_INNETGR */

/* Define to 1 if the system has the type `int16_t'. */
/* #define HAVE_INT16_T 1 */

/* Define to 1 if the system has the type `int32_t'. */
/* #define HAVE_INT32_T 1 */

/* Define to 1 if the system has the type `int64_t'. */
/* #define HAVE_INT64_T 1 */

/* Define to 1 if the system has the type `int8_t'. */
/* #define HAVE_INT8_T 1 */

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

/* Define to 1 if you have the <io.h> header file. */
#define HAVE_IO_H 1

/* Define if you have IPv6. */
#define HAVE_IPV6 1

/* Define if you have the function `iruserok'. */
/* #define HAVE_IRUSEROK 1 */

/* Define to 1 if you have the `issetugid' function. */
/* #undef HAVE_ISSETUGID */

/* Define if you want to use the Kerberos Credentials Manager. */
/* #define HAVE_KCM 1 */

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

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

/* Define to 1 if you have the `loadquery' function. */
/* #undef HAVE_LOADQUERY */

/* Define if you have the function `localtime_r'. */
/* #define HAVE_LOCALTIME_R 1 */

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

/* Define to 1 if you have the `logout' function. */
/* #define HAVE_LOGOUT 1 */

/* Define to 1 if you have the `logwtmp' function. */
/* #define HAVE_LOGWTMP 1 */

/* Define to 1 if the system has the type `long long'. */
#define HAVE_LONG_LONG 1

/* Define if you have the function `lstat'. */
/* #define HAVE_LSTAT 1 */

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

/* Define if you have the function `memmove'. */
#define HAVE_MEMMOVE 1

/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1

/* Define if you have the function `mkstemp'. */
/* #define HAVE_MKSTEMP 1 */

/* Define to 1 if you have the `mktime' function. */
#define HAVE_MKTIME 1

/* Define to 1 if you have a working `mmap' system call. */
/* #undef HAVE_MMAP */

/* define if you have a ndbm library */
/* #undef HAVE_NDBM */

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

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

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

/* Define to 1 if you have the <netinet6/in6.h> header file. */
/* #undef HAVE_NETINET6_IN6_H */

/* Define to 1 if you have the <netinet6/in6_var.h> header file. */
/* #undef HAVE_NETINET6_IN6_VAR_H */

/* Define to 1 if you have the <netinet/in6.h> header file. */
/* #undef HAVE_NETINET_IN6_H */

/* Define to 1 if you have the <netinet/in6_machtypes.h> header file. */
/* #undef HAVE_NETINET_IN6_MACHTYPES_H */

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

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

/* Define to 1 if you have the <netinet/in_systm.h> header file. */
/* #define HAVE_NETINET_IN_SYSTM_H 1 */

/* Define to 1 if you have the <netinet/ip.h> header file. */
/* #define HAVE_NETINET_IP_H 1 */

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

/* Define if you want to use Netinfo instead of krb5.conf. */
/* #undef HAVE_NETINFO */

/* Define to 1 if you have the <netinfo/ni.h> header file. */
/* #undef HAVE_NETINFO_NI_H */

/* Define to 1 if you have the <net/if.h> header file. */
/* #define HAVE_NET_IF_H 1 */

/* Define if NDBM really is DB (creates files *.db) */
/* #define HAVE_NEW_DB 1 */

/* Define to 1 if you have the `on_exit' function. */
/* #define HAVE_ON_EXIT 1 */

/* Define to 1 if you have the '_onexit' function */
#define HAVE__ONEXIT 1

/* Define to 1 if you have the `openpty' function. */
/* #define HAVE_OPENPTY 1 */

/* define to 1 to use openssl's libcrypto as a (default) backend for libhcrypto */
/* #undef HAVE_HCRYPTO_W_OPENSSL */

/* Define to enable basic OSF C2 support. */
/* #undef HAVE_OSFC2 */

/* Define to 1 if you have the <paths.h> header file. */
/* #define HAVE_PATHS_H 1 */

/* Define to 1 if you have the `pidfile' function. */
/* #undef HAVE_PIDFILE */

/* Define to 1 if you have the `poll' function. */
/* #define HAVE_POLL 1 */

/* Define to 1 if you have the <poll.h> header file. */
/* #define HAVE_POLL_H 1 */

/* Define to 1 if you have the <pthread.h> header file. */
/* This option is added by the NTMakefile if we have a <pthread.h>. */
/* #define HAVE_PTHREAD_H 1 */

/* Define to 1 if you have the `ptsname' function. */
/* #define HAVE_PTSNAME 1 */

/* Define to 1 if you have the <pty.h> header file. */
/* #define HAVE_PTY_H 1 */

/* Define if you have the function `putenv'. */
#define HAVE_PUTENV 1

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

/* Define to 1 if you have the `rand' function. */
#define HAVE_RAND 1

/* Define to 1 if you have the `random' function. */
/* #define HAVE_RANDOM 1 */

/* Define if you have the function `rcmd'. */
/* #define HAVE_RCMD 1 */

/* Define if you have a readline compatible library. */
/* #define HAVE_READLINE 1 */

/* Define if you have the function `readv'. */
/* #define HAVE_READV 1 */

/* Define if you have the function `recvmsg'. */
/* #define HAVE_RECVMSG 1 */

/* 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 `revoke' function. */
/* #define HAVE_REVOKE 1 */

/* Define to 1 if you have the <rpcsvc/ypclnt.h> header file. */
/* #undef HAVE_RPCSVC_YPCLNT_H */

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

/* Define to 1 if the system has the type `sa_family_t'. */
/* #define HAVE_SA_FAMILY_T 1 */

/* Define to 1 if you have the <security/pam_modules.h> header file. */
/* #undef HAVE_SECURITY_PAM_MODULES_H */

/* Define to 1 if you have the `select' function. */
#define HAVE_SELECT 1

/* Define if you have the function `sendmsg'. */
/* #define HAVE_SENDMSG 1 */

/* Define if you have the function `setegid'. */
/* #define HAVE_SETEGID 1 */

/* Define if you have the function `setenv'. */
#define HAVE_SETENV 1

/* Define if you have the function `seteuid'. */
/* #define HAVE_SETEUID 1 */

/* Define to 1 if you have the `setitimer' function. */
/* #define HAVE_SETITIMER 1 */

/* Define to 1 if you have the `setlim' function. */
/* #undef HAVE_SETLIM */

/* Define to 1 if you have the `setlogin' function. */
/* #undef HAVE_SETLOGIN */

/* Define to 1 if you have the `setpcred' function. */
/* #undef HAVE_SETPCRED */

/* Define to 1 if you have the `setpgid' function. */
/* #define HAVE_SETPGID 1 */

/* Define to 1 if you have the `setproctitle' function. */
/* #undef HAVE_SETPROCTITLE */

/* Define to 1 if you have the `setprogname' function. */
/* #define HAVE_SETPROGNAME 1 */

/* Define to 1 if you have the `setregid' function. */
/* #define HAVE_SETREGID 1 */

/* Define to 1 if you have the `setresgid' function. */
/* #undef HAVE_SETRESGID */

/* Define to 1 if you have the `setresuid' function. */
/* #undef HAVE_SETRESUID */

/* Define to 1 if you have the `setreuid' function. */
/* #define HAVE_SETREUID 1 */

/* Define to 1 if you have the `setsid' function. */
/* #define HAVE_SETSID 1 */

/* Define to 1 if you have the `setsockopt' function. */
#define HAVE_SETSOCKOPT 1

/* Define to 1 if you have the `setstate' function. */
/* #define HAVE_SETSTATE 1 */

/* Define to 1 if you have the `setutent' function. */
/* #define HAVE_SETUTENT 1 */

/* Define to 1 if you have the `sgi_getcapabilitybyname' function. */
/* #undef HAVE_SGI_GETCAPABILITYBYNAME */

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

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

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

/* Define to 1 if you have the `sigaction' function. */
/* #define HAVE_SIGACTION 1 */

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

/* define if you have a working snprintf */
/* snprintf() and vsnprintf() do exist.  But the implementations are
   not C99 compliant. */
/* #define HAVE_SNPRINTF 1 */

/* Define to 1 if you have the `socket' function. */
#define HAVE_SOCKET 1

/* Define to 1 if the system has the type `socklen_t'. */
#define HAVE_SOCKLEN_T 1

/* Define to 1 if the system has the type `ssize_t'. */
/* #define HAVE_SSIZE_T 1 */

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

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

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

/* Define if you have the function `strcasecmp'. */
#define HAVE_STRCASECMP 1
#define strcasecmp _stricmp

/* Define if you have the function `strdup'. */
#define HAVE_STRDUP 1

/* Define if you have the function `strerror'. */
#define HAVE_STRERROR 1

/* Define if you have the function `strftime'. */
#define HAVE_STRFTIME 1

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

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

/* Define if you have the function `strlcat'. */
/* #define HAVE_STRLCAT 1 */

/* Define if you have the function `strlcpy'. */
/* #define HAVE_STRLCPY 1 */

/* Define if you have the function `strlwr'. */
#define HAVE_STRLWR 1

/* Define if you have the function `strncasecmp'. */
#define HAVE_STRNCASECMP 1
#define strncasecmp _strnicmp

/* Define if you have the function `strndup'. */
/* #define HAVE_STRNDUP 1 */

/* Define if you have the function `strnlen'. */
#define HAVE_STRNLEN 1

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

/* Define if you have the function `strptime'. */
/* #define HAVE_STRPTIME 1 */

/* Define if you have the function `strsep'. */
/* #define HAVE_STRSEP 1 */

/* Define if you have the function `strsep_copy'. */
/* #undef HAVE_STRSEP_COPY */

/* Define to 1 if you have the `strstr' function. */
#define HAVE_STRSTR 1

/* Define to 1 if you have the `strsvis' function. */
/* #undef HAVE_STRSVIS */

/* Define if you have the function `strtok_r'. */
/* #define HAVE_STRTOK_R 1 */

#if defined(__has_include)
# if __has_include(<corecrt.h>)
#  define HAVE_UCRT 1
# endif
#endif

#ifdef HAVE_UCRT
#define HAVE_STRTOLL 1
#define HAVE_STRTOULL 1
#endif

/* Define to 1 if the system has the type `struct addrinfo'. */
#define HAVE_STRUCT_ADDRINFO 1

/* Define to 1 if the system has the type `struct ifaddrs'. */
/* #undef HAVE_STRUCT_IFADDRS */

/* Define to 1 if the system has the type `struct iovec'. */
/* #define HAVE_STRUCT_IOVEC 1 */

/* Define to 1 if the system has the type `struct msghdr'. */
/* #define HAVE_STRUCT_MSGHDR 1 */

/* Define to 1 if the system has the type `struct sockaddr'. */
#define HAVE_STRUCT_SOCKADDR 1

/* Define if struct sockaddr has field sa_len. */
/* #undef HAVE_STRUCT_SOCKADDR_SA_LEN */

/* Define to 1 if the system has the type `struct sockaddr_storage'. */
#define HAVE_STRUCT_SOCKADDR_STORAGE 1

/* define if you have struct spwd */
/* #undef HAVE_STRUCT_SPWD */

/* Define if struct tm has field tm_gmtoff. */
/* #undef HAVE_STRUCT_TM_TM_GMTOFF */

/* Define if struct tm has field tm_zone. */
/* #undef HAVE_STRUCT_TM_TM_ZONE */

/* define if struct winsize is declared in sys/termios.h */
/* #define HAVE_STRUCT_WINSIZE 1 */

/* Define to 1 if you have the `strunvis' function. */
/* #undef HAVE_STRUNVIS */

/* Define if you have the function `strupr'. */
#define HAVE_STRUPR 1

/* Define to 1 if you have the `strvis' function. */
/* #undef HAVE_STRVIS */

/* Define to 1 if you have the `strvisx' function. */
/* #undef HAVE_STRVISX */

/* Define to 1 if you have the `svis' function. */
/* #undef HAVE_SVIS */

/* Define if you have the function `swab'. */
#define HAVE_SWAB 1

/* Define to 1 if you have the `sysconf' function. */
/* #define HAVE_SYSCONF 1 */

/* Define to 1 if you have the `sysctl' function. */
/* #undef HAVE_SYSCTL */

/* syslog is provided for _win32 in lib/roken */

/* Define to 1 if you have the `syslog' function. */
#define HAVE_SYSLOG 1

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

/* Define to 1 if you have the <sys/bitypes.h> header file. */
/* #undef HAVE_SYS_BITYPES_H */

/* Define to 1 if you have the <sys/bswap.h> header file. */
/* #undef HAVE_SYS_BSWAP_H */

/* Define to 1 if you have the <sys/capability.h> header file. */
/* #undef HAVE_SYS_CAPABILITY_H */

/* Define to 1 if you have the <sys/category.h> header file. */
/* #undef HAVE_SYS_CATEGORY_H */

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

/* Define to 1 if you have the <sys/filio.h> header file. */
/* #undef HAVE_SYS_FILIO_H */

/* Define to 1 if you have the <sys/ioccom.h> header file. */
/* #undef HAVE_SYS_IOCCOM_H */

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

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

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

/* Define to 1 if you have the <sys/proc.h> header file. */
/* #undef HAVE_SYS_PROC_H */

/* Define to 1 if you have the <sys/ptyio.h> header file. */
/* #undef HAVE_SYS_PTYIO_H */

/* Define to 1 if you have the <sys/ptyvar.h> header file. */
/* #undef HAVE_SYS_PTYVAR_H */

/* Define to 1 if you have the <sys/pty.h> header file. */
/* #undef HAVE_SYS_PTY_H */

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

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

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

/* 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/stat.h> header file. */
#define HAVE_SYS_STAT_H 1

/* Define to 1 if you have the <sys/stream.h> header file. */
/* #undef HAVE_SYS_STREAM_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/strtty.h> header file. */
/* #undef HAVE_SYS_STRTTY_H */

/* Define to 1 if you have the <sys/str_tty.h> header file. */
/* #undef HAVE_SYS_STR_TTY_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/termio.h> header file. */
/* #define HAVE_SYS_TERMIO_H 1 */

/* Define to 1 if you have the <sys/timeb.h> header file. */
#define HAVE_SYS_TIMEB_H 1

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

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

/* Define to 1 if you have the <sys/tty.h> header file. */
/* #undef HAVE_SYS_TTY_H */

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

/* Define to 1 if you have the <sys/ucred.h> header file. */
/* #undef HAVE_SYS_UCRED_H */

/* Define to 1 if you have the <sys/uio.h> header file. */
/* #define HAVE_SYS_UIO_H 1 */

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

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

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

/* Define to 1 if you have the <termcap.h> header file. */
/* #define HAVE_TERMCAP_H 1 */

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

/* Define to 1 if you have the <termio.h> header file. */
/* #define HAVE_TERMIO_H 1 */

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

/* Define to 1 if you have the `tgetent' function. */
/* #define HAVE_TGETENT 1 */

/* Define if you have the function `timegm'. */
/* #define HAVE_TIMEGM 1 */

/* Define if you have the `timezone' variable. */
#define HAVE_TIMEZONE 1

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

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

/* Define to 1 if you have the `ttyname' function. */
/* #define HAVE_TTYNAME 1 */

/* Define to 1 if you have the `ttyslot' function. */
/* #define HAVE_TTYSLOT 1 */

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

/* Define to 1 if the system has the type `uint16_t'. */
/* #define HAVE_UINT16_T 1 */

/* Define to 1 if the system has the type `uint32_t'. */
/* #define HAVE_UINT32_T 1 */

/* Define to 1 if the system has the type `uint64_t'. */
/* #define HAVE_UINT64_T 1 */

/* Define to 1 if the system has the type `uint8_t'. */
/* #define HAVE_UINT8_T 1 */

/* Define to 1 if the system has the type `uintptr_t'. */
#define HAVE_UINTPTR_T 1

/* Define to 1 if you have the `umask' function. */
/* #define HAVE_UMASK 1 */

/* Define to 1 if you have the `uname' function. */
/* #define HAVE_UNAME 1 */

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

/* Define to 1 if you have the `unlockpt' function. */
/* #define HAVE_UNLOCKPT 1 */

/* Define if you have the function `unsetenv'. */
/* #define HAVE_UNSETENV 1 */

/* Define to 1 if you have the `unvis' function. */
/* #undef HAVE_UNVIS */

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

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

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

/* Define to 1 if the system has the type `u_int16_t'. */
/* #define HAVE_U_INT16_T 1 */

/* Define to 1 if the system has the type `u_int32_t'. */
/* #define HAVE_U_INT32_T 1 */

/* Define to 1 if the system has the type `u_int64_t'. */
/* #define HAVE_U_INT64_T 1 */

/* Define to 1 if the system has the type `u_int8_t'. */
/* #define HAVE_U_INT8_T 1 */

/* Define to 1 if you have the `vasnprintf' function. */
/* #undef HAVE_VASNPRINTF */

/* Define to 1 if you have the `vasprintf' function. */
/* #define HAVE_VASPRINTF 1 */

/* Define if you have the function `verr'. */
/* #define HAVE_VERR 1 */

/* Define if you have the function `verrx'. */
/* #define HAVE_VERRX 1 */

/* Define to 1 if you have the `vhangup' function. */
/* #define HAVE_VHANGUP 1 */

/* Define to 1 if you have the `vis' function. */
/* #undef HAVE_VIS */

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

/* define if you have a working vsnprintf */
/* snprintf() and vsnprintf() do exist.  But the implementations are
   not C99 compliant. */
/* #define HAVE_VSNPRINTF 1 */

/* Define if you have the function `vsyslog'. */
#define HAVE_VSYSLOG 1

/* Define if you have the function `vwarn'. */
/* #define HAVE_VWARN 1 */

/* Define if you have the function `vwarnx'. */
/* #define HAVE_VWARNX 1 */

/* Define if you have the function `warn'. */
/* #define HAVE_WARN 1 */

/* Define if you have the function `warnx'. */
/* #define HAVE_WARNX 1 */

/* Define if you have the function `writev'. */
/* #define HAVE_WRITEV 1 */

/* Defined if we have WinSock */
#define HAVE_WINSOCK 1

/* Defined if we have WinDNS */
#define HAVE_WINDNS 1

/* define if struct winsize has ws_xpixel */
/* #define HAVE_WS_XPIXEL 1 */

/* define if struct winsize has ws_ypixel */
/* #define HAVE_WS_YPIXEL 1 */

/* Define to 1 if you have the `yp_get_default_domain' function. */
/* #undef HAVE_YP_GET_DEFAULT_DOMAIN */

/* Define to 1 if you have the `_getpty' function. */
/* #undef HAVE__GETPTY */

/* Define if you have the `_res' variable. */
/* #undef HAVE__RES */

/* Define to 1 if you have the `_scrsize' function. */
/* #undef HAVE__SCRSIZE */

/* define if your compiler has __attribute__ */
/* #define HAVE___ATTRIBUTE__ 1 */

/* Define if you have the `__progname' variable. */
/* #define HAVE___PROGNAME 1 */

/* Define if you are running IRIX 4. */
/* #undef IRIX4 */

/* define if the system is missing a prototype for asnprintf() */
/* #define NEED_ASNPRINTF_PROTO 1 */

/* define if the system is missing a prototype for asprintf() */
/* #undef NEED_ASPRINTF_PROTO */

/* define if the system is missing a prototype for crypt() */
/* #undef NEED_CRYPT_PROTO */

/* define if the system is missing a prototype for daemon() */
/* #undef NEED_DAEMON_PROTO */

/* define if the system is missing a prototype for gethostname() */
/* #undef NEED_GETHOSTNAME_PROTO */

/* define if the system is missing a prototype for getusershell() */
/* #undef NEED_GETUSERSHELL_PROTO */

/* define if the system is missing a prototype for glob() */
/* #undef NEED_GLOB_PROTO */

/* define if the system is missing a prototype for hstrerror() */
/* #undef NEED_HSTRERROR_PROTO */

/* define if the system is missing a prototype for inet_aton() */
/* #undef NEED_INET_ATON_PROTO */

/* define if the system is missing a prototype for iruserok() */
/* #undef NEED_IRUSEROK_PROTO */

/* define if the system is missing a prototype for mkstemp() */
/* #define NEED_MKSTEMP_PROTO 1 */

/* define if the system is missing a prototype for SecKeyGetCSPHandle() */
/* #undef NEED_SECKEYGETCSPHANDLE_PROTO */

/* define if the system is missing a prototype for setenv() */
#define NEED_SETENV_PROTO 1

/* define if the system is missing a prototype for snprintf() */
/* #undef NEED_SNPRINTF_PROTO */

/* define if the system is missing a prototype for strndup() */
/* #undef NEED_STRNDUP_PROTO */

/* define if the system is missing a prototype for strsep() */
/* #undef NEED_STRSEP_PROTO */

/* define if the system is missing a prototype for strsvis() */
/* #define NEED_STRSVIS_PROTO 1 */

/* define if the system is missing a prototype for strtok_r() */
#define NEED_STRTOK_R_PROTO 1

/* define if the system is missing a prototype for strunvis() */
/* #define NEED_STRUNVIS_PROTO 1 */

/* define if the system is missing a prototype for strvisx() */
/* #define NEED_STRVISX_PROTO 1 */

/* define if the system is missing a prototype for strvis() */
/* #define NEED_STRVIS_PROTO 1 */

/* define if the system is missing a prototype for svis() */
/* #define NEED_SVIS_PROTO 1 */

/* define if the system is missing a prototype for unsetenv() */
/* #undef NEED_UNSETENV_PROTO */

/* define if the system is missing a prototype for unvis() */
/* #define NEED_UNVIS_PROTO 1 */

/* define if the system is missing a prototype for vasnprintf() */
/* #define NEED_VASNPRINTF_PROTO 1 */

/* define if the system is missing a prototype for vasprintf() */
/* #undef NEED_VASPRINTF_PROTO */

/* define if the system is missing a prototype for vis() */
/* #define NEED_VIS_PROTO 1 */

/* define if the system is missing a prototype for vsnprintf() */
/* #undef NEED_VSNPRINTF_PROTO */

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

/* Define if you don't want to use mmap. */
#define NO_MMAP 1

/* Define if the Unix rand method is not defined */
#define NO_RAND_UNIX_METHOD 1

/* Define if the Fortuna rand method is not defined */
#define NO_RAND_FORTUNA_METHOD 1

/* Define if PID files should not be used. */
#define NO_PIDFILES 1

/* Define if SIGPIPE is not supported */
#define NO_SIGPIPE 1

/* Define if SIGXCPU is not supported */
#define NO_SIGXCPU 1

/* Define if sleep() is not available */
#define NO_SLEEP 1

/* Define to 1 if Unix sockets (AF_UNIX) are not available. */
#define NO_UNIX_SOCKETS 1

/* Define to 1 if POSIX link/unlink operations should be avoided.
   This may be because the behavior of links are not not consistent
   with POSIX or because the filesystem may not support POSIX
   links. */
#define NO_POSIX_LINKS 1

/* Define this to enable old environment option in telnet. */
/* #define OLD_ENVIRON 1 */

/* define if prototype of openlog is compatible with void openlog(const char
   *, int, int) */
#define OPENLOG_PROTO_COMPATIBLE 1

/* Define if getlogin has POSIX flavour (and not BSD). */
/* #define POSIX_GETLOGIN 1 */

/* Define if getpwnam_r has POSIX flavour. */
/* #define POSIX_GETPWNAM_R 1 */

/* Define if you have the readline package. */
#define READLINE 1

/* Define if rename() does not unlink an existing file */
#define RENAME_DOES_NOT_UNLINK 1

/* Define if you want to use samba socket wrappers. */
/* #undef SOCKET_WRAPPER_REPLACE */

/* Define if a socket is not a file descriptor */
#define SOCKET_IS_NOT_AN_FD 1

/* Define if FD_SETSIZE check does not apply to this platform */
#define NO_LIMIT_FD_SETSIZE 1

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

/* Define if you have streams ptys. */
/* #undef STREAMSPTY */

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

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

/* define if target is big endian */
/* #undef WORDS_BIGENDIAN */

/* Define to 1 if the X Window System is missing or not being used. */
#define X_DISPLAY_MISSING 1

/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
   `char[]'. */
/* #undef YYTEXT_POINTER */

/* Number of bits in a file offset, on hosts where this is settable. */
/* #undef _FILE_OFFSET_BITS */

/* Define to enable extensions on glibc-based systems such as Linux. */
/* #define _GNU_SOURCE 1 */

/* Define for large files, on AIX-style hosts. */
/* #undef _LARGE_FILES */

/* Set this to the default system lead string for telnetd 
 * can contain %-escapes: %s=sysname, %m=machine, %r=os-release
 * %v=os-version, %t=tty, %h=hostname, %d=date and time
 */
/* #undef USE_IM */

/* Used with login -p */
/* #undef LOGIN_ARGS */

#ifdef ROKEN_RENAME
#include "roken_rename.h"
#endif

#if defined(ENCRYPTION) && !defined(AUTHENTICATION)
#define AUTHENTICATION 1
#endif



/* Paths */

#define SYSCONFDIR "%{COMMONCONFIG}"

#define LIBDIR "%{LIBDIR}"

#endif	/* RC_INVOKED */


/* Version info */

#define PACKAGE "@PACKAGE@"

#define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"

#define PACKAGE_NAME "@PACKAGE_NAME@"

#define PACKAGE_STRING "@PACKAGE_NAME@ @PACKAGE_VERSION@"

#define PACKAGE_TARNAME "@PACKAGE@"

#define PACKAGE_VERSION "@PACKAGE_VERSION@"

#define PACKAGE_COMPANY "@PACKAGE_COMPANY@"

#define PACKAGE_COPYRIGHT "@PACKAGE_COPYRIGHT@"

#define VERSION "@PACKAGE_VERSION@"

#define RC_PRODVER_MAJOR @MAJOR@

#define RC_PRODVER_MINOR @MINOR@

#define RC_PRODVER_AUX   @AUX@

#define RC_PRODVER_PATCH @PATCH@

#define RC_PRODVER_C @MAJOR@,@MINOR@,@AUX@,@PATCH@

#define RC_PRODVER_CS "@MAJOR@,@MINOR@,@AUX@,@PATCH@"

#define RC_PRODVER_DS "@MAJOR@.@MINOR@.@AUX@.@PATCH@"

#define RC_PRODUCT_NAME_0409 PACKAGE_NAME

#define RC_PRODUCT_VER_0409 PACKAGE_VERSION

#define RC_COMPANY_0409 PACKAGE_COMPANY

#define RC_COPYRIGHT_0409 PACKAGE_COPYRIGHT

@VERSION_OPTDEFS@

#endif	/* __CONFIG_H__ */