]> git.sesse.net Git - vlc/blob - INSTALL
* fixes for the Qt plugin compilation under Debian
[vlc] / INSTALL
1 INSTALL file for vlc, the VideoLAN Client
2
3
4 Building 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 Then, run `make' to build vlc.
14
15 Here is a shortcut to copy-paste for a complete build:
16
17    make distclean 2>/dev/null ; ./configure --prefix=/usr --enable-gnome \
18       --enable-fb --with-glide --with-ggi --with-sdl --enable-esd \
19       --enable-alsa --enable-mga --enable-gtk --enable-qt --enable-xvideo \
20    && make
21
22 If you intend to debug stuff, you may want to disable optimizations:
23
24    make distclean 2>/dev/null ; ./configure --prefix=/usr --enable-gnome \
25       --enable-fb --with-glide --with-ggi --with-sdl --enable-esd \
26       --enable-alsa --enable-mga --enable-gtk --enable-qt --enable-xvideo \
27       --disable-optimizatons && make
28
29
30 Installing and running VideoLAN
31 ===============================
32
33 You can install the vlc and its plugins by typing:
34
35    make install
36
37 But you don't need to install it if you don't want to; vlc can be launched
38 from the current directory as well:
39
40    ./vlc
41
42
43 Building packages
44 =================
45
46 To build a Debian package, you may use:
47
48    dpkg-buildpackage -rfakeroot -us -uc
49
50
51 To build RedHat packages, use:
52
53    rpm -ba vlc.spec
54