File: config.h.in

package info (click to toggle)
libstatgrab 0.91-1
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 4,108 kB
  • ctags: 1,000
  • sloc: ansic: 12,245; sh: 11,574; perl: 467; makefile: 272
file content (973 lines) | stat: -rw-r--r-- 26,239 bytes parent folder | download
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
/* config.h.in.  Generated from configure.ac by autoheader.  */

/* Building on AIX 5.x - 9.x */
#undef AIX

/* Building on some kind of BSD */
#undef ALLBSD

/* Building on Cygwin */
#undef CYGWIN

/* Building on Darwin */
#undef DARWIN

/* Building on DragonFlyBSD */
#undef DFBSD

/* Define if you want the thread support compiled in. */
#undef ENABLE_THREADS

/* Define FMT string for gid_t */
#undef FMT_GID_T

/* Define FMT string for pid_t */
#undef FMT_PID_T

/* Define FMT string for size_t */
#undef FMT_SIZE_T

/* Define FMT string for ssize_t */
#undef FMT_SSIZE_T

/* Define FMT string for time_t */
#undef FMT_TIME_T

/* Define FMT string for uid_t */
#undef FMT_UID_T

/* Building on FreeBSD */
#undef FREEBSD

/* Building on FreeBSD 5+ */
#undef FREEBSD5

/* define when getmntent_r returns success code */
#undef GETMNTENT_R_RETURN_INT

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

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

/* Define to 1 if you have the `atoll' function. */
#undef HAVE_ATOLL

/* Define to 1 if you have the `bzero' function. */
#undef HAVE_BZERO

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

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

/* define when endmntent() is declared */
#undef HAVE_DECL_ENDMNTENT

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

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

/* define when F_SETLK is declared */
#undef HAVE_DECL_F_SETLK

/* define when getargs() is declared properly */
#undef HAVE_DECL_GETARGS

/* define when getprocs64() is declared properly */
#undef HAVE_DECL_GETPROCS64

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

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

/* define when mntctl() is declared properly */
#undef HAVE_DECL_MNTCTL

/* define when setmntent() is declared */
#undef HAVE_DECL_SETMNTENT

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

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

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

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

/* struct devstat.bytes array available */
#undef HAVE_DEVSTAT_BYTES

/* struct devstat.bytes_read available */
#undef HAVE_DEVSTAT_BYTES_READ

/* Define to 1 if you have the `devstat_getdevs' function. */
#undef HAVE_DEVSTAT_GETDEVS

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

/* Define to 1 if you have the `devstat_selectdevs' function. */
#undef HAVE_DEVSTAT_SELECTDEVS

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

/* OpenBSD disk stats disk names */
#undef HAVE_DISKSTAT_DS_NAME

/* New-style OpenBSD disk stats */
#undef HAVE_DISKSTAT_DS_RBYTES

/* New-style NetBSD disk stats */
#undef HAVE_DISK_SYSCTL_DK_RBYTES

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

/* Define to 1 if you have the `endutent' function. */
#undef HAVE_ENDUTENT

/* Define to 1 if you have the `endutxent' function. */
#undef HAVE_ENDUTXENT

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

/* struct ethtool_cmd.speed_hi available */
#undef HAVE_ETHTOOL_CMD_SPEED_HI

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

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

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

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

/* Define to 1 if you have the `getdevs' function. */
#undef HAVE_GETDEVS

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

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

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

/* Define to 1 if you have the `getmntent_r' function. */
#undef HAVE_GETMNTENT_R

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

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

/* define when getvfsstat() is declared properly */
#undef HAVE_GETVFSSTAT

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

/* Define to 1 if you have the `host_statistics64' function. */
#undef HAVE_HOST_STATISTICS64

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

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

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

/* struct io_sysctl.name available */
#undef HAVE_IO_SYSCTL_NAME

/* Define to 1 if you have the `kinfo_get_sched_cputime' function. */
#undef HAVE_KINFO_GET_SCHED_CPUTIME

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

