This file is indexed.

/usr/include/collectd/config.h is in collectd-dev 4.10.1-2.1ubuntu7.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
/* src/config.h.  Generated from config.h.in by configure.  */
/* src/config.h.in.  Generated from configure.in by autoheader.  */

/* wether or not to enable feature daemon mode */
#define COLLECT_DAEMON 1

/* wether or not to enable feature debugging */
#define COLLECT_DEBUG 0

/* wether or not to enable feature getifaddrs under Linux */
#define COLLECT_GETIFADDRS 0

/* Wether or not to use the esmtp library */
#define COLLECT_LIBESMTP 1

/* Wether or not to use the pcap library */
#define COLLECT_LIBPCAP 1

/* Define if endianflip is needed to convert to x86 representation. */
/* #undef FP_LAYOUT_NEED_ENDIANFLIP */

/* Define if intswap is needed to convert to x86 representation. */
/* #undef FP_LAYOUT_NEED_INTSWAP */

/* Define if doubles are stored in x86 representation. */
#define FP_LAYOUT_NEED_NOTHING 1

/* Define to 1 if you have the `argz_add' function. */
#define HAVE_ARGZ_ADD 1

/* Define to 1 if you have the `argz_append' function. */
#define HAVE_ARGZ_APPEND 1

/* Define to 1 if you have the `argz_count' function. */
#define HAVE_ARGZ_COUNT 1

/* Define to 1 if you have the `argz_create_sep' function. */
#define HAVE_ARGZ_CREATE_SEP 1

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

/* Define to 1 if you have the `argz_insert' function. */
#define HAVE_ARGZ_INSERT 1

/* Define to 1 if you have the `argz_next' function. */
#define HAVE_ARGZ_NEXT 1

/* Define to 1 if you have the `argz_stringify' function. */
#define HAVE_ARGZ_STRINGIFY 1

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

/* Define to 1 if you have the <arpa/nameser_compat.h> header file. */
#define HAVE_ARPA_NAMESER_COMPAT_H 1

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

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

/* Define to 1 if you have the `closedir' function. */
#define HAVE_CLOSEDIR 1

/* Define to 1 if you have the `closelog' function. */
#define HAVE_CLOSELOG 1

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

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

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

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

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

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

/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
   */
#define HAVE_DIRENT_H 1

/* Define if you have the GNU dld library. */
/* #undef HAVE_DLD */

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

/* Define to 1 if you have the `dlerror' function. */
#define HAVE_DLERROR 1

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

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

/* Define if you have the _dyld_func_lookup function. */
/* #undef HAVE_DYLD */

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

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

/* Define to 1 if the system has the type `error_t'. */
#define HAVE_ERROR_T 1

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

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

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

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

/* Define if the function getmntent exists. It's the version from libgen. */
/* #undef HAVE_GEN_GETMNTENT */

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

/* Define to 1 if you have the `getfsstat' function. */
/* #undef HAVE_GETFSSTAT */

/* Define to 1 if you have the `getgrnam_r' function. */
#define HAVE_GETGRNAM_R 1

/* Define to 1 if you have the `getifaddrs' function. */
#define HAVE_GETIFADDRS 1

/* Define to 1 if you have the `getloadavg' function. */
#define HAVE_GETLOADAVG 1

/* Define to 1 if you have the `getmntent' function. */
#define HAVE_GETMNTENT 1

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

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

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

/* Define to 1 if you have the `getutent' function. */
#define HAVE_GETUTENT 1

/* Define to 1 if you have the `getutxent' function. */
#define HAVE_GETUTXENT 1

/* Define to 1 if you have the `getvfsstat' function. */
/* #undef HAVE_GETVFSSTAT */

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

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

/* Define to 1 if you have the `host_statistics' function. */
/* #undef HAVE_HOST_STATISTICS */

/* Define if the function htonll exists. */
/* #undef HAVE_HTONLL */

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

/* Define to 1 if you have the `if_indextoname' function. */
#define HAVE_IF_INDEXTONAME 1

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

/* Define to 1 if you have the <IOKit/IOBSD.h> header file. */
/* #undef HAVE_IOKIT_IOBSD_H */

/* Define to 1 if you have the <IOKit/IOKitLib.h> header file. */
/* #undef HAVE_IOKIT_IOKITLIB_H */

/* Define to 1 if you have the <IOKit/IOTypes.h> header file. */
/* #undef HAVE_IOKIT_IOTYPES_H */

/* Define to 1 if you have the <IOKit/ps/IOPowerSources.h> header file. */
/* #undef HAVE_IOKIT_PS_IOPOWERSOURCES_H */

