-
Notifications
You must be signed in to change notification settings - Fork 257
/
XBMC.config
1109 lines (816 loc) · 29.8 KB
/
XBMC.config
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
// ADD PREDEFINED MACROS HERE!
#define TARGET_POSIX
#define TARGET_LINUX
#define _LINUX
#define TARGET_ANDROID
#define HAS_SDL_JOYSTICK
#define HAS_FILESYSTEM_SFTP
#define HAS_GLES 2
#define HAS_ALSA
#define HAS_LIBAMCODEC
#define HAS_VIDEO_PLAYBACK
#define HAS_EGL
#define HAS_RKSTF
#define HAVE_BREAKPAD
#define __USE_FILE_OFFSET64 1
/* xbmc/config.h. Generated from config.h.in by configure. */
/* xbmc/config.h.in. Generated from configure.in by autoheader. */
#pragma once
/* Define if building universal (internal helper macro) */
/* #undef AC_APPLE_UNIVERSAL_BUILD */
/* Define to 1 if the `closedir' function returns void instead of `int'. */
#define CLOSEDIR_VOID 1
/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
systems. This function is required for `alloca.c' support on those systems.
*/
/* #undef CRAY_STACKSEG_END */
/* Define to 1 if using `alloca.c'. */
/* #undef C_ALLOCA */
/* Define to 0 to disable ALSA support */
/* #undef HAS_ALSA */
/* using amlplayer */
/* #undef HAS_AMLPLAYER */
/* Define to 1 if your compiler supports the __sync_add_and_fetch() intrinsic.
*/
#define HAS_BUILTIN_SYNC_ADD_AND_FETCH 1
/* Define to 1 if your compiler supports the __sync_sub_and_fetch() intrinsic.
*/
#define HAS_BUILTIN_SYNC_SUB_AND_FETCH 1
/* Define to 1 if your compiler supports the __sync_val_compare_and_swap()
intrinsic. */
#define HAS_BUILTIN_SYNC_VAL_COMPARE_AND_SWAP 1
/* Define to 1 to have optical drive support */
/* #undef HAS_DVD_DRIVE */
/* Define if supporting EGL based GLES Framebuffer */
#define HAS_EGLGLES 1
/* Define to 1 if you have HAL installed */
/* #undef HAS_HAL */
/* using amcodec */
/* #undef HAS_LIBAMCODEC */
/* Whether to use libRTMP library. */
#define HAS_LIBRTMP 1
/* using libstagefright */
#define HAS_LIBSTAGEFRIGHT 1
/* using omxplayer */
/* #undef HAS_OMXPLAYER */
/* Whether to build skin touched. */
#define HAS_SKIN_TOUCHED 1
/* Define to 1 if you have the <afpfs-ng/libafpclient.h> header file. */
#define HAVE_AFPFS_NG_LIBAFPCLIENT_H 1
/* Define to 1 if you have the `alarm' function. */
#define HAVE_ALARM 1
/* Define to 1 if you have `alloca', as a function or macro. */
#define HAVE_ALLOCA 1
/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
*/
#define HAVE_ALLOCA_H 1
/* Define to 1 if you have the <arpa/inet.h> header file. */
#define HAVE_ARPA_INET_H 1
/* Define to 1 if you have the `atexit' function. */
#define HAVE_ATEXIT 1
/* Define to 1 if you have the <cdio/iso9660.h> header file. */
#define HAVE_CDIO_ISO9660_H 1
/* Define to 1 if your system has a working `chown' function. */
/* #undef HAVE_CHOWN */
/* "Define to 1 if dbus is installed" */
/* #undef HAVE_DBUS */
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
*/
#define HAVE_DIRENT_H 1
/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1
/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
/* #undef HAVE_DOPRNT */
/* Define to 1 if you have the `dup2' function. */
#define HAVE_DUP2 1
/* Define to 1 if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1
/* Define to 1 if you have the `fdatasync' function. */
#define HAVE_FDATASYNC 1
/* Define to 1 if you have the <float.h> header file. */
#define HAVE_FLOAT_H 1
/* Define to 1 if you have the `floor' function. */
/* #undef HAVE_FLOOR */
/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */
#define HAVE_FSEEKO 1
/* Define to 1 if you have the `fs_stat_dev' function. */
/* #undef HAVE_FS_STAT_DEV */
/* Define to 1 if you have the `ftime' function. */
#define HAVE_FTIME 1
/* Define to 1 if you have the `ftruncate' function. */
#define HAVE_FTRUNCATE 1
/* Define if we have gcrypt */
#define HAVE_GCRYPT 1
/* Define to 1 if you have the `getcwd' function. */
#define HAVE_GETCWD 1
/* Define to 1 if you have the `gethostbyaddr' function. */
#define HAVE_GETHOSTBYADDR 1
/* Define to 1 if you have the `gethostbyname' function. */
#define HAVE_GETHOSTBYNAME 1
/* Define to 1 if you have the `gethostname' function. */
#define HAVE_GETHOSTNAME 1
/* Define to 1 if you have the `getpagesize' function. */
/* #undef HAVE_GETPAGESIZE */
/* Define to 1 if you have the `getpass' function. */
/* #undef HAVE_GETPASS */
/* Define to 1 if you have the `gettimeofday' function. */
#define HAVE_GETTIMEOFDAY 1
/* Define to 1 if you have the `inet_ntoa' function. */
#define HAVE_INET_NTOA 1
/* Define if we have inotify */
#define HAVE_INOTIFY 1
/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
/* Define to 1 if you have the `lchown' function. */
#define HAVE_LCHOWN 1
/* Whether to use libafpclient library. */
#define HAVE_LIBAFPCLIENT 1
/* Define to 1 if you have the `android' library (-landroid). */
#define HAVE_LIBANDROID 1
/* Define to 1 if you have the `avahi-client' library (-lavahi-client). */
/* #undef HAVE_LIBAVAHI_CLIENT */
/* Define to 1 if you have the `avahi-common' library (-lavahi-common). */
/* #undef HAVE_LIBAVAHI_COMMON */
/* Define to 1 if you have the <libavcodec/avcodec.h> header file. */
/* #undef HAVE_LIBAVCODEC_AVCODEC_H */
/* Define to 1 if you have the <libavfilter/avfilter.h> header file. */
/* #undef HAVE_LIBAVFILTER_AVFILTER_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 <libavresample/avresample.h> header file. */
/* #undef HAVE_LIBAVRESAMPLE_AVRESAMPLE_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 `bluetooth' library (-lbluetooth). */
/* #undef HAVE_LIBBLUETOOTH */
/* System has libbluray library */
#define HAVE_LIBBLURAY 1
/* System has libbluray library with bdj support */
/* #undef HAVE_LIBBLURAY_BDJ */
/* Define to 1 if you have the `bz2' library (-lbz2). */
#define HAVE_LIBBZ2 1
/* Whether to use libcap library. */
/* #undef HAVE_LIBCAP */
/* "Define to 1 if libcec is installed" */
#define HAVE_LIBCEC 1
/* Define to 1 if you have the `crypto' library (-lcrypto). */
#define HAVE_LIBCRYPTO 1
/* Define to 1 if you have the 'Old Broadcom Crystal HD' library. */
/* #undef HAVE_LIBCRYSTALHD */
/* Define to 1 if you have the `EGL' library (-lEGL). */
#define HAVE_LIBEGL 1
/* Define to 1 if you have the `gcrypt' library (-lgcrypt). */
#define HAVE_LIBGCRYPT 1
/* Define to 1 if you have the `GL' library (-lGL). */
/* #undef HAVE_LIBGL */
/* Define to 1 if you have the `GLESv2' library (-lGLESv2). */
#define HAVE_LIBGLESV2 1
/* Define to 1 if you have the `GLEW' library (-lGLEW). */
/* #undef HAVE_LIBGLEW */
/* Define to 1 if you have the `GLU' library (-lGLU). */
/* #undef HAVE_LIBGLU */
/* Define to 1 if you have the `gpg-error' library (-lgpg-error). */
#define HAVE_LIBGPG_ERROR 1
/* Define to 1 if you have the `jasper' library (-ljasper). */
/* #undef HAVE_LIBJASPER */
/* Define to 1 if you have the `jnigraphics' library (-ljnigraphics). */
#define HAVE_LIBJNIGRAPHICS 1
/* Define to 1 if you have the `jpeg' library (-ljpeg). */
#define HAVE_LIBJPEG 1
/* Define to 1 if you have the `log' library (-llog). */
#define HAVE_LIBLOG 1
/* Define to 1 if you have the `lzo2' library (-llzo2). */
#define HAVE_LIBLZO2 1
/* Define to 1 if you have the `mDNSEmbedded' library (-lmDNSEmbedded). */
#define HAVE_LIBMDNSEMBEDDED 1
/* Define to 1 if you have the `microhttpd' library (-lmicrohttpd). */
#define HAVE_LIBMICROHTTPD 1
/* System has libmp3lame library */
#define HAVE_LIBMP3LAME 1
/* Define to 1 if you have the `mysqlclient' library (-lmysqlclient). */
#define HAVE_LIBMYSQLCLIENT 1
/* Whether to use libnfs library. */
#define HAVE_LIBNFS 1
/* "Define to 1 if libpcre is installed" */
#define HAVE_LIBPCRE 1
/* "Define to 1 if libpcrecpp is installed" */
#define HAVE_LIBPCRECPP 1
/* "Define to 1 if you have libplist." */
#define HAVE_LIBPLIST 1
/* Define to 1 if you have the <libpostproc/postprocess.h> header file. */
/* #undef HAVE_LIBPOSTPROC_POSTPROCESS_H */
/* Define to 1 if you have the `pthread' library (-lpthread). */
/* #undef HAVE_LIBPTHREAD */
/* Define to 1 if you have the `pulse' library (-lpulse). */
/* #undef HAVE_LIBPULSE */
/* Define to 1 if you have the `pulse-simple' library (-lpulse-simple). */
/* #undef HAVE_LIBPULSE_SIMPLE */
/* Define to 1 if you have the <librtmp/amf.h> header file. */
#define HAVE_LIBRTMP_AMF_H 1
/* Define to 1 if you have the <librtmp/log.h> header file. */
#define HAVE_LIBRTMP_LOG_H 1
/* Define to 1 if you have the <librtmp/rtmp.h> header file. */
#define HAVE_LIBRTMP_RTMP_H 1
/* Define to 1 if you have the `SDL' library (-lSDL). */
/* #undef HAVE_LIBSDL */
/* Define to 1 if you have the `SDL_gfx' library (-lSDL_gfx). */
/* #undef HAVE_LIBSDL_GFX */
/* Define to 1 if you have the `SDL_image' library (-lSDL_image). */
/* #undef HAVE_LIBSDL_IMAGE */
/* "Define to 1 if you have libshairplay." */
#define HAVE_LIBSHAIRPLAY 1
/* "Define to 1 if you have libshairport." */
/* #undef HAVE_LIBSHAIRPORT */
/* Define to 1 if you have Samba installed */
#define HAVE_LIBSMBCLIENT 1
/* Whether to use libSSH library. */
#define HAVE_LIBSSH 1
/* Define to 1 if you have the `ssl' library (-lssl). */
#define HAVE_LIBSSL 1
/* Define to 1 if you have the <libswresample/swresample.h> header file. */
/* #undef HAVE_LIBSWRESAMPLE_SWRESAMPLE_H */
/* Define to 1 if you have the <libswscale/swscale.h> header file. */
/* #undef HAVE_LIBSWSCALE_SWSCALE_H */
/* Define to 1 if you have the `tiff' library (-ltiff). */
#define HAVE_LIBTIFF 1
/* Define to 1 if you have the `tinyxml' library (-ltinyxml). */
#define HAVE_LIBTINYXML 1
/* "Define to 1 if libudev is installed" */
/* #undef HAVE_LIBUDEV */
/* "Define to 1 if libusb is installed" */
#define HAVE_LIBUSB 1
/* Define to 1 if you have the 'vaapi' libraries (-lva AND -lva-glx) */
/* #undef HAVE_LIBVA */
/* Define to 1 if you have the 'vdpau' library (-lvdpau). */
/* #undef HAVE_LIBVDPAU */
/* System has libvorbisenc library */
#define HAVE_LIBVORBISENC 1
/* Define to 1 if you have the `Xrandr' library (-lXrandr). */
/* #undef HAVE_LIBXRANDR */
/* Define to 1 if you have the `yajl' library (-lyajl). */
#define HAVE_LIBYAJL 1
/* Define to 1 if you have the `z' library (-lz). */
#define HAVE_LIBZ 1
/* Define to 1 if you have the <limits.h> header file. */
#define HAVE_LIMITS_H 1
/* Define to 1 if you have the `localeconv' function. */
/* #undef HAVE_LOCALECONV */
/* Define to 1 if you have the <locale.h> header file. */
#define HAVE_LOCALE_H 1
/* Define to 1 if `lstat' has the bug that it succeeds when given the
zero-length file name argument. */
#define HAVE_LSTAT_EMPTY_STRING_BUG 1
/* Define to 1 if you have the <malloc.h> header file. */
#define HAVE_MALLOC_H 1
/* Define to 1 if you have the `memchr' function. */
#define HAVE_MEMCHR 1
/* Define to 1 if you have the `memmove' function. */
#define HAVE_MEMMOVE 1
/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1
/* Define to 1 if you have the `memset' function. */
#define HAVE_MEMSET 1
/* Define to 1 if you have the `mkdir' function. */
#define HAVE_MKDIR 1
/* Define to 1 if you have a working `mmap' system call. */
/* #undef HAVE_MMAP */
/* Define to 1 if you have the `modf' function. */
/* #undef HAVE_MODF */
/* Define to 1 if you have the `munmap' function. */
#define HAVE_MUNMAP 1
/* "Define to 1 if you have the `mysql' library (-lmysqlclient)." */
#define HAVE_MYSQL 1
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
/* #undef HAVE_NDIR_H */
/* Define to 1 if you have the <netdb.h> header file. */
#define HAVE_NETDB_H 1
/* Define to 1 if you have the <netinet/in.h> header file. */
#define HAVE_NETINET_IN_H 1
/* Define to 1 if you have the <nfsc/libnfs.h> header file. */
#define HAVE_NFSC_LIBNFS_H 1
/* "Define to 1 if OMX libs is enabled" */
/* #undef HAVE_OMXLIB */
/* Define if we have openssl */
#define HAVE_OPENSSL 1
/* Define to 1 if you have the `posix_fadvise' function. */
/* #undef HAVE_POSIX_FADVISE */
/* Define to 1 if you have the `pow' function. */
/* #undef HAVE_POW */
/* "Define to 1 if pthread has pthread_setname_np" */
/* #undef HAVE_PTHREAD_SETNAME_NP */
/* "Define to 1 if pthread has pthread_set_name_np" */
/* #undef HAVE_PTHREAD_SET_NAME_NP */
/* If available, contains the Python version number currently in use. */
/* #undef HAVE_PYTHON */
/* Define to 1 if you have the `rmdir' function. */
#define HAVE_RMDIR 1
/* "Define to 1 if using sdl" */
/* #undef HAVE_SDL */
/* Define to 1 if you have the `select' function. */
#define HAVE_SELECT 1
/* Define to 1 if you have the `setenv' function. */
#define HAVE_SETENV 1
/* Define to 1 if you have the `setlocale' function. */
#define HAVE_SETLOCALE 1
/* Define to 1 if you have the <shairplay/raop.h> header file. */
#define HAVE_SHAIRPLAY_RAOP_H 1
/* Define to 1 if you have the <shairport/shairport.h> header file. */
/* #undef HAVE_SHAIRPORT_SHAIRPORT_H */
/* Define to 1 if you have the `socket' function. */
#define HAVE_SOCKET 1
/* Define to 1 if you have the `sqrt' function. */
/* #undef HAVE_SQRT */
/* Define to 1 if `stat' has the bug that it succeeds when given the
zero-length file name argument. */
#define HAVE_STAT_EMPTY_STRING_BUG 1
/* Define to 1 if stdbool.h conforms to C99. */
#define HAVE_STDBOOL_H 1
/* Define to 1 if you have the <stddef.h> header file. */
#define HAVE_STDDEF_H 1
/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1
/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
/* Define to 1 if you have the `strcasecmp' function. */
#define HAVE_STRCASECMP 1
/* Define to 1 if you have the `strchr' function. */
#define HAVE_STRCHR 1
/* Define to 1 if you have the `strcoll' function and it is properly defined.
*/
/* #undef HAVE_STRCOLL */
/* Define to 1 if you have the `strcspn' function. */
#define HAVE_STRCSPN 1
/* Define to 1 if you have the `strdup' function. */
#define HAVE_STRDUP 1
/* Define to 1 if you have the `strerror' function. */
#define HAVE_STRERROR 1
/* Define to 1 if you have the `strftime' function. */
#define HAVE_STRFTIME 1
/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1
/* Define to 1 if you have the `strncasecmp' function. */
#define HAVE_STRNCASECMP 1
/* Define to 1 if you have the `strpbrk' function. */
#define HAVE_STRPBRK 1
/* Define to 1 if you have the `strrchr' function. */
#define HAVE_STRRCHR 1
/* Define to 1 if you have the `strspn' function. */
#define HAVE_STRSPN 1
/* Define to 1 if you have the `strstr' function. */
#define HAVE_STRSTR 1
/* Define to 1 if you have the `strtol' function. */
#define HAVE_STRTOL 1
/* Define to 1 if you have the `strtoul' function. */
#define HAVE_STRTOUL 1
/* Define to 1 if `ao_set_metadata' is a member of `struct AudioOutput'. */
/* #undef HAVE_STRUCT_AUDIOOUTPUT_AO_SET_METADATA */
/* Define to 1 if `cls' is a member of `struct raop_callbacks_s'. */
#define HAVE_STRUCT_RAOP_CALLBACKS_S_CLS 1
/* Define to 1 if `st_rdev' is a member of `struct stat'. */
#define HAVE_STRUCT_STAT_ST_RDEV 1
/* Define to 1 if you have the `sysinfo' function. */
#define HAVE_SYSINFO 1
/* Define to 1 if you have the <sys/capability.h> header file. */
/* #undef HAVE_SYS_CAPABILITY_H */
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
*/
/* #undef HAVE_SYS_DIR_H */
/* Define to 1 if you have the <sys/file.h> header file. */
#define HAVE_SYS_FILE_H 1
/* Define to 1 if you have the <sys/ioctl.h> header file. */
#define HAVE_SYS_IOCTL_H 1
/* Define to 1 if you have the <sys/mount.h> header file. */
#define HAVE_SYS_MOUNT_H 1
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
*/
/* #undef HAVE_SYS_NDIR_H */
/* Define to 1 if you have the <sys/param.h> header file. */
#define HAVE_SYS_PARAM_H 1
/* Define to 1 if you have the <sys/select.h> header file. */
#define HAVE_SYS_SELECT_H 1
/* Define to 1 if you have the <sys/socket.h> header file. */
#define HAVE_SYS_SOCKET_H 1
/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/timeb.h> header file. */
#define HAVE_SYS_TIMEB_H 1
/* Define to 1 if you have the <sys/time.h> header file. */
#define HAVE_SYS_TIME_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
/* Define to 1 if you have the <sys/vfs.h> header file. */
#define HAVE_SYS_VFS_H 1
/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
#define HAVE_SYS_WAIT_H 1
/* Define to 1 if you have the <termios.h> header file. */
#define HAVE_TERMIOS_H 1
/* Define to 1 if you have the `tzset' function. */
#define HAVE_TZSET 1
/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
/* Define to 1 if you have the `utime' function. */
#define HAVE_UTIME 1
/* Define to 1 if you have the <utime.h> header file. */
#define HAVE_UTIME_H 1
/* Define to 1 if `utime(file, NULL)' sets file's timestamp to the present. */
#define HAVE_UTIME_NULL 1
/* Define to 1 if you have the 'VTBDecoder' library. */
/* #undef HAVE_VIDEOTOOLBOXDECODER */
/* Define to 1 if you have the `vprintf' function. */
#define HAVE_VPRINTF 1
/* Define to 1 if you have the <wchar.h> header file. */
#define HAVE_WCHAR_H 1
/* Define to 1 if you have the <wctype.h> header file. */
#define HAVE_WCTYPE_H 1
/* Define to 1 if you have X11 libs installed. */
/* #undef HAVE_X11 */
/* Define to 1 to enable non-free components. */
#define HAVE_XBMC_NONFREE 1
/* Define to 1 if you have the <yajl/yajl_version.h> header file. */
#define HAVE_YAJL_YAJL_VERSION_H 1
/* Define to 1 if the system has the type `_Bool'. */
#define HAVE__BOOL 1
/* Default LIRC device */
#define LIRC_DEVICE "/dev/lircd"
/* Define to 1 if `lstat' dereferences a symlink specified with a trailing
slash. */
/* #undef LSTAT_FOLLOWS_SLASHED_SYMLINK */
/* Define to the sub-directory in which libtool stores uninstalled libraries.
*/
#define LT_OBJDIR ".libs/"
/* Name of package */
#define PACKAGE "xbmc"
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "http://trac.xbmc.org"
/* Define to the full name of this package. */
#define PACKAGE_NAME "xbmc"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "xbmc 12.9.7"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "xbmc"
/* Define to the home page for this package. */
#define PACKAGE_URL ""
/* Define to the version of this package. */
#define PACKAGE_VERSION "12.9.7"
/* Define as the return type of signal handlers (`int' or `void'). */
#define RETSIGTYPE void
/* Define to the type of arg 1 for `select'. */
#define SELECT_TYPE_ARG1 int
/* Define to the type of args 2, 3 and 4 for `select'. */
#define SELECT_TYPE_ARG234 (fd_set *)
/* Define to the type of arg 5 for `select'. */
#define SELECT_TYPE_ARG5 (struct timeval *)
/* The size of `int', as computed by sizeof. */
#define SIZEOF_INT 4
/* The size of `size_t', as computed by sizeof. */
#define SIZEOF_SIZE_T 4
/* If using the C implementation of alloca, define if you know the
direction of stack growth for your system; otherwise it will be
automatically deduced at runtime.
STACK_DIRECTION > 0 => grows toward higher addresses
STACK_DIRECTION < 0 => grows toward lower addresses
STACK_DIRECTION = 0 => direction of growth unknown */
/* #undef STACK_DIRECTION */
/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
/* #undef STAT_MACROS_BROKEN */
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#define TIME_WITH_SYS_TIME 1
/* Define to 1 if your <sys/time.h> declares `struct tm'. */
/* #undef TM_IN_SYS_TIME */
/* "Define to 1 if alsa is installed" */
/* #undef USE_ALSA */
/* Define to 1 to enable ASAP codec. */
/* #undef USE_ASAP_CODEC */
/* Whether to use external FFmpeg libraries. */
/* #undef USE_EXTERNAL_FFMPEG */
/* Define to 1 to enable UPnP support. */
#define USE_UPNP 1
/* Version number of package */
#define VERSION "12.9.7"
/* 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
/* yajl version 1 */
/* #undef YAJL_MAJOR */
/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
/* #undef _LARGEFILE_SOURCE */
/* 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 `int' if <sys/types.h> does not define. */
/* #undef mode_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 the equivalent of the C99 'restrict' keyword, or to
nothing if this is not supported. Do not define if restrict is
supported directly. */
#define restrict __restrict
/* Work around a bug in Sun C++: it does not support _Restrict or
__restrict__, even though the corresponding Sun C compiler ends up with
"#define restrict _Restrict" or "#define restrict __restrict__" in the
previous line. Perhaps some future version of Sun C++ will work with
restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
#if defined __SUNPRO_CC && !defined __RESTRICT
# define _Restrict
# define __restrict__
#endif
/* 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 `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 */
#pragma once
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#if defined(HAVE_CONFIG_H) && !defined(TARGET_WINDOWS)
#include "config.h"
#define DECLARE_UNUSED(a,b) a __attribute__((unused)) b;
#endif
#define PRE_SKIN_VERSION_9_10_COMPATIBILITY 1
#define PRE_SKIN_VERSION_11_COMPATIBILITY 1
/*****************
* All platforms
*****************/
#define HAS_DVD_SWSCALE
#define HAS_DVDPLAYER
#define HAS_EVENT_SERVER
#define HAS_KARAOKE
#define HAS_SCREENSAVER
#define HAS_PYTHON
#define HAS_SYSINFO
#define HAS_VIDEO_PLAYBACK
#define HAS_VISUALISATION
#define HAS_PVRCLIENTS
#ifdef HAVE_LIBMICROHTTPD
#define HAS_WEB_SERVER
#define HAS_WEB_INTERFACE
#endif
#define HAS_JSONRPC
#ifdef USE_ASAP_CODEC
#define HAS_ASAP_CODEC
#endif
#define HAS_FILESYSTEM
#define HAS_FILESYSTEM_CDDA
#define HAS_FILESYSTEM_RTV
#define HAS_FILESYSTEM_DAAP
#define HAS_FILESYSTEM_SAP
#define HAS_FILESYSTEM_VTP
#define HAS_FILESYSTEM_HTSP
#ifdef HAVE_LIBSMBCLIENT
#define HAS_FILESYSTEM_SMB
#endif
#ifdef HAVE_LIBNFS
#define HAS_FILESYSTEM_NFS
#endif
#ifdef HAVE_LIBAFPCLIENT
#define HAS_FILESYSTEM_AFP
#endif
#ifdef HAVE_LIBPLIST
#define HAS_AIRPLAY
#endif
#if defined(HAVE_LIBSHAIRPORT) || defined(HAVE_LIBSHAIRPLAY)
#define HAS_AIRTUNES
#endif
#ifdef HAVE_MYSQL
#define HAS_MYSQL
#endif
#if defined(USE_UPNP)
#define HAS_UPNP
#endif
#if defined(HAVE_LIBMDNSEMBEDDED)
#define HAS_ZEROCONF
#define HAS_MDNS
#define HAS_MDNS_EMBEDDED
#endif
/**********************
* Non-free Components
**********************/
#if defined(TARGET_WINDOWS)
#define HAS_FILESYSTEM_RAR
#else
#if defined(HAVE_XBMC_NONFREE)
#define HAS_FILESYSTEM_RAR
#endif
#endif
/*****************
* Win32 Specific
*****************/
#if defined(TARGET_WINDOWS)
#define HAS_SDL_JOYSTICK
#define HAS_DVD_DRIVE
#define HAS_WIN32_NETWORK
#define HAS_IRSERVERSUITE
#define HAS_AUDIO
#define HAVE_LIBCRYSTALHD 2
#define HAS_WEB_SERVER
#define HAS_WEB_INTERFACE
#define HAVE_LIBSSH
#define HAS_LIBRTMP
#define HAVE_LIBBLURAY
#define HAS_ASAP_CODEC
#define HAVE_YAJL_YAJL_VERSION_H
#define HAS_FILESYSTEM_SMB
#define HAS_FILESYSTEM_NFS
#define HAS_ZEROCONF
#define HAS_MDNS
#define HAS_AIRPLAY
#define HAS_AIRTUNES
#define HAVE_LIBSHAIRPLAY
#define HAVE_LIBCEC
#define HAVE_LIBMP3LAME
#define HAVE_LIBVORBISENC
#define HAS_MYSQL
#define HAS_UPNP
#define DECLARE_UNUSED(a,b) a b;
#endif
/*****************
* Mac Specific
*****************/
#if defined(TARGET_DARWIN)
#if defined(TARGET_DARWIN_OSX)
#define HAS_GL
#define HAS_SDL
#define HAS_SDL_OPENGL
#define HAS_SDL_WIN_EVENTS
#endif
#define HAS_ZEROCONF
#define HAS_LINUX_NETWORK
#endif
/*****************
* Linux Specific
*****************/
#if defined(TARGET_LINUX) || defined(TARGET_FREEBSD)
#if defined(HAVE_LIBAVAHI_COMMON) && defined(HAVE_LIBAVAHI_CLIENT)
#define HAS_ZEROCONF
#define HAS_AVAHI