/* ki_stat member of struct kinfo_proc available */
#undef HAVE_KINFO_PROC_KI_STAT

/* kp_eproc member of struct kinfo_proc available */
#undef HAVE_KINFO_PROC_KP_EPROC

/* kp_eproc.e_ucred.cr_ruid member of struct kinfo_proc available */
#undef HAVE_KINFO_PROC_KP_EPROC_E_UCRED_CR_RUID

/* kp_pid member of struct kinfo_proc available */
#undef HAVE_KINFO_PROC_KP_PID

/* kp_proc member of struct kinfo_proc available */
#undef HAVE_KINFO_PROC_KP_PROC

/* ki_structsize member of struct kinfo_proc available */
#undef HAVE_KINFO_PROC_KP_THREAD

/* p_pid member of struct kinfo_proc available */
#undef HAVE_KINFO_PROC_P_PID

/* p_stat member of struct kinfo_proc available */
#undef HAVE_KINFO_PROC_P_STAT

/* p_vm_map_size member of struct kinfo_proc available */
#undef HAVE_KINFO_PROC_P_VM_MAP_SIZE

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

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

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

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

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

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

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

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

/* Define to 1 if the system has the type 'long long int'. */
#undef HAVE_LONG_LONG_INT

/* Define to 1 if you have the <mach/host_info.h> header file. */
#undef HAVE_MACH_HOST_INFO_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/machine.h> header file. */
#undef HAVE_MACH_MACHINE_H

/* Define to 1 if you have the <mach/mach.h> header file. */
#undef HAVE_MACH_MACH_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/vm_statistics.h> header file. */
#undef HAVE_MACH_VM_STATISTICS_H

/* Define to 1 if you have the `malloc' function. */
#undef HAVE_MALLOC

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

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

/* Define to 1 if you have the `mntctl' function. */
#undef HAVE_MNTCTL

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

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

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

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

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

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

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

/* Define to 1 if you have the <net/if_media.h> header file. */
#undef HAVE_NET_IF_MEDIA_H

/* define this when array at struct end might be open */
#undef HAVE_OPEN_ARRAY_AT_STRUCT_END

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

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

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

/* Define to signal that procfs is available */
#undef HAVE_PROCFS

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

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

/* pst_diskinfo.psd_dkbytewrite */
#undef HAVE_PST_DISKINFO_PSD_DKBYTEWRITE

/* Define if you have POSIX threads libraries and header files. */
#undef HAVE_PTHREAD

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

/* Define to 1 if you have the `realloc' function. */
#undef HAVE_REALLOC

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

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

/* Define to 1 if you have the `selectdevs' function. */
#undef HAVE_SELECTDEVS

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

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

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

/* Define to 1 if you have the `setlinebuf' function. */
#undef HAVE_SETLINEBUF

/* 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 `setutent' function. */
#undef HAVE_SETUTENT

/* Define to 1 if you have the `setutxent' function. */
#undef HAVE_SETUTXENT

/* Define to 1 if you have the `setvbuf' function. */
#undef HAVE_SETVBUF

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

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

/* define when statfs has f_favail member */
#undef HAVE_STATFS_FFAVAIL

/* define when statfs has f_frsize member */
#undef HAVE_STATFS_FFRSIZE

/* define when statfs has f_iosize member */
#undef HAVE_STATFS_FIOSIZE

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

/* Define to 1 if you have the `statvfs64' function. */
#undef HAVE_STATVFS64

/* Solaris etc. extended statvfs64 */
#undef HAVE_STATVFS64_FBASETYPE

/* another Solaris extension */
#undef HAVE_STATVFS64_FFRSIZE

/* another BSD extension */
#undef HAVE_STATVFS64_FIOSIZE

/* NetBSD extended statvfs64 */
#undef HAVE_STATVFS64_FSTYPENAME

/* Solaris etc. extended statvfs */
#undef HAVE_STATVFS_FBASETYPE