/* Define to 1 if you have the <IOKit/ps/IOPSKeys.h> header file. */
/* #undef HAVE_IOKIT_PS_IOPSKEYS_H */

/* Define to 1 if you have the <IOKit/storage/IOBlockStorageDriver.h> header
   file. */
/* #undef HAVE_IOKIT_STORAGE_IOBLOCKSTORAGEDRIVER_H */

/* Define to 1 if the system has the type `ip6tc_handle_t'. */
/* #undef HAVE_IP6TC_HANDLE_T */

/* Define to 1 if you have the <iproute/libnetlink.h> header file. */
/* #undef HAVE_IPROUTE_LIBNETLINK_H */

/* Define to 1 if the system has the type `iptc_handle_t'. */
/* #undef HAVE_IPTC_HANDLE_T */

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

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

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

/* Define to 1 if `nwrites' is a member of `kstat_io_t'. */
/* #undef HAVE_KSTAT_IO_T_NWRITES */

/* Define to 1 if `nwritten' is a member of `kstat_io_t'. */
/* #undef HAVE_KSTAT_IO_T_NWRITTEN */

/* Define to 1 if `writes' is a member of `kstat_io_t'. */
/* #undef HAVE_KSTAT_IO_T_WRITES */

/* Define to 1 if `wtime' is a member of `kstat_io_t'. */
/* #undef HAVE_KSTAT_IO_T_WTIME */

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

/* Define if you have the libdl library or equivalent. */
#define HAVE_LIBDL 1

/* Define if libdlloader will be built on this platform */
#define HAVE_LIBDLLOADER 1

/* Define to 1 if you have the esmtp library (-lesmtp). */
#define HAVE_LIBESMTP 1

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

/* Define to 1 if you have the ganglia library (-lganglia). */
#define HAVE_LIBGANGLIA 1

/* Define to 1 if you have the gcrypt library (-lgcrypt). */
#define HAVE_LIBGCRYPT 1

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

/* Define to 1 if you have 'hal' library */
/* #undef HAVE_LIBHAL */

/* Define to 1 if you have the iptc library (-liptc). */
#define HAVE_LIBIPTC 1

/* Define to 1 if you have the <libiptc/libip6tc.h> header file. */
#define HAVE_LIBIPTC_LIBIP6TC_H 1

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

/* Define to 1 if you have the 'kstat' library (-lkstat) */
/* #undef HAVE_LIBKSTAT */

/* Define to 1 if you have the 'kvm' library with the 'kvm_getprocs' symbol
   (-lkvm) */
/* #undef HAVE_LIBKVM_GETPROCS */

/* Define to 1 if you have the 'kvm' library with the 'kvm_getswapinfo' symbol
   (-lkvm) */
/* #undef HAVE_LIBKVM_GETSWAPINFO */

/* Define to 1 if you have the 'kvm' library with the 'kvm_openfiles' symbol
   (-lkvm) */
/* #undef HAVE_LIBKVM_NLIST */

/* Define if libmemcached is present and usable. */
#define HAVE_LIBMEMCACHED 1

/* Define to 1 if you have the <libmemcached/memcached.h> header file. */
#define HAVE_LIBMEMCACHED_MEMCACHED_H 1

/* Define to 1 if you have the netapp library (-lnetapp). */
/* #undef HAVE_LIBNETAPP */

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

/* Define to 1 if you have the pcap library (-lpcap). */
#define HAVE_LIBPCAP 1

/* Define if libperl is present and usable. */
#define HAVE_LIBPERL 1

/* Define to 1 if you have the <libpq-fe.h> header file. */
#define HAVE_LIBPQ_FE_H 1

/* Wether or not to use pthread (POSIX threads) library */
#define HAVE_LIBPTHREAD 1

/* Define to 1 if you have the 'resolv' library (-lresolv). */
#define HAVE_LIBRESOLV 1

/* Define to 1 if you have the sensors library (-lsensors). */
#define HAVE_LIBSENSORS 1

/* Define to 1 if you have the 'statgrab' library (-lstatgrab) */
/* #undef HAVE_LIBSTATGRAB */

/* Define to 1 if you have the tokyotyrant library (-ltokyotyrant). */
#define HAVE_LIBTOKYOTYRANT 1

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

/* Define to 1 if you have the <libxml/parser.h> header file. */
#define HAVE_LIBXML_PARSER_H 1

/* Define to 1 if you have the 'xmms' library (-lxmms). */
#define HAVE_LIBXMMS 0

/* Define if libyajl is present and usable. */
#define HAVE_LIBYAJL 1

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

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

/* Define to 1 if you have the <linux/gen_stats.h> header file. */
#define HAVE_LINUX_GEN_STATS_H 1

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

