-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.h.in
1011 lines (713 loc) · 26.6 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. */
#ifndef _REENTRANT
# define _REENTRANT
#endif
/* Define if building universal (internal helper macro) */
#undef AC_APPLE_UNIVERSAL_BUILD
/* Define to 1 to allow running VLC as root (uid 0). */
#undef ALLOW_RUN_AS_ROOT
/* Define to 1 if 3D Now! inline assembly is available. */
#undef CAN_COMPILE_3DNOW
/* Define to 1 if AltiVec inline assembly is available. */
#undef CAN_COMPILE_ALTIVEC
/* Define to 1 inline MMX assembly is available. */
#undef CAN_COMPILE_MMX
/* Define to 1 if MMX EXT inline assembly is available. */
#undef CAN_COMPILE_MMXEXT
/* Define to 1 if SSE inline assembly is available. */
#undef CAN_COMPILE_SSE
/* Define to 1 if SSE2 inline assembly is available. */
#undef CAN_COMPILE_SSE2
/* Define to 1 if SSE3 inline assembly is available. */
#undef CAN_COMPILE_SSE3
/* Define to 1 if SSE4A inline assembly is available. */
#undef CAN_COMPILE_SSE4A
/* Define to 1 if SSE4_1 inline assembly is available. */
#undef CAN_COMPILE_SSE4_1
/* Define to 1 if SSE4_2 inline assembly is available. */
#undef CAN_COMPILE_SSE4_2
/* Define to 1 if SSSE3 inline assembly is available. */
#undef CAN_COMPILE_SSSE3
/* The ./configure command line */
#undef CONFIGURE_LINE
/* Copyright string */
#undef COPYRIGHT_MESSAGE
/* The copyright years */
#undef COPYRIGHT_YEARS
/* Default font family */
#undef DEFAULT_FAMILY
/* Default font */
#undef DEFAULT_FONT_FILE
/* Default monospace font family */
#undef DEFAULT_MONOSPACE_FAMILY
/* Default monospace font */
#undef DEFAULT_MONOSPACE_FONT_FILE
/* Binary specific version */
#undef DISTRO_VERSION
/* Define if you want the addons manager modules */
#undef ENABLE_ADDONMANAGERMODULES
/* Define to 1 if translation of program messages to the user's native
language is requested. */
#undef ENABLE_NLS
/* Define to 1 for stream output support. */
#undef ENABLE_SOUT
/* Define if you want the VideoLAN manager support */
#undef ENABLE_VLM
/* Define to 1 if you have the <a52dec/a52.h> header file. */
#undef HAVE_A52DEC_A52_H
/* Define to 1 if you have the `accept4' function. */
#undef HAVE_ACCEPT4
/* Define to 1 if you have the `aligned_alloc' function. */
#undef HAVE_ALIGNED_ALLOC
/* Define to 1 if you have the <altivec.h> header file. */
#undef HAVE_ALTIVEC_H
/* Define to 1 if you have the <AMF/components/HQScaler.h> header file. */
#undef HAVE_AMF_COMPONENTS_HQSCALER_H
/* Define to 1 if you have the <AMF/components/VQEnhancer.h> header file. */
#undef HAVE_AMF_COMPONENTS_VQENHANCER_H
/* Define to 1 if you have the <AMF/core/PropertyStorage.h> header file. */
#undef HAVE_AMF_CORE_PROPERTYSTORAGE_H
/* AMD VQ Enhancer supported */
#undef HAVE_AMF_ENHANCER
/* AMD HQScaler supported */
#undef HAVE_AMF_SCALER
/* Define to 1 if you have the <ApplicationServices/ApplicationServices.h>
header file. */
#undef HAVE_APPLICATIONSERVICES_APPLICATIONSERVICES_H
/* Define if libaribb24 is available. */
#undef HAVE_ARIBB24
/* Define to 1 if you have the <arpa/inet.h> header file. */
#undef HAVE_ARPA_INET_H
/* Define to 1 if you have asprintf function */
#undef HAVE_ASPRINTF
/* Define to 1 if you have the `atof' function. */
#undef HAVE_ATOF
/* Define to 1 if you have the `atoll' function. */
#undef HAVE_ATOLL
/* Support for __attribute__((packed)) for structs */
#undef HAVE_ATTRIBUTE_PACKED
/* Define to 1 if you have the <AudioToolbox/AudioToolbox.h> header file. */
#undef HAVE_AUDIOTOOLBOX_AUDIOTOOLBOX_H
/* Define to 1 if you have the <audio_io.h> header file. */
#undef HAVE_AUDIO_IO_H
/* Define if the d3d11va module is built */
#undef HAVE_AVCODEC_D3D11VA
/* Define to 1 if you have the `backtrace' function. */
#undef HAVE_BACKTRACE
/* Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the
CoreFoundation framework. */
#undef HAVE_CFLOCALECOPYCURRENT
/* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in
the CoreFoundation framework. */
#undef HAVE_CFPREFERENCESCOPYAPPVALUE
/* Define if CSS engine is built */
#undef HAVE_CSS
/* define if the compiler supports basic C++11 syntax */
#undef HAVE_CXX11
/* Define to 1 if C++ headers define locale_t */
#undef HAVE_CXX_LOCALE_T
/* Define to 1 if you have the <d3d11_4.h> header file. */
#undef HAVE_D3D11_4_H
/* Define to 1 if you have the <d3d11.h> header file. */
#undef HAVE_D3D11_H
/* Define to 1 if the system has the type
`D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS'. */
#undef HAVE_D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS
/* Define to 1 if you have the <d3d9.h> header file. */
#undef HAVE_D3D9_H
/* Define to 1 if you have the <d3dx9effect.h> header file. */
#undef HAVE_D3DX9EFFECT_H
/* Define to 1 if you have the `daemon' function. */
#undef HAVE_DAEMON
/* Define if the GNU dcgettext() function is already present or preinstalled.
*/
#undef HAVE_DCGETTEXT
/* Define to 1 if you have the <ddraw.h> header file. */
#undef HAVE_DDRAW_H
/* Define to 1 if you have the <DeckLinkAPIDispatch.cpp> header file. */
#undef HAVE_DECKLINKAPIDISPATCH_CPP
/* Define to 1 if you have the `dirfd' function. */
#undef HAVE_DIRFD
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define to 1 if you have the <dxgi1_6.h> header file. */
#undef HAVE_DXGI1_6_H
/* Define to 1 if you have the <dxgidebug.h> header file. */
#undef HAVE_DXGIDEBUG_H
/* Define to 1 if you have the <dxva2api.h> header file. */
#undef HAVE_DXVA2API_H
/* Define to 1 if evas is enabled. */
#undef HAVE_EVAS
/* Define to 1 if you have the `eventfd' function. */
#undef HAVE_EVENTFD
/* Define to 1 if you have the <execinfo.h> header file. */
#undef HAVE_EXECINFO_H
/* Define to 1 if you have the `fcntl' function. */
#undef HAVE_FCNTL
/* Define to 1 if you have the `fdopendir' function. */
#undef HAVE_FDOPENDIR
/* Define to 1 if you have the <features.h> header file. */
#undef HAVE_FEATURES_H
/* Define to 1 if you have the `ffsll' function. */
#undef HAVE_FFSLL
/* Define to 1 if you have the `flock' function. */
#undef HAVE_FLOCK
/* Define to 1 if you have the `flockfile' function. */
#undef HAVE_FLOCKFILE
/* Define to 1 if you have the <fluidlite.h> header file. */
#undef HAVE_FLUIDLITE_H
/* Define to 1 if you have the <fontconfig/fontconfig.h> header file. */
#undef HAVE_FONTCONFIG_FONTCONFIG_H
/* Define to 1 if you have the `fork' function. */
#undef HAVE_FORK
/* Define to 1 if you have the `fstatvfs' function. */
#undef HAVE_FSTATVFS
/* Define to 1 if you have the `fsync' function. */
#undef HAVE_FSYNC
/* Defined if having gcrypt */
#undef HAVE_GCRYPT
/* Define to 1 if you have the `getdelim' function. */
#undef HAVE_GETDELIM
/* Define to 1 if you have the `getenv' function. */
#undef HAVE_GETENV
/* Define to 1 if you have the `getmntent_r' function. */
#undef HAVE_GETMNTENT_R
/* Define to 1 if you have the <getopt.h> header file. */
#undef HAVE_GETOPT_H
/* Define to 1 if you have the `getpid' function. */
#undef HAVE_GETPID
/* Define to 1 if you have the `getpwuid_r' function. */
#undef HAVE_GETPWUID_R
/* Define if the GNU gettext() function is already present or preinstalled. */
#undef HAVE_GETTEXT
/* Define to 1 if you have the `gettimeofday' function. */
#undef HAVE_GETTIMEOFDAY
/* Defined if having OpenGL */
#undef HAVE_GL
/* Define to 1 if you have the <GL/wglew.h> header file. */
#undef HAVE_GL_WGLEW_H
/* Define to 1 if you have gmtime_r function */
#undef HAVE_GMTIME_R
/* Define if you have the iconv() function and it works. */
#undef HAVE_ICONV
/* Define to 1 if the system has the type `ID3D11VideoDecoder'. */
#undef HAVE_ID3D11VIDEODECODER
/* Define to 1 if you have GNU libidn. */
#undef HAVE_IDN
/* Define to 1 if you have the `if_nameindex' function. */
#undef HAVE_IF_NAMEINDEX
/* Define to 1 if you have if_nametoindex function */
#undef HAVE_IF_NAMETOINDEX
/* Define to 1 if you have inet_pton function */
#undef HAVE_INET_PTON
/* Define to 1 if you have the <interface/mmal/mmal.h> header file. */
#undef HAVE_INTERFACE_MMAL_MMAL_H
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* For FreeBSD VCD support */
#undef HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H
/* Define to 1 if you have the `isatty' function. */
#undef HAVE_ISATTY
/* Define to 1 if the system has the type `ISpObjectToken'. */
#undef HAVE_ISPOBJECTTOKEN
/* Define to 1 if you have the <jpeglib.h> header file. */
#undef HAVE_JPEGLIB_H
/* Define to 1 if you have the <kai.h> header file. */
#undef HAVE_KAI_H
/* Define to 1 if you have the <kva.h> header file. */
#undef HAVE_KVA_H
/* Define to 1 if you have the <lauxlib.h> header file. */
#undef HAVE_LAUXLIB_H
/* Define to 1 if you have the `lfind' function. */
#undef HAVE_LFIND
/* Define to 1 if you have the anl library */
#undef HAVE_LIBANL
/* Define to 1 if you have the <libavcodec/avcodec.h> header file. */
#undef HAVE_LIBAVCODEC_AVCODEC_H
/* Define to 1 if you have the <libavcodec/d3d11va.h> header file. */
#undef HAVE_LIBAVCODEC_D3D11VA_H
/* Define to 1 if you have the <libavcodec/dxva2.h> header file. */
#undef HAVE_LIBAVCODEC_DXVA2_H
/* Define to 1 if you have the <libavcodec/vaapi.h> header file. */
#undef HAVE_LIBAVCODEC_VAAPI_H
/* Define to 1 if you have the <libavformat/avformat.h> header file. */
#undef HAVE_LIBAVFORMAT_AVFORMAT_H
/* Define to 1 if you have the <libavformat/avio.h> header file. */
#undef HAVE_LIBAVFORMAT_AVIO_H
/* Define to 1 if you have the <libavutil/avutil.h> header file. */
#undef HAVE_LIBAVUTIL_AVUTIL_H
/* Define to 1 if you have the <libbpg.h> header file. */
#undef HAVE_LIBBPG_H
/* Define this if you have libcddb installed */
#undef HAVE_LIBCDDB
/* Define to 1 if you have the <libcrystalhd/bc_drv_if.h> header file. */
#undef HAVE_LIBCRYSTALHD_BC_DRV_IF_H
/* Define to 1 if you have the <libcrystalhd/bc_dts_defs.h> header file. */
#undef HAVE_LIBCRYSTALHD_BC_DTS_DEFS_H
/* Define to 1 if you have the `mingw32' library (-lmingw32). */
#undef HAVE_LIBMINGW32
/* Define to 1 if libplacebo is enabled. */
#undef HAVE_LIBPLACEBO
/* Define to 1 if you have the <libswscale/swscale.h> header file. */
#undef HAVE_LIBSWSCALE_SWSCALE_H
/* Define to 1 if you have the <libtar.h> header file. */
#undef HAVE_LIBTAR_H
/* Define to 1 if you have the libvorbis */
#undef HAVE_LIBVORBIS
/* Define to 1 if you have the <linux/dccp.h> header file. */
#undef HAVE_LINUX_DCCP_H
/* Define to 1 if you have the <linux/magic.h> header file. */
#undef HAVE_LINUX_MAGIC_H
/* Define to 1 if you have the <linux/videodev2.h> header file. */
#undef HAVE_LINUX_VIDEODEV2_H
/* Define to 1 if you have the `lldiv' function. */
#undef HAVE_LLDIV
/* Define to 1 if you have localtime_r function */
#undef HAVE_LOCALTIME_R
/* Define to 1 if you have the lrintf function */
#undef HAVE_LRINTF
/* Define to 1 if you have the `lstat' function. */
#undef HAVE_LSTAT
/* Define to 1 if you have the <lualib.h> header file. */
#undef HAVE_LUALIB_H
/* Define to 1 if you have the <lua.h> header file. */
#undef HAVE_LUA_H
/* Define to 1 if you have the <mad.h> header file. */
#undef HAVE_MAD_H
/* Define to 1 if the system has the type `max_align_t'. */
#undef HAVE_MAX_ALIGN_T
/* Define to 1 if you have the `memalign' function. */
#undef HAVE_MEMALIGN
/* Define to 1 if you have the `memrchr' function. */
#undef HAVE_MEMRCHR
/* Define to 1 if you have the <minix/config.h> header file. */
#undef HAVE_MINIX_CONFIG_H
/* Define to 1 if you have the `mkostemp' function. */
#undef HAVE_MKOSTEMP
/* Define to 1 if you have the `mmap' function. */
#undef HAVE_MMAP
/* Define to 1 if MMX intrinsics are available. */
#undef HAVE_MMX_INTRINSICS
/* Define to 1 if you have the <mpcdec/mpcdec.h> header file. */
#undef HAVE_MPCDEC_MPCDEC_H
/* Define to 1 if you have the <mpc/mpcdec.h> header file. */
#undef HAVE_MPC_MPCDEC_H
/* Define to 1 if you have the NANF function */
#undef HAVE_NANF
/* Define to 1 if you have the <neaacdec.h> header file. */
#undef HAVE_NEAACDEC_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/udplite.h> header file. */
#undef HAVE_NETINET_UDPLITE_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 `newlocale' function. */
#undef HAVE_NEWLOCALE
/* Define to 1 if you have the `nrand48' function. */
#undef HAVE_NRAND48
/* Define to 1 if you have the `openat' function. */
#undef HAVE_OPENAT
/* Define to 1 if you have the `open_memstream' function. */
#undef HAVE_OPEN_MEMSTREAM
/* Define to 1 if you have the `pathconf' function. */
#undef HAVE_PATHCONF
/* Define to 1 if you have the `pipe2' function. */
#undef HAVE_PIPE2
/* Define to 1 if you have the <png.h> header file. */
#undef HAVE_PNG_H
/* Define to 1 if you have the `poll' function. */
#undef HAVE_POLL
/* Define to 1 if you have the `posix_fadvise' function. */
#undef HAVE_POSIX_FADVISE
/* Define to 1 if you have the `posix_madvise' function. */
#undef HAVE_POSIX_MADVISE
/* Define to 1 if you have the `posix_memalign' function. */
#undef HAVE_POSIX_MEMALIGN
/* Define to 1 if you have the <postproc/postprocess.h> header file. */
#undef HAVE_POSTPROC_POSTPROCESS_H
/* Define to 1 if you have the `pread' function. */
#undef HAVE_PREAD
/* Define to 1 if the system has the type
`PROCESS_MITIGATION_IMAGE_LOAD_POLICY'. */
#undef HAVE_PROCESS_MITIGATION_IMAGE_LOAD_POLICY
/* Define to 1 if using libprojectM 2.x */
#undef HAVE_PROJECTM2
/* Define to 1 if you have the <pthread.h> header file. */
#undef HAVE_PTHREAD_H
/* Define to 1 if you have realpath function */
#undef HAVE_REALPATH
/* Define to 1 if you have the `recvmmsg' function. */
#undef HAVE_RECVMMSG
/* Define to 1 if you have the `recvmsg' function. */
#undef HAVE_RECVMSG
/* Define to 1 if you have the `rewind' function. */
#undef HAVE_REWIND
/* Define to 1 if you have the `sched_getaffinity' function. */
#undef HAVE_SCHED_GETAFFINITY
/* For NetBSD VCD support */
#undef HAVE_SCSIREQ_IN_SYS_SCSIIO_H
/* Define to 1 if you have the <search.h> header file. */
#undef HAVE_SEARCH_H
/* Define to 1 if you have the `sendmsg' function. */
#undef HAVE_SENDMSG
/* Define to 1 if you have the `setenv' function. */
#undef HAVE_SETENV
/* Define to 1 if you have the `setlocale' function. */
#undef HAVE_SETLOCALE
/* Define to 1 if you have the sincos function. */
#undef HAVE_SINCOS
/* Define to 1 if you have the <SLES/OpenSLES.h> header file. */
#undef HAVE_SLES_OPENSLES_H
/* Define to 1 if you have the <soundcard.h> header file. */
#undef HAVE_SOUNDCARD_H
/* Define to 1 if sparkle is enabled. */
#undef HAVE_SPARKLE
/* Define to 1 if SSE2 intrinsics are available. */
#undef HAVE_SSE2_INTRINSICS
/* Define to 1 if <assert.h> defines 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 <stdio.h> header file. */
#undef HAVE_STDIO_H
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
/* Define to 1 if you have the `strcasecmp' function. */
#undef HAVE_STRCASECMP
/* Define to 1 if you have the `strcasestr' function. */
#undef HAVE_STRCASESTR
/* Define to 1 if you have the `strcoll' function and it is properly defined.
*/
#undef HAVE_STRCOLL
/* Define to 1 if you have the `strdup' function. */
#undef HAVE_STRDUP
/* For dvdnav demux support */
#undef HAVE_STREAM_CB_IN_DVDNAV_H
/* Define to 1 if you have the `stricmp' function. */
#undef HAVE_STRICMP
/* 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 `strlcpy' function. */
#undef HAVE_STRLCPY
/* Define to 1 if you have the `strndup' function. */
#undef HAVE_STRNDUP
/* Define to 1 if you have the `strnicmp' function. */
#undef HAVE_STRNICMP
/* Define to 1 if you have the `strnlen' function. */
#undef HAVE_STRNLEN
/* Define to 1 if you have the `strnstr' function. */
#undef HAVE_STRNSTR
/* Define to 1 if you have the `strptime' function. */
#undef HAVE_STRPTIME
/* Define to 1 if you have the `strsep' function. */
#undef HAVE_STRSEP
/* Define to 1 if you have the `strtof' function. */
#undef HAVE_STRTOF
/* Define to 1 if you have the `strtok_r' function. */
#undef HAVE_STRTOK_R
/* Define to 1 if you have the `strtoll' function. */
#undef HAVE_STRTOLL
/* Define to 1 if the system has the type `struct if_nameindex'. */
#undef HAVE_STRUCT_IF_NAMEINDEX
/* Define to 1 if the system has the type `struct pollfd'. */
#undef HAVE_STRUCT_POLLFD
/* Define to 1 if the system has the type `struct timespec'. */
#undef HAVE_STRUCT_TIMESPEC
/* Define to 1 if you have the `strverscmp' function. */
#undef HAVE_STRVERSCMP
/* Define to 1 if you have the `swab' function. */
#undef HAVE_SWAB
/* Define to 1 if you have the <sys/eventfd.h> header file. */
#undef HAVE_SYS_EVENTFD_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/param.h> header file. */
#undef HAVE_SYS_PARAM_H
/* Define to 1 if you have the <sys/shm.h> header file. */
#undef HAVE_SYS_SHM_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/soundcard.h> header file. */
#undef HAVE_SYS_SOUNDCARD_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/types.h> header file. */
#undef HAVE_SYS_TYPES_H
/* Define to 1 if you have the <sys/uio.h> header file. */
#undef HAVE_SYS_UIO_H
/* Define to 1 if you have the <sys/videoio.h> header file. */
#undef HAVE_SYS_VIDEOIO_H
/* Define to 1 if you have the `tdestroy' function. */
#undef HAVE_TDESTROY
/* Define to 1 if you have the `tfind' function. */
#undef HAVE_TFIND
/* Define to 1 if you have the <threads.h> header file. */
#undef HAVE_THREADS_H
/* Defined to 1 if C11 _Thread_local storage qualifier is supported */
#undef HAVE_THREAD_LOCAL
/* Define if libtiger is available. */
#undef HAVE_TIGER
/* Define to 1 if you have the `timegm' function. */
#undef HAVE_TIMEGM
/* Define to 1 if you have the `timespec_get' function. */
#undef HAVE_TIMESPEC_GET
/* Define to 1 if vlc is built against Tizen SDK */
#undef HAVE_TIZEN_SDK
/* Define to 1 if you have the <tremor/ivorbiscodec.h> header file. */
#undef HAVE_TREMOR_IVORBISCODEC_H
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define to 1 if you have the <unzip.h> header file. */
#undef HAVE_UNZIP_H
/* Define to 1 if you have the `uselocale' function. */
#undef HAVE_USELOCALE
/* Define to 1 if you have the <valgrind/valgrind.h> header file. */
#undef HAVE_VALGRIND_VALGRIND_H
/* Define to 1 if you have vasprintf function */
#undef HAVE_VASPRINTF
/* Define to 1 if you have the <VideoToolbox/VideoToolbox.h> header file. */
#undef HAVE_VIDEOTOOLBOX_VIDEOTOOLBOX_H
/* Define to 1 if you have the `vmsplice' function. */
#undef HAVE_VMSPLICE
/* Define to 1 if you have the <wchar.h> header file. */
#undef HAVE_WCHAR_H
/* Define to 1 if you have the <X11/Xlib.h> header file. */
#undef HAVE_X11_XLIB_H
/* Define to 1 if you have the <xlocale.h> header file. */
#undef HAVE_XLOCALE_H
/* Define to 1 if you have the <zlib.h> header file. */
#undef HAVE_ZLIB_H
/* Define to 1 if you have the `_lock_file' function. */
#undef HAVE__LOCK_FILE
/* Define as const if the declaration of iconv() needs const. */
#undef ICONV_CONST
/* Dynamic object extension */
#undef LIBEXT
/* Define to the sub-directory where libtool stores uninstalled libraries. */
#undef LT_OBJDIR
/* Define to 1 if debug code should NOT be compiled */
#undef NDEBUG
/* Define if you want to optimize memory usage over performance */
#undef OPTIMIZE_MEMORY
/* 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
/* version development string */
#undef PACKAGE_VERSION_DEV
/* version extra number */
#undef PACKAGE_VERSION_EXTRA
/* version major number */
#undef PACKAGE_VERSION_MAJOR
/* version minor number */
#undef PACKAGE_VERSION_MINOR
/* version revision number */
#undef PACKAGE_VERSION_REVISION
/* Define to 1 if all of the C90 standard headers exist (not just the ones
required in a freestanding environment). This macro is provided for
backward compatibility; new code need not use it. */
#undef STDC_HEADERS
/* Define to 1 for Unicode (Wide Chars) APIs. */
#undef UNICODE
/* Enable extensions on AIX 3, Interix. */
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
#endif
/* Enable general extensions on macOS. */
#ifndef _DARWIN_C_SOURCE
# undef _DARWIN_C_SOURCE
#endif
/* Enable general extensions on Solaris. */
#ifndef __EXTENSIONS__
# undef __EXTENSIONS__
#endif
/* Enable GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif
/* Enable X/Open compliant socket functions that do not require linking
with -lxnet on HP-UX 11.11. */
#ifndef _HPUX_ALT_XOPEN_SOCKET_API
# undef _HPUX_ALT_XOPEN_SOCKET_API
#endif
/* Identify the host operating system as Minix.
This macro does not affect the system headers' behavior.
A future release of Autoconf may stop defining this macro. */
#ifndef _MINIX
# undef _MINIX
#endif
/* Enable general extensions on NetBSD.
Enable NetBSD compatibility extensions on Minix. */
#ifndef _NETBSD_SOURCE
# undef _NETBSD_SOURCE
#endif
/* Enable OpenBSD compatibility extensions on NetBSD.
Oddly enough, this does nothing on OpenBSD. */
#ifndef _OPENBSD_SOURCE
# undef _OPENBSD_SOURCE
#endif
/* Define to 1 if needed for POSIX-compatible behavior. */
#ifndef _POSIX_SOURCE
# undef _POSIX_SOURCE
#endif
/* Define to 2 if needed for POSIX-compatible behavior. */
#ifndef _POSIX_1_SOURCE
# undef _POSIX_1_SOURCE
#endif
/* Enable POSIX-compatible threading on Solaris. */
#ifndef _POSIX_PTHREAD_SEMANTICS
# undef _POSIX_PTHREAD_SEMANTICS
#endif
/* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
# undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-1:2014. */
#ifndef __STDC_WANT_IEC_60559_BFP_EXT__
# undef __STDC_WANT_IEC_60559_BFP_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-2:2015. */
#ifndef __STDC_WANT_IEC_60559_DFP_EXT__
# undef __STDC_WANT_IEC_60559_DFP_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-4:2015. */
#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
# undef __STDC_WANT_IEC_60559_FUNCS_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-3:2015. */
#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
# undef __STDC_WANT_IEC_60559_TYPES_EXT__
#endif
/* Enable extensions specified by ISO/IEC TR 24731-2:2010. */
#ifndef __STDC_WANT_LIB_EXT2__
# undef __STDC_WANT_LIB_EXT2__
#endif
/* Enable extensions specified by ISO/IEC 24747:2009. */
#ifndef __STDC_WANT_MATH_SPEC_FUNCS__
# undef __STDC_WANT_MATH_SPEC_FUNCS__
#endif
/* Enable extensions on HP NonStop. */
#ifndef _TANDEM_SOURCE
# undef _TANDEM_SOURCE
#endif
/* Enable X/Open extensions. Define to 500 only if necessary
to make mbstate_t available. */
#ifndef _XOPEN_SOURCE
# undef _XOPEN_SOURCE
#endif
/* Version number of package */
#undef VERSION
/* Simple version string */
#undef VERSION_MESSAGE
/* compiler */
#undef VLC_COMPILER
/* user who ran configure */
#undef VLC_COMPILE_BY
/* host which ran configure */
#undef VLC_COMPILE_HOST
/* Define to 1 if you want to build for Windows Store apps */
#undef VLC_WINSTORE_APP
/* Define to limit the scope of <windows.h>. */
#undef WIN32_LEAN_AND_MEAN
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
#if defined AC_APPLE_UNIVERSAL_BUILD
# if defined __BIG_ENDIAN__
# define WORDS_BIGENDIAN 1
# endif
#else
# ifndef WORDS_BIGENDIAN
# undef WORDS_BIGENDIAN
# endif
#endif
/* Define to 1 if the X Window System is missing or not being used. */
#undef X_DISPLAY_MISSING
/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
`char[]'. */
#undef YYTEXT_POINTER
/* Define if the zvbi module is built */
#undef ZVBI_COMPILED
/* ISO C, POSIX, and 4.3BSD things. */
#undef _BSD_SOURCE
/* Define to 64 for large files support. */
#undef _FILE_OFFSET_BITS
/* Define to 2 to get glibc warnings. */
#undef _FORTIFY_SOURCE
/* Extensions to ISO C99 from ISO C11. */
#undef _ISOC11_SOURCE
/* Extensions to ISO C89 from ISO C99. */
#undef _ISOC99_SOURCE
/* IEEE Std 1003.1. */
#undef _POSIX_C_SOURCE
/* IEEE Std 1003.1. */
#undef _POSIX_SOURCE
/* ISO C, POSIX, and SVID things. */
#undef _SVID_SOURCE
/* Same as _REENTANT for some other OSes. */
#undef _THREAD_SAFE
/* Define to 1 for Unicode (Wide Chars) APIs. */
#undef _UNICODE
/* Define to '0x0600' for IE 6.0 (and shell) APIs. */
#undef _WIN32_IE
/* Define to '0x0502' for Windows XP SP2 APIs. */
#undef _WIN32_WINNT
/* POSIX and XPG 7th edition */
#undef _XOPEN_SOURCE
/* XPG things and X/Open Unix extensions. */
#undef _XOPEN_SOURCE_EXTENDED
/* Define within the LibVLC source code tree. */
#undef __LIBVLC__
/* Define to empty if `const' does not conform to ANSI C. */
#undef const
/* Alias fdatasync() to fsync() if missing. */
#undef fdatasync
/* 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 equivalent of the C99 'restrict' keyword, or to
nothing if this is not supported. Do not define if restrict is
supported only directly. */
#undef restrict
/* Work around a bug in older versions of Sun C++, which did not
#define __restrict__ or support _Restrict or __restrict__
even though the corresponding Sun C compiler ended up with
"#define restrict _Restrict" or "#define restrict __restrict__"
in the previous line. This workaround can be removed once
we assume Oracle Developer Studio 12.5 (2016) or later. */
#if defined __SUNPRO_CC && !defined __RESTRICT && !defined __restrict__
# define _Restrict
# define __restrict__
#endif
/* Define to `sockaddr' if <sys/socket.h> does not define. */
#undef sockaddr_storage
/* Define to `int' if <sys/socket.h> does not define. */
#undef socklen_t
/* Define to `sa_family' if <sys/socket.h> does not define. */
#undef ss_family
/* Define to `int' if <stddef.h> does not define. */
#undef ssize_t
#include <vlc_fixups.h>