/* another Solaris extension */
#undef HAVE_STATVFS_FFRSIZE

/* another BSD extension */
#undef HAVE_STATVFS_FIOSIZE

/* NetBSD extended statvfs */
#undef HAVE_STATVFS_FSTYPENAME

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

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

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

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

/* Define to 1 if you have the `strerror_r' function. */
#undef HAVE_STRERROR_R

/* Define to 1 if you have the `strerror_s' function. */
#undef HAVE_STRERROR_S

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Define to 1 if `ss_family' is a member of `struct sockaddr_storage'. */
#undef HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY

/* Define to 1 if `__ss_family' is a member of `struct sockaddr_storage'. */
#undef HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY

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

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

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

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

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

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

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

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

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

/* struct uvmexp.execpages */
#undef HAVE_STRUCT_UVMEXP_EXECPAGES

/* struct uvmexp.filepages */
#undef HAVE_STRUCT_UVMEXP_FILEPAGES

/* struct uvmexp.swtch */
#undef HAVE_STRUCT_UVMEXP_SWTCH

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

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

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

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

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

/* struct xswdev.xsw_size */
#undef HAVE_STRUCT_XSWDEV_SIZE

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

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

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

/* Define to 1 if you have the `sysfs' function. */
#undef HAVE_SYSFS

/* 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/disk.h> header file. */
#undef HAVE_SYS_DISK_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/dk.h> header file. */
#undef HAVE_SYS_DK_H

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

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

/* Define to 1 if you have the <sys/dr.h> header file. */
#undef HAVE_SYS_DR_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/ioctl.h> header file. */
#undef HAVE_SYS_IOCTL_H

/* Define to 1 if you have the <sys/iostat.h> header file. */
#undef HAVE_SYS_IOSTAT_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/mib.h> header file. */
#undef HAVE_SYS_MIB_H

/* Define to 1 if you have the <sys/mntctl.h> header file. */
#undef HAVE_SYS_MNTCTL_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/mnttent.h> header file. */
#undef HAVE_SYS_MNTTENT_H

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

/* Define to 1 if you have the <sys/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. */
#undef HAVE_SYS_PARAM_H

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

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

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

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

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

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

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

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

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

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

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

/* Define to 1 if you have the <sys/swap.h> header file. */
#undef HAVE_SYS_SWAP_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/sysinfo.h> header file. */
#undef HAVE_SYS_SYSINFO_H

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

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

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

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

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

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

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

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

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

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

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

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

/* define when getmntent takes pointer to storage to fill */
#undef HAVE_THREADSAFE_GETMNTENT

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

/* Define to 1 if the system has the type 'unsigned long long int'. */
#undef HAVE_UNSIGNED_LONG_LONG_INT

/* utmp */
#undef HAVE_UTMP

/* utmpx */
#undef HAVE_UTMPX

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

/* utmpx.ut_host */
#undef HAVE_UTMPX_HOST

/* utmpx.ut_syslen */
#undef HAVE_UTMPX_SYSLEN

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

/* utmp.ut_host */
#undef HAVE_UTMP_HOST

/* utmp.ut_id */
#undef HAVE_UTMP_ID

/* utmp.ut_name */
#undef HAVE_UTMP_NAME

/* utmp.ut_pid */
#undef HAVE_UTMP_PID

/* utmp.ut_time */
#undef HAVE_UTMP_TIME

/* utmp.ut_type */
#undef HAVE_UTMP_TYPE

/* utmp.ut_user */
#undef HAVE_UTMP_USER

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

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

/* Define to 1 if you have the `vsnprintf' function. */
#undef HAVE_VSNPRINTF

/* Define to 1 if you have the `vsprintf' function. */
#undef HAVE_VSPRINTF

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

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

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

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

/* _XOPEN_SOURCE $HAVE_XOPEN_SOURCE */
#undef HAVE_XOPEN_SOURCE