/* Define to 1 if you have the <linux/libnetlink.h> header file. */
/* #undef HAVE_LINUX_LIBNETLINK_H */

/* Define to 1 if you have the <linux/major.h> header file. */
#define HAVE_LINUX_MAJOR_H 1

/* Define to 1 if you have the <linux/netdevice.h> header file. */
#define HAVE_LINUX_NETDEVICE_H 1

/* Define to 1 if you have the <linux/netfilter_ipv4/ip_tables.h> header file.
   */
/* #undef HAVE_LINUX_NETFILTER_IPV4_IP_TABLES_H */

/* Define to 1 if you have the <linux/netfilter_ipv6/ip6_tables.h> header
   file. */
/* #undef HAVE_LINUX_NETFILTER_IPV6_IP6_TABLES_H */

/* Define to 1 if you have the <linux/netfilter/x_tables.h> header file. */
/* #undef HAVE_LINUX_NETFILTER_X_TABLES_H */

/* Define to 1 if you have the <linux/pkt_sched.h> header file. */
#define HAVE_LINUX_PKT_SCHED_H 1

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

/* Define to 1 if you have the <linux/wireless.h> header file. */
#define HAVE_LINUX_WIRELESS_H 1

/* Define to 1 if you have the `listmntent' function. */
/* #undef HAVE_LISTMNTENT */

/* Define this if a modern libltdl is already installed */
#define HAVE_LTDL 1

/* Define to 1 if you have the <mach/host_priv.h> header file. */
/* #undef HAVE_MACH_HOST_PRIV_H */

/* Define to 1 if you have the <mach/kern_return.h> header file. */
/* #undef HAVE_MACH_KERN_RETURN_H */

/* Define to 1 if you have the <mach/mach_error.h> header file. */
/* #undef HAVE_MACH_MACH_ERROR_H */

/* Define to 1 if you have the <mach/mach_host.h> header file. */
/* #undef HAVE_MACH_MACH_HOST_H */

/* Define to 1 if you have the <mach/mach_init.h> header file. */
/* #undef HAVE_MACH_MACH_INIT_H */

/* Define to 1 if you have the <mach/mach_port.h> header file. */
/* #undef HAVE_MACH_MACH_PORT_H */

/* Define to 1 if you have the <mach/mach_types.h> header file. */
/* #undef HAVE_MACH_MACH_TYPES_H */

/* Define to 1 if you have the <mach/message.h> header file. */
/* #undef HAVE_MACH_MESSAGE_H */

/* Define to 1 if you have the <mach-o/dyld.h> header file. */
/* #undef HAVE_MACH_O_DYLD_H */

/* Define to 1 if you have the <mach/processor.h> header file. */
/* #undef HAVE_MACH_PROCESSOR_H */

/* Define to 1 if you have the <mach/processor_info.h> header file. */
/* #undef HAVE_MACH_PROCESSOR_INFO_H */

/* Define to 1 if you have the <mach/processor_set.h> header file. */
/* #undef HAVE_MACH_PROCESSOR_SET_H */

/* Define to 1 if you have the <mach/task.h> header file. */
/* #undef HAVE_MACH_TASK_H */

/* Define to 1 if you have the <mach/thread_act.h> header file. */
/* #undef HAVE_MACH_THREAD_ACT_H */

/* Define to 1 if you have the <mach/vm_map.h> header file. */
/* #undef HAVE_MACH_VM_MAP_H */

/* Define to 1 if you have the <mach/vm_prot.h> header file. */
/* #undef HAVE_MACH_VM_PROT_H */

/* Define to 1 if you have the <mach/vm_region.h> header file. */
/* #undef HAVE_MACH_VM_REGION_H */

/* Define to 1 if you have the <mach/vm_statistics.h> header file. */
/* #undef HAVE_MACH_VM_STATISTICS_H */

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

/* Define to 1 if you have the `memcpy' function. */
#define HAVE_MEMCPY 1

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

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

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

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

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

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

/* Define to 1 if you have the `nanosleep' function. */
#define HAVE_NANOSLEEP 1

/* 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 <netapp_api.h> header file. */
/* #undef HAVE_NETAPP_API_H */

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

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

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

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

/* Define to 1 if you have the <netinet/ip6.h> header file. */
#define HAVE_NETINET_IP6_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/ip_icmp.h> header file. */
#define HAVE_NETINET_IP_ICMP_H 1

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

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

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

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

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

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

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

/* Define to 1 if you have the <net-snmp/net-snmp-config.h> header file. */
#define HAVE_NET_SNMP_NET_SNMP_CONFIG_H 1

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

