]> git.sesse.net Git - vlc/blob - INSTALL
* Bug fixes and enhancements in the Gtk+/Gnome interfaces.
[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 && make
20
21 If you intend to debug stuff, you may want to disable optimizations:
22
23    make distclean 2>/dev/null ; ./configure --prefix=/usr --enable-gnome \
24       --enable-fb --with-glide --with-ggi --with-sdl --enable-esd \
25       --enable-alsa --enable-mga --enable-gtk --enable-qt \
26       --disable-optimizatons && make
27
28
29 Installing and running VideoLAN
30 ===============================
31
32 You can install the vlc and its plugins by typing:
33
34    make install
35
36 But you don't need to install it if you don't want to; vlc can be launched
37 from the current directory as well:
38
39    ./vlc
40
41
42 Building packages
43 =================
44
45 To build a Debian package, you may use:
46
47    dpkg-buildpackage -rfakeroot -us -uc
48
49
50 To build RedHat packages, use:
51
52    rpm -ba vlc.spec
53