/* define this when array can have zero length */
#undef HAVE_ZERO_SIZED_ARRAY

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

/* Building on HP-UX 11.11+ */
#undef HPUX

/* Building on HP-UX 11.11+ */
#undef HPUX11

/* Building on GNU/Linux */
#undef LINUX

/* define when linux/ethtool.h has broken types */
#undef LINUX_BROKEN_ETHTOOL_TYPES

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

/* Building on MinGW */
#undef MINGW

/* Configure specified mtab file */
#undef MNT_MNTTAB

/* Define to 1 if PTHREAD_ONCE_INIT needs braces. */
#undef NEED_PTHREAD_MUTEX_INITIALIZER_BRACES

/* Define to 1 if PTHREAD_ONCE_INIT needs braces. */
#undef NEED_PTHREAD_ONCE_INIT_BRACES

/* Building on NetBSD */
#undef NETBSD

/* Building on OpenBSD */
#undef OPENBSD

/* Define to be the name of the operating system. */
#undef OS_TYPE

/* Name of package */
#undef PACKAGE

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

/* Define to the full name of this package. */
#undef PACKAGE_NAME

/* Define to the full name and version of this package. */
#undef PACKAGE_STRING

/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME

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

/* Define to the version of this package. */
#undef PACKAGE_VERSION

/* Define to necessary symbol if this constant uses a non-standard name on
   your system. */
#undef PTHREAD_CREATE_JOINABLE

/* The size of `utmpx.ut_id', as computed by sizeof. */
#undef SIZEOF_UTMPX_UT_ID

/* The size of `utmp.ut_id', as computed by sizeof. */
#undef SIZEOF_UTMP_UT_ID

/* Building on Solaris */
#undef SOLARIS

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

/* define when strerror_r returns success code */
#undef STRERROR_R_RETURN_INT

/* Defined with a true value when struct sg_vector is well aligned */
#undef STRUCT_SG_VECTOR_ALIGN_OK

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

/* Version number of package */
#undef VERSION

/* Building for Windows 2003 */
#undef WINVER

/* Define this when tracing shall be done using fprintf(stderr, ...) */
#undef WITH_FULL_CONSOLE_LOGGER

/* Define this when tracing shall be done using log4cplus */
#undef WITH_LIBLOG4CPLUS

/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
   #define below would cause a syntax error. */
#undef _UINT32_T

/* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
   #define below would cause a syntax error. */
#undef _UINT64_T

/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
   #define below would cause a syntax error. */
#undef _UINT8_T

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

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

/* Define to `__inline__' or `__inline' if that's what the C compiler
   calls it, or to nothing if 'inline' is not supported under any name.  */
#ifndef __cplusplus
#undef inline
#endif

/* Define to the type of a signed integer type of width exactly 16 bits if
   such a type exists and the standard includes do not define it. */
#undef int16_t

/* Define to the type of a signed integer type of width exactly 32 bits if
   such a type exists and the standard includes do not define it. */
#undef int32_t

/* Define to the type of a signed integer type of width exactly 64 bits if
   such a type exists and the standard includes do not define it. */
#undef int64_t

/* Define to the type of a signed integer type of width exactly 8 bits if such
   a type exists and the standard includes do not define it. */
#undef int8_t

/* Define to `long int' if <sys/types.h> does not define. */
#undef off_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> does not define. */
#undef ssize_t

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

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

/* Define to the type of an unsigned integer type of width exactly 16 bits if
   such a type exists and the standard includes do not define it. */
#undef uint16_t

/* Define to the type of an unsigned integer type of width exactly 32 bits if
   such a type exists and the standard includes do not define it. */
#undef uint32_t

/* Define to the type of an unsigned integer type of width exactly 64 bits if
   such a type exists and the standard includes do not define it. */
#undef uint64_t

/* Define to the type of an unsigned integer type of width exactly 8 bits if
   such a type exists and the standard includes do not define it. */
#undef uint8_t