/* Define if the function getmntent exists and takes one argument. */
#define HAVE_ONE_GETMNTENT 1

/* Define to 1 if you have the `opendir' function. */
#define HAVE_OPENDIR 1

/* Define to 1 if you have the <OpenIPMI/ipmi_smi.h> header file. */
#define HAVE_OPENIPMI_IPMI_SMI_H 1

/* Define to 1 if you have the `openlog' function. */
#define HAVE_OPENLOG 1

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

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

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

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

/* Define to 1 if you have the 'perfstat' library (-lperfstat) */
/* #undef HAVE_PERFSTAT */

/* Define if Perl supports ithreads. */
#define HAVE_PERL_ITHREADS 1

/* Define if Perl's struct mgvtbl has member svt_local. */
#define HAVE_PERL_STRUCT_MGVTBL_SVT_LOCAL 1

/* Define to 1 if the apache plugin is enabled. */
#define HAVE_PLUGIN_APACHE 1

/* Define to 1 if the apcups plugin is enabled. */
#define HAVE_PLUGIN_APCUPS 1

/* Define to 1 if the apple_sensors plugin is enabled. */
/* #undef HAVE_PLUGIN_APPLE_SENSORS */

/* Define to 1 if the ascent plugin is enabled. */
#define HAVE_PLUGIN_ASCENT 1

/* Define to 1 if the battery plugin is enabled. */
#define HAVE_PLUGIN_BATTERY 1

/* Define to 1 if the bind plugin is enabled. */
#define HAVE_PLUGIN_BIND 1

/* Define to 1 if the conntrack plugin is enabled. */
#define HAVE_PLUGIN_CONNTRACK 1

/* Define to 1 if the contextswitch plugin is enabled. */
#define HAVE_PLUGIN_CONTEXTSWITCH 1

/* Define to 1 if the cpu plugin is enabled. */
#define HAVE_PLUGIN_CPU 1

/* Define to 1 if the cpufreq plugin is enabled. */
#define HAVE_PLUGIN_CPUFREQ 1

/* Define to 1 if the csv plugin is enabled. */
#define HAVE_PLUGIN_CSV 1

/* Define to 1 if the curl plugin is enabled. */
#define HAVE_PLUGIN_CURL 1

/* Define to 1 if the curl_json plugin is enabled. */
#define HAVE_PLUGIN_CURL_JSON 1

/* Define to 1 if the curl_xml plugin is enabled. */
#define HAVE_PLUGIN_CURL_XML 1

/* Define to 1 if the dbi plugin is enabled. */
#define HAVE_PLUGIN_DBI 1

/* Define to 1 if the df plugin is enabled. */
#define HAVE_PLUGIN_DF 1

/* Define to 1 if the disk plugin is enabled. */
#define HAVE_PLUGIN_DISK 1

/* Define to 1 if the dns plugin is enabled. */
#define HAVE_PLUGIN_DNS 1

/* Define to 1 if the email plugin is enabled. */
#define HAVE_PLUGIN_EMAIL 1

/* Define to 1 if the entropy plugin is enabled. */
#define HAVE_PLUGIN_ENTROPY 1

/* Define to 1 if the exec plugin is enabled. */
#define HAVE_PLUGIN_EXEC 1

/* Define to 1 if the filecount plugin is enabled. */
#define HAVE_PLUGIN_FILECOUNT 1

/* Define to 1 if the fscache plugin is enabled. */
#define HAVE_PLUGIN_FSCACHE 1

/* Define to 1 if the gmond plugin is enabled. */
#define HAVE_PLUGIN_GMOND 1

/* Define to 1 if the hddtemp plugin is enabled. */
#define HAVE_PLUGIN_HDDTEMP 1

/* Define to 1 if the interface plugin is enabled. */
#define HAVE_PLUGIN_INTERFACE 1

/* Define to 1 if the ipmi plugin is enabled. */
#define HAVE_PLUGIN_IPMI 1

/* Define to 1 if the iptables plugin is enabled. */
#define HAVE_PLUGIN_IPTABLES 1

/* Define to 1 if the ipvs plugin is enabled. */
#define HAVE_PLUGIN_IPVS 1

/* Define to 1 if the irq plugin is enabled. */
#define HAVE_PLUGIN_IRQ 1

/* Define to 1 if the java plugin is enabled. */
#define HAVE_PLUGIN_JAVA 1

/* Define to 1 if the libvirt plugin is enabled. */
#define HAVE_PLUGIN_LIBVIRT 1

/* Define to 1 if the load plugin is enabled. */
#define HAVE_PLUGIN_LOAD 1

