This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathconfig.h.in
1828 lines (1287 loc) · 57.7 KB
/
config.h.in
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
/* config.h.in. Generated from configure.ac by autoheader. */
/* Define for the AArch64 architecture. */
#undef AARCH64
/* Define if building universal (internal helper macro) */
#undef AC_APPLE_UNIVERSAL_BUILD
/* Define for the Alpha architecture. */
#undef ALPHA
/* Define for the ARC architecture. */
#undef ARC
/* Define for the ARM architecture. */
#undef ARM
/* SA_RESTORER defined in <asm/signal.h> */
#undef ASM_SA_RESTORER
/* SIGRTMIN defined in <asm/signal.h> */
#undef ASM_SIGRTMIN
/* Define for the AVR32 architecture. */
#undef AVR32
/* Define for the Blackfin architecture. */
#undef BFIN
/* Current copyright year. */
#undef COPYRIGHT_YEAR
/* Define to 1 if you want OABI support on ARM EABI. */
#undef ENABLE_ARM_OABI
/* Define to enable stack tracing support */
#undef ENABLE_STACKTRACE
/* Define to 1 if you have the `accept4' function. */
#undef HAVE_ACCEPT4
/* Define to 1 if you have the <asm/cachectl.h> header file. */
#undef HAVE_ASM_CACHECTL_H
/* Define to 1 if you have the <asm/guarded_storage.h> header file. */
#undef HAVE_ASM_GUARDED_STORAGE_H
/* Define to 1 if you have the <asm/sigcontext.h> header file. */
#undef HAVE_ASM_SIGCONTEXT_H
/* Define to 1 if you have the <asm/sysmips.h> header file. */
#undef HAVE_ASM_SYSMIPS_H
/* Define to 1 if you have the `be64toh' function. */
#undef HAVE_BE64TOH
/* Define to 1 if you have the <bluetooth/bluetooth.h> header file. */
#undef HAVE_BLUETOOTH_BLUETOOTH_H
/* Define to 1 if you have the declaration of `BTRFS_COMPRESS_LZO', and to 0
if you don't. */
#undef HAVE_DECL_BTRFS_COMPRESS_LZO
/* Define to 1 if you have the declaration of `BTRFS_COMPRESS_NONE', and to 0
if you don't. */
#undef HAVE_DECL_BTRFS_COMPRESS_NONE
/* Define to 1 if you have the declaration of `BTRFS_COMPRESS_ZLIB', and to 0
if you don't. */
#undef HAVE_DECL_BTRFS_COMPRESS_ZLIB
/* Define to 1 if you have the declaration of `CTL_ARLAN', and to 0 if you
don't. */
#undef HAVE_DECL_CTL_ARLAN
/* Define to 1 if you have the declaration of `CTL_FRV', and to 0 if you
don't. */
#undef HAVE_DECL_CTL_FRV
/* Define to 1 if you have the declaration of `CTL_PM', and to 0 if you don't.
*/
#undef HAVE_DECL_CTL_PM
/* Define to 1 if you have the declaration of `CTL_PROC', and to 0 if you
don't. */
#undef HAVE_DECL_CTL_PROC
/* Define to 1 if you have the declaration of `CTL_S390DBF', and to 0 if you
don't. */
#undef HAVE_DECL_CTL_S390DBF
/* Define to 1 if you have the declaration of `CTL_SUNRPC', and to 0 if you
don't. */
#undef HAVE_DECL_CTL_SUNRPC
/* Define to 1 if you have the declaration of `IFLA_AF_SPEC', and to 0 if you
don't. */
#undef HAVE_DECL_IFLA_AF_SPEC
/* Define to 1 if you have the declaration of `IFLA_PORT_SELF', and to 0 if
you don't. */
#undef HAVE_DECL_IFLA_PORT_SELF
/* Define to 1 if you have the declaration of `IFLA_PROTINFO', and to 0 if you
don't. */
#undef HAVE_DECL_IFLA_PROTINFO
/* Define to 1 if you have the declaration of `IFLA_XDP', and to 0 if you
don't. */
#undef HAVE_DECL_IFLA_XDP
/* Define to 1 if you have the declaration of `KERN_ACPI_VIDEO_FLAGS', and to
0 if you don't. */
#undef HAVE_DECL_KERN_ACPI_VIDEO_FLAGS
/* Define to 1 if you have the declaration of `KERN_BOOTLOADER_TYPE', and to 0
if you don't. */
#undef HAVE_DECL_KERN_BOOTLOADER_TYPE
/* Define to 1 if you have the declaration of `KERN_COMPAT_LOG', and to 0 if
you don't. */
#undef HAVE_DECL_KERN_COMPAT_LOG
/* Define to 1 if you have the declaration of `KERN_HZ_TIMER', and to 0 if you
don't. */
#undef HAVE_DECL_KERN_HZ_TIMER
/* Define to 1 if you have the declaration of `KERN_IA64_UNALIGNED', and to 0
if you don't. */
#undef HAVE_DECL_KERN_IA64_UNALIGNED
/* Define to 1 if you have the declaration of `KERN_MAX_LOCK_DEPTH', and to 0
if you don't. */
#undef HAVE_DECL_KERN_MAX_LOCK_DEPTH
/* Define to 1 if you have the declaration of `KERN_NGROUPS_MAX', and to 0 if
you don't. */
#undef HAVE_DECL_KERN_NGROUPS_MAX
/* Define to 1 if you have the declaration of `KERN_NMI_WATCHDOG', and to 0 if
you don't. */
#undef HAVE_DECL_KERN_NMI_WATCHDOG
/* Define to 1 if you have the declaration of `KERN_PANIC_ON_NMI', and to 0 if
you don't. */
#undef HAVE_DECL_KERN_PANIC_ON_NMI
/* Define to 1 if you have the declaration of `KERN_PRINTK_RATELIMIT', and to
0 if you don't. */
#undef HAVE_DECL_KERN_PRINTK_RATELIMIT
/* Define to 1 if you have the declaration of `KERN_PRINTK_RATELIMIT_BURST',
and to 0 if you don't. */
#undef HAVE_DECL_KERN_PRINTK_RATELIMIT_BURST
/* Define to 1 if you have the declaration of `KERN_PTY', and to 0 if you
don't. */
#undef HAVE_DECL_KERN_PTY
/* Define to 1 if you have the declaration of `KERN_RANDOMIZE', and to 0 if
you don't. */
#undef HAVE_DECL_KERN_RANDOMIZE
/* Define to 1 if you have the declaration of `KERN_SETUID_DUMPABLE', and to 0
if you don't. */
#undef HAVE_DECL_KERN_SETUID_DUMPABLE
/* Define to 1 if you have the declaration of `KERN_SPARC_SCONS_PWROFF', and
to 0 if you don't. */
#undef HAVE_DECL_KERN_SPARC_SCONS_PWROFF
/* Define to 1 if you have the declaration of `KERN_SPIN_RETRY', and to 0 if
you don't. */
#undef HAVE_DECL_KERN_SPIN_RETRY
/* Define to 1 if you have the declaration of `KERN_UNKNOWN_NMI_PANIC', and to
0 if you don't. */
#undef HAVE_DECL_KERN_UNKNOWN_NMI_PANIC
/* Define to 1 if you have the declaration of `LO_FLAGS_AUTOCLEAR', and to 0
if you don't. */
#undef HAVE_DECL_LO_FLAGS_AUTOCLEAR
/* Define to 1 if you have the declaration of `LO_FLAGS_DIRECT_IO', and to 0
if you don't. */
#undef HAVE_DECL_LO_FLAGS_DIRECT_IO
/* Define to 1 if you have the declaration of `LO_FLAGS_PARTSCAN', and to 0 if
you don't. */
#undef HAVE_DECL_LO_FLAGS_PARTSCAN
/* Define to 1 if you have the declaration of `LO_FLAGS_READ_ONLY', and to 0
if you don't. */
#undef HAVE_DECL_LO_FLAGS_READ_ONLY
/* Define to 1 if you have the declaration of `LO_FLAGS_USE_AOPS', and to 0 if
you don't. */
#undef HAVE_DECL_LO_FLAGS_USE_AOPS
/* Define to 1 if you have the declaration of `NET_CIPSOV4_CACHE_BUCKET_SIZE',
and to 0 if you don't. */
#undef HAVE_DECL_NET_CIPSOV4_CACHE_BUCKET_SIZE
/* Define to 1 if you have the declaration of `NET_CIPSOV4_CACHE_ENABLE', and
to 0 if you don't. */
#undef HAVE_DECL_NET_CIPSOV4_CACHE_ENABLE
/* Define to 1 if you have the declaration of `NET_CIPSOV4_RBM_OPTFMT', and to
0 if you don't. */
#undef HAVE_DECL_NET_CIPSOV4_RBM_OPTFMT
/* Define to 1 if you have the declaration of `NET_CIPSOV4_RBM_STRICTVALID',
and to 0 if you don't. */
#undef HAVE_DECL_NET_CIPSOV4_RBM_STRICTVALID
/* Define to 1 if you have the declaration of `NET_CORE_AEVENT_ETIME', and to
0 if you don't. */
#undef HAVE_DECL_NET_CORE_AEVENT_ETIME
/* Define to 1 if you have the declaration of `NET_CORE_AEVENT_RSEQTH', and to
0 if you don't. */
#undef HAVE_DECL_NET_CORE_AEVENT_RSEQTH
/* Define to 1 if you have the declaration of `NET_CORE_BUDGET', and to 0 if
you don't. */
#undef HAVE_DECL_NET_CORE_BUDGET
/* Define to 1 if you have the declaration of `NET_CORE_DESTROY_DELAY', and to
0 if you don't. */
#undef HAVE_DECL_NET_CORE_DESTROY_DELAY
/* Define to 1 if you have the declaration of `NET_CORE_WARNINGS', and to 0 if
you don't. */
#undef HAVE_DECL_NET_CORE_WARNINGS
/* Define to 1 if you have the declaration of `NET_DCCP', and to 0 if you
don't. */
#undef HAVE_DECL_NET_DCCP
/* Define to 1 if you have the declaration of `NET_IPV4_CONF_ARP_ACCEPT', and
to 0 if you don't. */
#undef HAVE_DECL_NET_IPV4_CONF_ARP_ACCEPT
/* Define to 1 if you have the declaration of `NET_IPV4_CONF_ARP_ANNOUNCE',
and to 0 if you don't. */
#undef HAVE_DECL_NET_IPV4_CONF_ARP_ANNOUNCE
/* Define to 1 if you have the declaration of `NET_IPV4_CONF_ARP_IGNORE', and
to 0 if you don't. */
#undef HAVE_DECL_NET_IPV4_CONF_ARP_IGNORE
/* Define to 1 if you have the declaration of `NET_IPV4_CONF_ARP_NOTIFY', and
to 0 if you don't. */
#undef HAVE_DECL_NET_IPV4_CONF_ARP_NOTIFY
/* Define to 1 if you have the declaration of
`NET_IPV4_CONF_FORCE_IGMP_VERSION', and to 0 if you don't. */
#undef HAVE_DECL_NET_IPV4_CONF_FORCE_IGMP_VERSION
/* Define to 1 if you have the declaration of
`NET_IPV4_CONF_PROMOTE_SECONDARIES', and to 0 if you don't. */
#undef HAVE_DECL_NET_IPV4_CONF_PROMOTE_SECONDARIES
/* Define to 1 if you have the declaration of
`NET_IPV4_ICMP_ERRORS_USE_INBOUND_IFADDR', and to 0 if you don't. */
#undef HAVE_DECL_NET_IPV4_ICMP_ERRORS_USE_INBOUND_IFADDR
/* Define to 1 if you have the declaration of `NET_IPV4_IGMP_MAX_MSF', and to
0 if you don't. */
#undef HAVE_DECL_NET_IPV4_IGMP_MAX_MSF
/* Define to 1 if you have the declaration of `NET_IPV4_IPFRAG_MAX_DIST', and
to 0 if you don't. */
#undef HAVE_DECL_NET_IPV4_IPFRAG_MAX_DIST
/* Define to 1 if you have the declaration of
`NET_IPV4_ROUTE_GC_MIN_INTERVAL_MS', and to 0 if you don't. */
#undef HAVE_DECL_NET_IPV4_ROUTE_GC_MIN_INTERVAL_MS
/* Define to 1 if you have the declaration of
`NET_IPV4_TCP_WORKAROUND_SIGNED_WINDOWS', and to 0 if you don't. */
#undef HAVE_DECL_NET_IPV4_TCP_WORKAROUND_SIGNED_WINDOWS
/* Define to 1 if you have the declaration of `NET_IPV6_MLD_MAX_MSF', and to 0
if you don't. */
#undef HAVE_DECL_NET_IPV6_MLD_MAX_MSF
/* Define to 1 if you have the declaration of
`NET_IPV6_ROUTE_GC_MIN_INTERVAL_MS', and to 0 if you don't. */
#undef HAVE_DECL_NET_IPV6_ROUTE_GC_MIN_INTERVAL_MS
/* Define to 1 if you have the declaration of `NET_IRDA', and to 0 if you
don't. */
#undef HAVE_DECL_NET_IRDA
/* Define to 1 if you have the declaration of `NET_LLC', and to 0 if you
don't. */
#undef HAVE_DECL_NET_LLC
/* Define to 1 if you have the declaration of `NET_NETFILTER', and to 0 if you
don't. */
#undef HAVE_DECL_NET_NETFILTER
/* Define to 1 if you have the declaration of `NET_TCP_ABC', and to 0 if you
don't. */
#undef HAVE_DECL_NET_TCP_ABC
/* Define to 1 if you have the declaration of `NET_TCP_ALLOWED_CONG_CONTROL',
and to 0 if you don't. */
#undef HAVE_DECL_NET_TCP_ALLOWED_CONG_CONTROL
/* Define to 1 if you have the declaration of `NET_TCP_AVAIL_CONG_CONTROL',
and to 0 if you don't. */
#undef HAVE_DECL_NET_TCP_AVAIL_CONG_CONTROL
/* Define to 1 if you have the declaration of `NET_TCP_BASE_MSS', and to 0 if
you don't. */
#undef HAVE_DECL_NET_TCP_BASE_MSS
/* Define to 1 if you have the declaration of `NET_TCP_BIC_BETA', and to 0 if
you don't. */
#undef HAVE_DECL_NET_TCP_BIC_BETA
/* Define to 1 if you have the declaration of `NET_TCP_CONG_CONTROL', and to 0
if you don't. */
#undef HAVE_DECL_NET_TCP_CONG_CONTROL
/* Define to 1 if you have the declaration of `NET_TCP_DEFAULT_WIN_SCALE', and
to 0 if you don't. */
#undef HAVE_DECL_NET_TCP_DEFAULT_WIN_SCALE
/* Define to 1 if you have the declaration of `NET_TCP_DMA_COPYBREAK', and to
0 if you don't. */
#undef HAVE_DECL_NET_TCP_DMA_COPYBREAK
/* Define to 1 if you have the declaration of `NET_TCP_FRTO_RESPONSE', and to
0 if you don't. */
#undef HAVE_DECL_NET_TCP_FRTO_RESPONSE
/* Define to 1 if you have the declaration of `NET_TCP_MAX_SSTHRESH', and to 0
if you don't. */
#undef HAVE_DECL_NET_TCP_MAX_SSTHRESH
/* Define to 1 if you have the declaration of `NET_TCP_MODERATE_RCVBUF', and
to 0 if you don't. */
#undef HAVE_DECL_NET_TCP_MODERATE_RCVBUF
/* Define to 1 if you have the declaration of `NET_TCP_MTU_PROBING', and to 0
if you don't. */
#undef HAVE_DECL_NET_TCP_MTU_PROBING
/* Define to 1 if you have the declaration of `NET_TCP_NO_METRICS_SAVE', and
to 0 if you don't. */
#undef HAVE_DECL_NET_TCP_NO_METRICS_SAVE
/* Define to 1 if you have the declaration of `NET_TCP_SLOW_START_AFTER_IDLE',
and to 0 if you don't. */
#undef HAVE_DECL_NET_TCP_SLOW_START_AFTER_IDLE
/* Define to 1 if you have the declaration of `NET_TCP_TSO_WIN_DIVISOR', and
to 0 if you don't. */
#undef HAVE_DECL_NET_TCP_TSO_WIN_DIVISOR
/* Define to 1 if you have the declaration of `PTRACE_PEEKUSER', and to 0 if
you don't. */
#undef HAVE_DECL_PTRACE_PEEKUSER
/* Define to 1 if you have the declaration of `PTRACE_POKEUSER', and to 0 if
you don't. */
#undef HAVE_DECL_PTRACE_POKEUSER
/* Define to 1 if you have the declaration of `P_ALL', and to 0 if you don't.
*/
#undef HAVE_DECL_P_ALL
/* Define to 1 if you have the declaration of `P_CID', and to 0 if you don't.
*/
#undef HAVE_DECL_P_CID
/* Define to 1 if you have the declaration of `P_GID', and to 0 if you don't.
*/
#undef HAVE_DECL_P_GID
/* Define to 1 if you have the declaration of `P_LWPID', and to 0 if you
don't. */
#undef HAVE_DECL_P_LWPID
/* Define to 1 if you have the declaration of `P_PGID', and to 0 if you don't.
*/
#undef HAVE_DECL_P_PGID
/* Define to 1 if you have the declaration of `P_PID', and to 0 if you don't.
*/
#undef HAVE_DECL_P_PID
/* Define to 1 if you have the declaration of `P_PPID', and to 0 if you don't.
*/
#undef HAVE_DECL_P_PPID
/* Define to 1 if you have the declaration of `P_SID', and to 0 if you don't.
*/
#undef HAVE_DECL_P_SID
/* Define to 1 if you have the declaration of `P_UID', and to 0 if you don't.
*/
#undef HAVE_DECL_P_UID
/* Define to 1 if you have the declaration of `sys_errlist', and to 0 if you
don't. */
#undef HAVE_DECL_SYS_ERRLIST
/* Define to 1 if you have the declaration of `TCA_STAB_DATA', and to 0 if you
don't. */
#undef HAVE_DECL_TCA_STAB_DATA
/* Define to 1 if you have the declaration of `V4L2_BUF_TYPE_SDR_CAPTURE', and
to 0 if you don't. */
#undef HAVE_DECL_V4L2_BUF_TYPE_SDR_CAPTURE
/* Define to 1 if you have the declaration of `V4L2_BUF_TYPE_SDR_OUTPUT', and
to 0 if you don't. */
#undef HAVE_DECL_V4L2_BUF_TYPE_SDR_OUTPUT
/* Define to 1 if you have the declaration of
`V4L2_BUF_TYPE_SLICED_VBI_CAPTURE', and to 0 if you don't. */
#undef HAVE_DECL_V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
/* Define to 1 if you have the declaration of
`V4L2_BUF_TYPE_SLICED_VBI_OUTPUT', and to 0 if you don't. */
#undef HAVE_DECL_V4L2_BUF_TYPE_SLICED_VBI_OUTPUT
/* Define to 1 if you have the declaration of `V4L2_BUF_TYPE_VBI_CAPTURE', and
to 0 if you don't. */
#undef HAVE_DECL_V4L2_BUF_TYPE_VBI_CAPTURE
/* Define to 1 if you have the declaration of `V4L2_BUF_TYPE_VBI_OUTPUT', and
to 0 if you don't. */
#undef HAVE_DECL_V4L2_BUF_TYPE_VBI_OUTPUT
/* Define to 1 if you have the declaration of `V4L2_BUF_TYPE_VIDEO_CAPTURE',
and to 0 if you don't. */
#undef HAVE_DECL_V4L2_BUF_TYPE_VIDEO_CAPTURE
/* Define to 1 if you have the declaration of
`V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE', and to 0 if you don't. */
#undef HAVE_DECL_V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
/* Define to 1 if you have the declaration of `V4L2_BUF_TYPE_VIDEO_OUTPUT',
and to 0 if you don't. */
#undef HAVE_DECL_V4L2_BUF_TYPE_VIDEO_OUTPUT
/* Define to 1 if you have the declaration of
`V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE', and to 0 if you don't. */
#undef HAVE_DECL_V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
/* Define to 1 if you have the declaration of
`V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY', and to 0 if you don't. */
#undef HAVE_DECL_V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY
/* Define to 1 if you have the declaration of `V4L2_BUF_TYPE_VIDEO_OVERLAY',
and to 0 if you don't. */
#undef HAVE_DECL_V4L2_BUF_TYPE_VIDEO_OVERLAY
/* Define to 1 if you have the declaration of `V4L2_COLORSPACE_470_SYSTEM_BG',
and to 0 if you don't. */
#undef HAVE_DECL_V4L2_COLORSPACE_470_SYSTEM_BG
/* Define to 1 if you have the declaration of `V4L2_COLORSPACE_470_SYSTEM_M',
and to 0 if you don't. */
#undef HAVE_DECL_V4L2_COLORSPACE_470_SYSTEM_M
/* Define to 1 if you have the declaration of `V4L2_COLORSPACE_BT878', and to
0 if you don't. */
#undef HAVE_DECL_V4L2_COLORSPACE_BT878
/* Define to 1 if you have the declaration of `V4L2_COLORSPACE_JPEG', and to 0
if you don't. */
#undef HAVE_DECL_V4L2_COLORSPACE_JPEG
/* Define to 1 if you have the declaration of `V4L2_COLORSPACE_REC709', and to
0 if you don't. */
#undef HAVE_DECL_V4L2_COLORSPACE_REC709
/* Define to 1 if you have the declaration of `V4L2_COLORSPACE_SMPTE170M', and
to 0 if you don't. */
#undef HAVE_DECL_V4L2_COLORSPACE_SMPTE170M
/* Define to 1 if you have the declaration of `V4L2_COLORSPACE_SMPTE240M', and
to 0 if you don't. */
#undef HAVE_DECL_V4L2_COLORSPACE_SMPTE240M
/* Define to 1 if you have the declaration of `V4L2_COLORSPACE_SRGB', and to 0
if you don't. */
#undef HAVE_DECL_V4L2_COLORSPACE_SRGB
/* Define to 1 if you have the declaration of `V4L2_CTRL_TYPE_BITMASK', and to
0 if you don't. */
#undef HAVE_DECL_V4L2_CTRL_TYPE_BITMASK
/* Define to 1 if you have the declaration of `V4L2_CTRL_TYPE_BOOLEAN', and to
0 if you don't. */
#undef HAVE_DECL_V4L2_CTRL_TYPE_BOOLEAN
/* Define to 1 if you have the declaration of `V4L2_CTRL_TYPE_BUTTON', and to
0 if you don't. */
#undef HAVE_DECL_V4L2_CTRL_TYPE_BUTTON
/* Define to 1 if you have the declaration of `V4L2_CTRL_TYPE_CTRL_CLASS', and
to 0 if you don't. */
#undef HAVE_DECL_V4L2_CTRL_TYPE_CTRL_CLASS
/* Define to 1 if you have the declaration of `V4L2_CTRL_TYPE_INTEGER', and to
0 if you don't. */
#undef HAVE_DECL_V4L2_CTRL_TYPE_INTEGER
/* Define to 1 if you have the declaration of `V4L2_CTRL_TYPE_INTEGER64', and
to 0 if you don't. */
#undef HAVE_DECL_V4L2_CTRL_TYPE_INTEGER64
/* Define to 1 if you have the declaration of `V4L2_CTRL_TYPE_INTEGER_MENU',
and to 0 if you don't. */
#undef HAVE_DECL_V4L2_CTRL_TYPE_INTEGER_MENU
/* Define to 1 if you have the declaration of `V4L2_CTRL_TYPE_MENU', and to 0
if you don't. */
#undef HAVE_DECL_V4L2_CTRL_TYPE_MENU
/* Define to 1 if you have the declaration of `V4L2_CTRL_TYPE_STRING', and to
0 if you don't. */
#undef HAVE_DECL_V4L2_CTRL_TYPE_STRING
/* Define to 1 if you have the declaration of `V4L2_FIELD_ALTERNATE', and to 0
if you don't. */
#undef HAVE_DECL_V4L2_FIELD_ALTERNATE
/* Define to 1 if you have the declaration of `V4L2_FIELD_ANY', and to 0 if
you don't. */
#undef HAVE_DECL_V4L2_FIELD_ANY
/* Define to 1 if you have the declaration of `V4L2_FIELD_BOTTOM', and to 0 if
you don't. */
#undef HAVE_DECL_V4L2_FIELD_BOTTOM
/* Define to 1 if you have the declaration of `V4L2_FIELD_INTERLACED', and to
0 if you don't. */
#undef HAVE_DECL_V4L2_FIELD_INTERLACED
/* Define to 1 if you have the declaration of `V4L2_FIELD_INTERLACED_BT', and
to 0 if you don't. */
#undef HAVE_DECL_V4L2_FIELD_INTERLACED_BT
/* Define to 1 if you have the declaration of `V4L2_FIELD_INTERLACED_TB', and
to 0 if you don't. */
#undef HAVE_DECL_V4L2_FIELD_INTERLACED_TB
/* Define to 1 if you have the declaration of `V4L2_FIELD_NONE', and to 0 if
you don't. */
#undef HAVE_DECL_V4L2_FIELD_NONE
/* Define to 1 if you have the declaration of `V4L2_FIELD_SEQ_BT', and to 0 if
you don't. */
#undef HAVE_DECL_V4L2_FIELD_SEQ_BT
/* Define to 1 if you have the declaration of `V4L2_FIELD_SEQ_TB', and to 0 if
you don't. */
#undef HAVE_DECL_V4L2_FIELD_SEQ_TB
/* Define to 1 if you have the declaration of `V4L2_FIELD_TOP', and to 0 if
you don't. */
#undef HAVE_DECL_V4L2_FIELD_TOP
/* Define to 1 if you have the declaration of `V4L2_FRMIVAL_TYPE_CONTINUOUS',
and to 0 if you don't. */
#undef HAVE_DECL_V4L2_FRMIVAL_TYPE_CONTINUOUS
/* Define to 1 if you have the declaration of `V4L2_FRMIVAL_TYPE_DISCRETE',
and to 0 if you don't. */
#undef HAVE_DECL_V4L2_FRMIVAL_TYPE_DISCRETE
/* Define to 1 if you have the declaration of `V4L2_FRMIVAL_TYPE_STEPWISE',
and to 0 if you don't. */
#undef HAVE_DECL_V4L2_FRMIVAL_TYPE_STEPWISE
/* Define to 1 if you have the declaration of `V4L2_FRMSIZE_TYPE_CONTINUOUS',
and to 0 if you don't. */
#undef HAVE_DECL_V4L2_FRMSIZE_TYPE_CONTINUOUS
/* Define to 1 if you have the declaration of `V4L2_FRMSIZE_TYPE_DISCRETE',
and to 0 if you don't. */
#undef HAVE_DECL_V4L2_FRMSIZE_TYPE_DISCRETE
/* Define to 1 if you have the declaration of `V4L2_FRMSIZE_TYPE_STEPWISE',
and to 0 if you don't. */
#undef HAVE_DECL_V4L2_FRMSIZE_TYPE_STEPWISE
/* Define to 1 if you have the declaration of `V4L2_MEMORY_DMABUF', and to 0
if you don't. */
#undef HAVE_DECL_V4L2_MEMORY_DMABUF
/* Define to 1 if you have the declaration of `V4L2_MEMORY_MMAP', and to 0 if
you don't. */
#undef HAVE_DECL_V4L2_MEMORY_MMAP
/* Define to 1 if you have the declaration of `V4L2_MEMORY_OVERLAY', and to 0
if you don't. */
#undef HAVE_DECL_V4L2_MEMORY_OVERLAY
/* Define to 1 if you have the declaration of `V4L2_MEMORY_USERPTR', and to 0
if you don't. */
#undef HAVE_DECL_V4L2_MEMORY_USERPTR
/* Define to 1 if you have the declaration of `V4L2_PRIORITY_BACKGROUND', and
to 0 if you don't. */
#undef HAVE_DECL_V4L2_PRIORITY_BACKGROUND
/* Define to 1 if you have the declaration of `V4L2_PRIORITY_INTERACTIVE', and
to 0 if you don't. */
#undef HAVE_DECL_V4L2_PRIORITY_INTERACTIVE
/* Define to 1 if you have the declaration of `V4L2_PRIORITY_RECORD', and to 0
if you don't. */
#undef HAVE_DECL_V4L2_PRIORITY_RECORD
/* Define to 1 if you have the declaration of `V4L2_PRIORITY_UNSET', and to 0
if you don't. */
#undef HAVE_DECL_V4L2_PRIORITY_UNSET
/* Define to 1 if you have the declaration of `V4L2_TUNER_ANALOG_TV', and to 0
if you don't. */
#undef HAVE_DECL_V4L2_TUNER_ANALOG_TV
/* Define to 1 if you have the declaration of `V4L2_TUNER_DIGITAL_TV', and to
0 if you don't. */
#undef HAVE_DECL_V4L2_TUNER_DIGITAL_TV
/* Define to 1 if you have the declaration of `V4L2_TUNER_RADIO', and to 0 if
you don't. */
#undef HAVE_DECL_V4L2_TUNER_RADIO
/* Define to 1 if you have the declaration of `VM_BLOCK_DUMP', and to 0 if you
don't. */
#undef HAVE_DECL_VM_BLOCK_DUMP
/* Define to 1 if you have the declaration of `VM_HUGETLB_GROUP', and to 0 if
you don't. */
#undef HAVE_DECL_VM_HUGETLB_GROUP
/* Define to 1 if you have the declaration of `VM_LAPTOP_MODE', and to 0 if
you don't. */
#undef HAVE_DECL_VM_LAPTOP_MODE
/* Define to 1 if you have the declaration of `VM_LEGACY_VA_LAYOUT', and to 0
if you don't. */
#undef HAVE_DECL_VM_LEGACY_VA_LAYOUT
/* Define to 1 if you have the declaration of `VM_MAX_MAP_COUNT', and to 0 if
you don't. */
#undef HAVE_DECL_VM_MAX_MAP_COUNT
/* Define to 1 if you have the declaration of `VM_SWAP_TOKEN_TIMEOUT', and to
0 if you don't. */
#undef HAVE_DECL_VM_SWAP_TOKEN_TIMEOUT
/* Define to 1 if you have the declaration of `VM_VFS_CACHE_PRESSURE', and to
0 if you don't. */
#undef HAVE_DECL_VM_VFS_CACHE_PRESSURE
/* Define to 1 if you have the <demangle.h> header file. */
#undef HAVE_DEMANGLE_H
/* Define to 1 if the system provides dladdr */
#undef HAVE_DLADDR
/* Define to 1 if you have the <elfutils/libdwfl.h> header file. */
#undef HAVE_ELFUTILS_LIBDWFL_H
/* Define to 1 if you have the <elf.h> header file. */
#undef HAVE_ELF_H
/* Define to 1 if you have the `fallocate' function. */
#undef HAVE_FALLOCATE
/* Define to 1 if you have the `fanotify_mark' function. */
#undef HAVE_FANOTIFY_MARK
/* Define to 1 if you have the `fopen64' function. */
#undef HAVE_FOPEN64
/* Define to 1 if you have the `fork' function. */
#undef HAVE_FORK
/* Define to 1 if you have the `fputs_unlocked' function. */
#undef HAVE_FPUTS_UNLOCKED
/* Define to 1 if you have the `fstatat' function. */
#undef HAVE_FSTATAT
/* Define to 1 if you have the `ftruncate' function. */
#undef HAVE_FTRUNCATE
/* Define to 1 if you have the `futimens' function. */
#undef HAVE_FUTIMENS
/* Define to 1 if you have the <gnu_stubs> header file. */
#undef HAVE_GNU_STUBS
/* Define to 1 if you have the <gnu/stubs-32.h> header file. */
#undef HAVE_GNU_STUBS_32_H
/* Define to 1 if you have the <gnu/stubs-x32.h> header file. */
#undef HAVE_GNU_STUBS_X32_H
/* Define to 1 if you have the <iconv.h> header file. */
#undef HAVE_ICONV_H
/* Define to 1 if you have the `iconv_open' function. */
#undef HAVE_ICONV_OPEN
/* Define to 1 if you have the `if_indextoname' function. */
#undef HAVE_IF_INDEXTONAME
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Define to 1 if you have the <libiberty/demangle.h> header file. */
#undef HAVE_LIBIBERTY_DEMANGLE_H
/* Define to 1 if you have the <libunwind-ptrace.h> header file. */
#undef HAVE_LIBUNWIND_PTRACE_H
/* Define to 1 if you have the <linux/bpf.h> header file. */
#undef HAVE_LINUX_BPF_H
/* Define to 1 if you have the <linux/bsg.h> header file. */
#undef HAVE_LINUX_BSG_H
/* Define to 1 if you have the <linux/btrfs.h> header file. */
#undef HAVE_LINUX_BTRFS_H
/* Define to 1 if you have the <linux/cryptouser.h> header file. */
#undef HAVE_LINUX_CRYPTOUSER_H
/* Define to 1 if you have the <linux/dm-ioctl.h> header file. */
#undef HAVE_LINUX_DM_IOCTL_H
/* Define to 1 if you have the <linux/dqblk_xfs.h> header file. */
#undef HAVE_LINUX_DQBLK_XFS_H
/* Define to 1 if you have the <linux/falloc.h> header file. */
#undef HAVE_LINUX_FALLOC_H
/* Define to 1 if you have the <linux/fib_rules.h> header file. */
#undef HAVE_LINUX_FIB_RULES_H
/* Define to 1 if you have the <linux/fiemap.h> header file. */
#undef HAVE_LINUX_FIEMAP_H
/* Define to 1 if you have the <linux/genetlink.h> header file. */
#undef HAVE_LINUX_GENETLINK_H
/* Define to 1 if you have the <linux/hiddev.h> header file. */
#undef HAVE_LINUX_HIDDEV_H
/* Define to 1 if you have the <linux/if_addr.h> header file. */
#undef HAVE_LINUX_IF_ADDR_H
/* Define to 1 if you have the <linux/if_link.h> header file. */
#undef HAVE_LINUX_IF_LINK_H
/* Define to 1 if you have the <linux/input.h> header file. */
#undef HAVE_LINUX_INPUT_H
/* Define to 1 if you have the <linux/ipc.h> header file. */
#undef HAVE_LINUX_IPC_H
/* Define to 1 if you have the <linux/ip_vs.h> header file. */
#undef HAVE_LINUX_IP_VS_H
/* Define to 1 if you have the <linux/kcmp.h> header file. */
#undef HAVE_LINUX_KCMP_H
/* Define to 1 if you have the <linux/kvm.h> header file. */
#undef HAVE_LINUX_KVM_H
/* Define to 1 if you have the <linux/memfd.h> header file. */
#undef HAVE_LINUX_MEMFD_H
/* Define to 1 if you have the <linux/mmtimer.h> header file. */
#undef HAVE_LINUX_MMTIMER_H
/* Define to 1 if you have the <linux/mqueue.h> header file. */
#undef HAVE_LINUX_MQUEUE_H
/* Define to 1 if you have the <linux/msg.h> header file. */
#undef HAVE_LINUX_MSG_H
/* Define to 1 if you have the <linux/neighbour.h> header file. */
#undef HAVE_LINUX_NEIGHBOUR_H
/* Define to 1 if you have the <linux/netfilter_arp/arp_tables.h> header file.
*/
#undef HAVE_LINUX_NETFILTER_ARP_ARP_TABLES_H
/* Define to 1 if you have the <linux/netfilter_bridge/ebtables.h> header
file. */
#undef HAVE_LINUX_NETFILTER_BRIDGE_EBTABLES_H
/* Define to 1 if you have the <linux/netfilter/ipset/ip_set.h> header file.
*/
#undef HAVE_LINUX_NETFILTER_IPSET_IP_SET_H
/* 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/nfnetlink_acct.h> header file.
*/
#undef HAVE_LINUX_NETFILTER_NFNETLINK_ACCT_H
/* Define to 1 if you have the <linux/netfilter/nfnetlink_conntrack.h> header
file. */
#undef HAVE_LINUX_NETFILTER_NFNETLINK_CONNTRACK_H
/* Define to 1 if you have the <linux/netfilter/nfnetlink_cthelper.h> header
file. */
#undef HAVE_LINUX_NETFILTER_NFNETLINK_CTHELPER_H
/* Define to 1 if you have the <linux/netfilter/nfnetlink_cttimeout.h> header
file. */
#undef HAVE_LINUX_NETFILTER_NFNETLINK_CTTIMEOUT_H
/* Define to 1 if you have the <linux/netfilter/nfnetlink.h> header file. */
#undef HAVE_LINUX_NETFILTER_NFNETLINK_H
/* Define to 1 if you have the <linux/netfilter/nfnetlink_log.h> header file.
*/
#undef HAVE_LINUX_NETFILTER_NFNETLINK_LOG_H
/* Define to 1 if you have the <linux/netfilter/nfnetlink_queue.h> header
file. */
#undef HAVE_LINUX_NETFILTER_NFNETLINK_QUEUE_H
/* Define to 1 if you have the <linux/netfilter/nf_tables_compat.h> header
file. */
#undef HAVE_LINUX_NETFILTER_NF_TABLES_COMPAT_H
/* Define to 1 if you have the <linux/netfilter/nf_tables.h> header file. */
#undef HAVE_LINUX_NETFILTER_NF_TABLES_H
/* Define to 1 if you have the <linux/netfilter/xt_osf.h> header file. */
#undef HAVE_LINUX_NETFILTER_XT_OSF_H
/* Define to 1 if you have the <linux/nsfs.h> header file. */
#undef HAVE_LINUX_NSFS_H
/* Define to 1 if you have the <linux/perf_event.h> header file. */
#undef HAVE_LINUX_PERF_EVENT_H
/* Define to 1 if you have the <linux/quota.h> header file. */
#undef HAVE_LINUX_QUOTA_H
/* Define to 1 if you have the <linux/seccomp.h> header file. */
#undef HAVE_LINUX_SECCOMP_H
/* Define to 1 if you have the <linux/securebits.h> header file. */
#undef HAVE_LINUX_SECUREBITS_H
/* Define to 1 if you have the <linux/sem.h> header file. */
#undef HAVE_LINUX_SEM_H
/* Define to 1 if you have the <linux/shm.h> header file. */
#undef HAVE_LINUX_SHM_H
/* Define to 1 if you have the <linux/userfaultfd.h> header file. */
#undef HAVE_LINUX_USERFAULTFD_H
/* Define to 1 if you have the <linux/utsname.h> header file. */
#undef HAVE_LINUX_UTSNAME_H
/* Define to 1 if you have mpers_name mpers support */
#undef HAVE_M32_MPERS
/* Define to 1 if m32 has the type 'struct stat'. */
#undef HAVE_M32_STRUCT_STAT
/* Define to 1 if m32 has the type 'struct stat64'. */
#undef HAVE_M32_STRUCT_STAT64
/* Define to 1 if 'st_mtime_nsec' is a member of m32 'struct stat64'. */
#undef HAVE_M32_STRUCT_STAT64_ST_MTIME_NSEC
/* Define to 1 if 'st_mtime_nsec' is a member of m32 'struct stat'. */
#undef HAVE_M32_STRUCT_STAT_ST_MTIME_NSEC
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define to 1 if you have the <mqueue.h> header file. */
#undef HAVE_MQUEUE_H
/* Define to 1 if you have mpers_name mpers support */
#undef HAVE_MX32_MPERS
/* Define to 1 if mx32 has the type 'struct stat'. */
#undef HAVE_MX32_STRUCT_STAT
/* Define to 1 if mx32 has the type 'struct stat64'. */
#undef HAVE_MX32_STRUCT_STAT64
/* Define to 1 if 'st_mtime_nsec' is a member of mx32 'struct stat64'. */
#undef HAVE_MX32_STRUCT_STAT64_ST_MTIME_NSEC
/* Define to 1 if 'st_mtime_nsec' is a member of mx32 'struct stat'. */
#undef HAVE_MX32_STRUCT_STAT_ST_MTIME_NSEC
/* Define to 1 if you have the <netinet/sctp.h> header file. */
#undef HAVE_NETINET_SCTP_H
/* Define to 1 if you have the <netinet/tcp.h> header file. */
#undef HAVE_NETINET_TCP_H
/* Define to 1 if you have the <netinet/udp.h> header file. */
#undef HAVE_NETINET_UDP_H
/* Define to 1 if you have the <netipx/ipx.h> header file. */
#undef HAVE_NETIPX_IPX_H
/* Define to 1 if you have the `open64' function. */
#undef HAVE_OPEN64
/* Define to 1 if you have the <paths.h> header file. */
#undef HAVE_PATHS_H
/* Define to 1 if you have the `prctl' function. */
#undef HAVE_PRCTL
/* Define to 1 if you have the `preadv' function. */
#undef HAVE_PREADV
/* Define to 1 if you have the `process_vm_readv' function. */
#undef HAVE_PROCESS_VM_READV
/* Define to 1 if the system provides program_invocation_name variable */
#undef HAVE_PROGRAM_INVOCATION_NAME
/* Define to 1 if you have the `pwritev' function. */
#undef HAVE_PWRITEV
/* Define to 1 if you have the `readahead' function. */
#undef HAVE_READAHEAD
/* Define to 1 if the system has the type `s390_compat_regs'. */
#undef HAVE_S390_COMPAT_REGS
/* Define to 1 if you have the <scsi/sg.h> header file. */
#undef HAVE_SCSI_SG_H
/* Define to 1 if `si_overrun' is a member of `siginfo_t'. */
#undef HAVE_SIGINFO_T_SI_OVERRUN
/* Define to 1 if `si_syscall' is a member of `siginfo_t'. */
#undef HAVE_SIGINFO_T_SI_SYSCALL
/* Define to 1 if `si_timerid' is a member of `siginfo_t'. */
#undef HAVE_SIGINFO_T_SI_TIMERID
/* Define to 1 if you have the `signalfd' function. */
#undef HAVE_SIGNALFD
/* Define to 1 if the system has the type `sig_atomic_t'. */
#undef HAVE_SIG_ATOMIC_T
/* Define to 1 if the system provides static_assert */
#undef HAVE_STATIC_ASSERT
/* 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 `stpcpy' function. */
#undef HAVE_STPCPY
/* Define to 1 if you have the `strerror' function. */
#undef HAVE_STRERROR
/* 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 `strndup' function. */
#undef HAVE_STRNDUP