]> git.sesse.net Git - vlc/blob - config.in
7ebebc7b962065fa17b30687bd5ec9e225e16fd8
[vlc] / config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see Documentation/kbuild/config-language.txt.
4 #
5 mainmenu_name "VLC Configuration"
6
7 choice 'Operating System' \
8    "Linux               CONFIG_LINUX \
9     Win32               CONFIG_WIN32" Linux
10
11 mainmenu_option next_comment
12 comment 'Graphical User Interfaces'
13 bool 'Gnome interface' CONFIG_GNOME
14 bool 'GTK interface' CONFIG_GTK
15 endmenu
16
17 mainmenu_option next_comment
18 comment 'Inputs'
19 bool 'DVD support' CONFIG_DVD
20 if [ "$CONFIG_DVD" = "y" ]; then
21    bool '    standard DVD input' CONFIG_DVDOLD
22    bool '    libdvdread' CONFIG_DVDREAD
23    bool '    libdvdplay' CONFIG_DVDPLAY
24 fi
25 bool 'VCD support' CONFIG_VCD
26 bool 'Video for Linux (V4L) support' CONFIG_V4L
27 bool 'Satellite support' CONFIG_SAT
28 endmenu
29
30 mainmenu_option next_comment
31 comment 'Video outputs'
32 if [ "$CONFIG_LINUX" = "y" ]; then
33    bool 'X11 output' CONFIG_X11
34    bool 'XVideo output' CONFIG_XVIDEO
35    bool 'Framebuffer output' CONFIG_FB
36 fi
37 bool 'SDL video output' CONFIG_SDL
38 endmenu
39
40 mainmenu_option next_comment
41 comment 'Audio outputs'
42 if [ "$CONFIG_LINUX" = "y" ]; then
43    bool 'Open Sound System (OSS)' CONFIG_OSS
44    bool 'Enlightenment Sound Daemon (ESD)' CONFIG_ESD
45 fi
46 endmenu
47
48 mainmenu_option next_comment
49 comment 'Codecs'
50 bool 'A52 support' CONFIG_A52
51 bool 'MAD support' CONFIG_MAD
52 bool 'FFMPEG' CONFIG_FFMPEG
53 if [ "$CONFIG_FFMPEG" = "y" ]; then
54    string "ffmpeg tree" CONFIG_FFMPEG_TREE /home/videolan/ffmpeg
55 fi
56 endmenu
57