/* Define to 1 if the logfile plugin is enabled. */
#define HAVE_PLUGIN_LOGFILE 1

/* Define to 1 if the madwifi plugin is enabled. */
#define HAVE_PLUGIN_MADWIFI 1

/* Define to 1 if the match_empty_counter plugin is enabled. */
#define HAVE_PLUGIN_MATCH_EMPTY_COUNTER 1

/* Define to 1 if the match_hashed plugin is enabled. */
#define HAVE_PLUGIN_MATCH_HASHED 1

/* Define to 1 if the match_regex plugin is enabled. */
#define HAVE_PLUGIN_MATCH_REGEX 1

/* Define to 1 if the match_timediff plugin is enabled. */
#define HAVE_PLUGIN_MATCH_TIMEDIFF 1

/* Define to 1 if the match_value plugin is enabled. */
#define HAVE_PLUGIN_MATCH_VALUE 1

/* Define to 1 if the mbmon plugin is enabled. */
#define HAVE_PLUGIN_MBMON 1

/* Define to 1 if the memcachec plugin is enabled. */
#define HAVE_PLUGIN_MEMCACHEC 1

/* Define to 1 if the memcached plugin is enabled. */
#define HAVE_PLUGIN_MEMCACHED 1

/* Define to 1 if the memory plugin is enabled. */
#define HAVE_PLUGIN_MEMORY 1

/* Define to 1 if the modbus plugin is enabled. */
/* #undef HAVE_PLUGIN_MODBUS */

/* Define to 1 if the multimeter plugin is enabled. */
#define HAVE_PLUGIN_MULTIMETER 1

/* Define to 1 if the mysql plugin is enabled. */
#define HAVE_PLUGIN_MYSQL 1

/* Define to 1 if the netapp plugin is enabled. */
/* #undef HAVE_PLUGIN_NETAPP */

/* Define to 1 if the netlink plugin is enabled. */
#define HAVE_PLUGIN_NETLINK 1

/* Define to 1 if the network plugin is enabled. */
#define HAVE_PLUGIN_NETWORK 1

/* Define to 1 if the nfs plugin is enabled. */
#define HAVE_PLUGIN_NFS 1

/* Define to 1 if the nginx plugin is enabled. */
#define HAVE_PLUGIN_NGINX 1

/* Define to 1 if the notify_desktop plugin is enabled. */
#define HAVE_PLUGIN_NOTIFY_DESKTOP 1

/* Define to 1 if the notify_email plugin is enabled. */
#define HAVE_PLUGIN_NOTIFY_EMAIL 1

/* Define to 1 if the ntpd plugin is enabled. */
#define HAVE_PLUGIN_NTPD 1

/* Define to 1 if the nut plugin is enabled. */
#define HAVE_PLUGIN_NUT 1

/* Define to 1 if the olsrd plugin is enabled. */
#define HAVE_PLUGIN_OLSRD 1

/* Define to 1 if the onewire plugin is enabled. */
/* #undef HAVE_PLUGIN_ONEWIRE */

/* Define to 1 if the openvpn plugin is enabled. */
#define HAVE_PLUGIN_OPENVPN 1

/* Define to 1 if the oracle plugin is enabled. */
/* #undef HAVE_PLUGIN_ORACLE */

/* Define to 1 if the perl plugin is enabled. */
#define HAVE_PLUGIN_PERL 1

/* Define to 1 if the pinba plugin is enabled. */
#define HAVE_PLUGIN_PINBA 1

/* Define to 1 if the ping plugin is enabled. */
#define HAVE_PLUGIN_PING 1

/* Define to 1 if the postgresql plugin is enabled. */
#define HAVE_PLUGIN_POSTGRESQL 1

/* Define to 1 if the powerdns plugin is enabled. */
#define HAVE_PLUGIN_POWERDNS 1

/* Define to 1 if the processes plugin is enabled. */
#define HAVE_PLUGIN_PROCESSES 1

/* Define to 1 if the protocols plugin is enabled. */
#define HAVE_PLUGIN_PROTOCOLS 1

/* Define to 1 if the python plugin is enabled. */
#define HAVE_PLUGIN_PYTHON 1

/* Define to 1 if the routeros plugin is enabled. */
/* #undef HAVE_PLUGIN_ROUTEROS */

/* Define to 1 if the rrdcached plugin is enabled. */
#define HAVE_PLUGIN_RRDCACHED 1

/* Define to 1 if the rrdtool plugin is enabled. */
#define HAVE_PLUGIN_RRDTOOL 1

/* Define to 1 if the sensors plugin is enabled. */
#define HAVE_PLUGIN_SENSORS 1

