]> git.sesse.net Git - vlc/blob - INSTALL
* Mandatory step for video output IV and the audio output quality
[vlc] / INSTALL
1 INSTALL file for vlc, the VideoLAN Client
2
3
4 Configuring VideoLAN
5 ====================
6
7 A typical way to configure vlc is:
8
9    ./configure --prefix=/usr --enable-gnome --with-sdl
10
11 See `./configure --help' for more information.
12
13 Here is a shortcut to copy-paste for a complete build:
14
15    make distclean && ./configure --prefix=/usr --enable-gnome \
16       --enable-fb --with-glide --with-ggi --with-sdl --enable-esd \
17       --enable-mga --enable-gtk --enable-qt --enable-xvideo
18
19 If you intend to debug stuff, you may want to disable optimizations:
20
21    make distclean && ./configure --prefix=/usr --enable-gnome \
22       --enable-fb --with-glide --with-ggi --with-sdl --enable-esd \
23       --enable-mga --enable-gtk --enable-qt --enable-xvideo \
24       --disable-optimizatons
25
26
27 Building VideoLAN
28 =================
29
30 Have a look at the generated Makefile.opts file, you may want to choose
31 which modules will be compiled as plugins, and which ones will remain in
32 the core application. The configure script tries to guess for you.
33
34 Once configured, run `make' to build vlc.
35
36
37 Installing and running VideoLAN
38 ===============================
39
40 You can install the vlc and its plugins by typing:
41
42    make install
43
44 But you don't need to install it if you don't want to; vlc can be launched
45 from the current directory as well:
46
47    ./vlc
48
49
50 Building packages
51 =================
52
53 To build a Debian package, you may use:
54
55    dpkg-buildpackage -rfakeroot -us -uc
56
57
58 To build RedHat packages, use:
59
60    rpm -ba vlc.spec
61