]> git.sesse.net Git - vlc/blob - INSTALL
* ./extras/MacOSX_dvdioctl: removed outdated files.
[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
10
11 See `./configure --help' for more information.
12
13 If you intend to debug stuff, you may want to compile with debugging
14 symbols:
15
16    make distclean ; ./configure --prefix=/usr --enable-gnome --enable-debug
17
18 It is also possible to cross-compile for the Win32 platform using mingw32:
19
20    make distclean ; CC=i586-mingw32msvc-gcc CFLAGS=-I/usr/i586-mingw32msvc \
21    RANLIB=i586-mingw32msvc-ranlib WINDRES=i586-mingw32msvc-windres \
22    ./configure --host=i386-mingw32msvc --with-directx-path=<path> \
23    --with-sdl-config-path=<path> --with-gtk-config-path=<path>
24
25
26 Building VideoLAN
27 =================
28
29 Have a look at the generated Makefile.opts file, you may want to choose
30 which modules will be compiled as plugins, and which ones will remain in
31 the core application. The configure script tries to guess for you.
32
33 Once configured, run `make' to build vlc.
34
35
36 Installing and running VideoLAN
37 ===============================
38
39 You can install the vlc and its plugins by typing:
40
41    make install
42
43 But you don't need to install it if you don't want to; vlc can be launched
44 from the current directory as well:
45
46    ./vlc
47
48
49 Building packages
50 =================
51
52 To build a Debian package, you may use:
53
54    dpkg-buildpackage -rfakeroot -us -uc
55
56
57 To build RedHat packages, use:
58
59    rpm -ba vlc.spec
60
61 To build an ipkg package (iPAQ familiar Linux), use:
62
63    ipkg-buildpackage
64