/* Define to 1 if the serial plugin is enabled. */
#define HAVE_PLUGIN_SERIAL 1

/* Define to 1 if the snmp plugin is enabled. */
#define HAVE_PLUGIN_SNMP 1

/* Define to 1 if the swap plugin is enabled. */
#define HAVE_PLUGIN_SWAP 1

/* Define to 1 if the syslog plugin is enabled. */
#define HAVE_PLUGIN_SYSLOG 1

/* Define to 1 if the table plugin is enabled. */
#define HAVE_PLUGIN_TABLE 1

/* Define to 1 if the tail plugin is enabled. */
#define HAVE_PLUGIN_TAIL 1

/* Define to 1 if the tape plugin is enabled. */
/* #undef HAVE_PLUGIN_TAPE */

/* Define to 1 if the target_notification plugin is enabled. */
#define HAVE_PLUGIN_TARGET_NOTIFICATION 1

/* Define to 1 if the target_replace plugin is enabled. */
#define HAVE_PLUGIN_TARGET_REPLACE 1

/* Define to 1 if the target_scale plugin is enabled. */
#define HAVE_PLUGIN_TARGET_SCALE 1

/* Define to 1 if the target_set plugin is enabled. */
#define HAVE_PLUGIN_TARGET_SET 1

/* Define to 1 if the tcpconns plugin is enabled. */
#define HAVE_PLUGIN_TCPCONNS 1

/* Define to 1 if the teamspeak2 plugin is enabled. */
#define HAVE_PLUGIN_TEAMSPEAK2 1

/* Define to 1 if the ted plugin is enabled. */
#define HAVE_PLUGIN_TED 1

/* Define to 1 if the thermal plugin is enabled. */
#define HAVE_PLUGIN_THERMAL 1

/* Define to 1 if the tokyotyrant plugin is enabled. */
#define HAVE_PLUGIN_TOKYOTYRANT 1

/* Define to 1 if the unixsock plugin is enabled. */
#define HAVE_PLUGIN_UNIXSOCK 1

/* Define to 1 if the uptime plugin is enabled. */
#define HAVE_PLUGIN_UPTIME 1

/* Define to 1 if the users plugin is enabled. */
#define HAVE_PLUGIN_USERS 1

/* Define to 1 if the uuid plugin is enabled. */
#define HAVE_PLUGIN_UUID 1

/* Define to 1 if the vmem plugin is enabled. */
#define HAVE_PLUGIN_VMEM 1

/* Define to 1 if the vserver plugin is enabled. */
#define HAVE_PLUGIN_VSERVER 1

/* Define to 1 if the wireless plugin is enabled. */
#define HAVE_PLUGIN_WIRELESS 1

/* Define to 1 if the write_http plugin is enabled. */
#define HAVE_PLUGIN_WRITE_HTTP 1

/* Define to 1 if the xmms plugin is enabled. */
/* #undef HAVE_PLUGIN_XMMS */

/* Define to 1 if the zfs_arc plugin is enabled. */
/* #undef HAVE_PLUGIN_ZFS_ARC */

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

/* Define if libtool can extract symbol lists from object files. */
#define HAVE_PRELOADED_SYMBOLS 1

/* Define to 1 if you have the `processor_info' function. */
/* #undef HAVE_PROCESSOR_INFO */

/* Define to 1 if you have the procinfo.h */
/* #undef HAVE_PROCINFO_H */

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

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

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

/* Define to 1 if you have the `readdir' function. */
#define HAVE_READDIR 1

/* Define to 1 if you have the `regcomp' function. */
#define HAVE_REGCOMP 1

/* Define to 1 if you have the `regerror' function. */
#define HAVE_REGERROR 1

/* Define to 1 if you have the `regexec' function. */
#define HAVE_REGEXEC 1

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

/* Define to 1 if you have the `regfree' function. */
#define HAVE_REGFREE 1

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

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

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

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

/* Define if the function getmntent exists. It's the version from libseq. */
/* #undef HAVE_SEQ_GETMNTENT */

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

/* Define to 1 if you have the `setgroups' function. */
#define HAVE_SETGROUPS 1

/* Define if you have the shl_load function. */
/* #undef HAVE_SHL_LOAD */

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

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

/* Define to 1 if you have the `statfs' function. */
#define HAVE_STATFS 1

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

/* Define to 1 if you have the `statvfs' function. */
#define HAVE_STATVFS 1

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

/* Define to 1 if stdbool.h conforms to C99. */
#define HAVE_STDBOOL_H 1

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

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

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

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

/* Define to 1 if you have the `strchr' function. */
#define HAVE_STRCHR 1

/* Define to 1 if you have the `strcmp' function. */
#define HAVE_STRCMP 1

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

/* Define to 1 if you have the `strerror_r' function. */
#define HAVE_STRERROR_R 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 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 `strlen' function. */
#define HAVE_STRLEN 1

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

/* Define to 1 if you have the `strncmp' function. */
#define HAVE_STRNCMP 1

/* Define to 1 if you have the `strncpy' function. */
#define HAVE_STRNCPY 1

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

/* Define to 1 if you have the `strtol' function. */
#define HAVE_STRTOL 1

/* Define if struct if_data exists and is usable. */
/* #undef HAVE_STRUCT_IF_DATA */

/* Define to 1 if `ifi_ibytes' is a member of `struct if_data'. */
/* #undef HAVE_STRUCT_IF_DATA_IFI_IBYTES */

/* Define to 1 if `ifi_ierrors' is a member of `struct if_data'. */
/* #undef HAVE_STRUCT_IF_DATA_IFI_IERRORS */

/* Define to 1 if `ifi_opackets' is a member of `struct if_data'. */
/* #undef HAVE_STRUCT_IF_DATA_IFI_OPACKETS */

/* Define to 1 if `imr_ifindex' is a member of `struct ip_mreqn'. */
#define HAVE_STRUCT_IP_MREQN_IMR_IFINDEX 1

/* Define if struct kinfo_proc exists in the FreeBSD variant. */
/* #undef HAVE_STRUCT_KINFO_PROC_FREEBSD */

/* Define to 1 if `ki_pid' is a member of `struct kinfo_proc'. */
/* #undef HAVE_STRUCT_KINFO_PROC_KI_PID */

/* Define to 1 if `ki_rssize' is a member of `struct kinfo_proc'. */
/* #undef HAVE_STRUCT_KINFO_PROC_KI_RSSIZE */

/* Define to 1 if `ki_rusage' is a member of `struct kinfo_proc'. */
/* #undef HAVE_STRUCT_KINFO_PROC_KI_RUSAGE */

/* Define to 1 if `kp_eproc' is a member of `struct kinfo_proc'. */
/* #undef HAVE_STRUCT_KINFO_PROC_KP_EPROC */

/* Define to 1 if `kp_proc' is a member of `struct kinfo_proc'. */
/* #undef HAVE_STRUCT_KINFO_PROC_KP_PROC */

/* Define if struct kinfo_proc exists in the OpenBSD variant. */
/* #undef HAVE_STRUCT_KINFO_PROC_OPENBSD */

/* Define if struct net_device_stats exists and is usable. */
/* #undef HAVE_STRUCT_NET_DEVICE_STATS */

/* Define to 1 if `rx_bytes' is a member of `struct net_device_stats'. */
/* #undef HAVE_STRUCT_NET_DEVICE_STATS_RX_BYTES */

/* Define to 1 if `rx_errors' is a member of `struct net_device_stats'. */
/* #undef HAVE_STRUCT_NET_DEVICE_STATS_RX_ERRORS */

/* Define to 1 if `tx_packets' is a member of `struct net_device_stats'. */
/* #undef HAVE_STRUCT_NET_DEVICE_STATS_TX_PACKETS */

/* Define to 1 if `dest' is a member of `struct udphdr'. */
/* #undef HAVE_STRUCT_UDPHDR_DEST */

/* Define to 1 if `source' is a member of `struct udphdr'. */
/* #undef HAVE_STRUCT_UDPHDR_SOURCE */

/* Define to 1 if `uh_dport' is a member of `struct udphdr'. */
#define HAVE_STRUCT_UDPHDR_UH_DPORT 1

/* Define to 1 if `uh_sport' is a member of `struct udphdr'. */
#define HAVE_STRUCT_UDPHDR_UH_SPORT 1

/* Define if the function getmntent exists. It's the version from libsun. */
/* #undef HAVE_SUN_GETMNTENT */

/* Define to 1 if you have the `swapctl' function. */
/* #undef HAVE_SWAPCTL */

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

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

/* Define to 1 if you have the `sysctlbyname' function. */
/* #undef HAVE_SYSCTLBYNAME */

/* Define if sysctl supports kern.cp_times */
/* #undef HAVE_SYSCTL_KERN_CP_TIMES */

/* 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/dir.h> header file, and it defines `DIR'.
   */
/* #undef HAVE_SYS_DIR_H */

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

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

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

/* Define to 1 if you have the <sys/fs_types.h> header file. */
/* #undef HAVE_SYS_FS_TYPES_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/isa_defs.h> header file. */
/* #undef HAVE_SYS_ISA_DEFS_H */

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

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

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

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

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

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

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

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

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

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

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

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

/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
#define HAVE_SYS_WAIT_H 1

/* True if the enum-member TCA_STATS exists */
#define HAVE_TCA_STATS 1

/* True if the enum-member TCA_STATS2 exists */
#define HAVE_TCA_STATS2 1

/* Define to 1 if you have the <tcrdb.h> header file. */
#define HAVE_TCRDB_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 threadsafe rrd library (-lrrd_th). */
#define HAVE_THREADSAFE_LIBRRD 1

/* Define to 1 if you have the `thread_info' function. */
/* #undef HAVE_THREAD_INFO */

/* Define if the function getmntent exists and takes two arguments. */
/* #undef HAVE_TWO_GETMNTENT */

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

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

/* Define to 1 if the system has the type `UPSCONN'. */
/* #undef HAVE_UPSCONN */

/* Define to 1 if the system has the type `UPSCONN_t'. */
#define HAVE_UPSCONN_T 1

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

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

/* Define to 1 if you have the <vm/anon.h> header file. */
/* #undef HAVE_VM_ANON_H */

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

/* This value is set to 1 to indicate that the system argz facility works */
#define HAVE_WORKING_ARGZ 1

/* Define to 1 if you have the <xfs/xqm.h> header file. */
/* #undef HAVE_XFS_XQM_H */

/* Define to 1 if you have the <yajl/yajl_parse.h> header file. */
#define HAVE_YAJL_YAJL_PARSE_H 1

/* Define to 1 if the system has the type `_Bool'. */
#define HAVE__BOOL 1

/* True if program is to be compiled for a AIX kernel */
/* #undef KERNEL_AIX */

/* True if program is to be compiled for a Linux kernel */
#define KERNEL_LINUX 1

/* True if program is to be compiled for a Solaris kernel */
/* #undef KERNEL_SOLARIS */

/* Define to used libtool version. */
#define LIBTOOL_VERSION 2

/* Define if the OS needs help to load dependent libraries for dlopen(). */
/* #undef LTDL_DLOPEN_DEPLIBS */

/* Define to the system default library search path. */
#define LT_DLSEARCH_PATH "/lib:/usr/lib:/lib/i386-linux-gnu:/usr/lib/i386-linux-gnu:/lib/i686-linux-gnu:/usr/lib/i686-linux-gnu:/usr/local/lib"

/* The archive extension */
#define LT_LIBEXT "a"

/* Define to the extension used for runtime loadable modules, say, ".so". */
#define LT_MODULE_EXT ".so"

/* Define to the name of the environment variable that determines the run-time
   module search path. */
#define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"

/* Define to the sub-directory in which libtool stores uninstalled libraries.
   */
#define LT_OBJDIR ".libs/"

/* Define if NAN is defined by default and can initialize static variables. */
#define NAN_STATIC_DEFAULT 1

/* Define if NAN is defined by __USE_ISOC99 and can initialize static
   variables. */
/* #undef NAN_STATIC_ISOC */

/* Define if NAN can be defined as (0.0 / 0.0) */
/* #undef NAN_ZERO_ZERO */

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

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

/* Define to 1 if we use the shipped iptc library. */
/* #undef OWN_LIBIPTC */

/* Name of package */
#define PACKAGE "collectd"

/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT ""

/* Define to the full name of this package. */
#define PACKAGE_NAME "collectd"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "collectd 4.10.1"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "collectd"

/* Define to the home page for this package. */
#define PACKAGE_URL ""

/* Define to the version of this package. */
#define PACKAGE_VERSION "4.10.1"

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

/* Define to 1 if strerror_r returns char *. */
/* #undef STRERROR_R_CHAR_P */

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

/* Version number of package */
#define VERSION "4.10.1"

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

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

/* Define to enforce ISO C99 compliance. */
/* #undef _ISOC99_SOURCE */

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

/* Define to enforce POSIX.1-2001 compliance. */
/* #undef _POSIX_C_SOURCE */

/* Define to enforce POSIX thread semantics under Solaris. */
/* #undef _POSIX_PTHREAD_SEMANTICS */

/* Define to enable reentrancy interfaces. */
/* #undef _REENTRANT */

/* Define to enforce X/Open 6 (XSI) compliance. */
/* #undef _XOPEN_SOURCE */

/* Define so that glibc/gnulib argp.h does not typedef error_t. */
/* #undef __error_t_defined */

/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */

/* Define to a type to use for `error_t' if it is not otherwise available. */
/* #undef error_t */

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

/* Define to `int' if <sys/types.h> does not define. */
/* #undef pid_t */

/* Define to `unsigned int' if <sys/types.h> does not define. */
/* #undef size_t */

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