2000-06-24 06:28:42 +08:00
|
|
|
INSTALL file for vlc, the VideoLAN Client
|
|
|
|
|
|
|
|
|
2001-04-16 15:40:11 +08:00
|
|
|
Configuring VideoLAN
|
|
|
|
====================
|
2000-06-24 06:28:42 +08:00
|
|
|
|
2001-03-05 09:29:25 +08:00
|
|
|
A typical way to configure vlc is:
|
2000-06-24 06:28:42 +08:00
|
|
|
|
2001-01-06 15:23:32 +08:00
|
|
|
./configure --prefix=/usr --enable-gnome --with-sdl
|
2000-06-24 06:28:42 +08:00
|
|
|
|
|
|
|
See `./configure --help' for more information.
|
|
|
|
|
2001-03-15 09:42:20 +08:00
|
|
|
Here is a shortcut to copy-paste for a complete build:
|
2001-01-18 13:13:23 +08:00
|
|
|
|
2001-04-16 15:40:11 +08:00
|
|
|
make distclean && ./configure --prefix=/usr --enable-gnome \
|
2001-01-18 13:13:23 +08:00
|
|
|
--enable-fb --with-glide --with-ggi --with-sdl --enable-esd \
|
2001-04-16 15:40:11 +08:00
|
|
|
--enable-alsa --enable-mga --enable-gtk --enable-qt --enable-xvideo
|
2001-03-15 09:42:20 +08:00
|
|
|
|
|
|
|
If you intend to debug stuff, you may want to disable optimizations:
|
|
|
|
|
2001-04-16 15:40:11 +08:00
|
|
|
make distclean && ./configure --prefix=/usr --enable-gnome \
|
2001-03-15 09:42:20 +08:00
|
|
|
--enable-fb --with-glide --with-ggi --with-sdl --enable-esd \
|
2001-04-03 07:30:41 +08:00
|
|
|
--enable-alsa --enable-mga --enable-gtk --enable-qt --enable-xvideo \
|
2001-04-16 15:40:11 +08:00
|
|
|
--disable-optimizatons
|
|
|
|
|
|
|
|
|
|
|
|
Building VideoLAN
|
|
|
|
=================
|
|
|
|
|
|
|
|
Have a look at the generated Makefile.opts file, you may want to choose
|
|
|
|
which modules will be compiled as plugins, and which ones will remain in
|
|
|
|
the core application. The configure script tries to guess for you.
|
|
|
|
|
|
|
|
Once configured, run `make' to build vlc.
|
2001-01-18 13:13:23 +08:00
|
|
|
|
|
|
|
|
2000-06-24 06:28:42 +08:00
|
|
|
Installing and running VideoLAN
|
|
|
|
===============================
|
|
|
|
|
2001-03-05 09:29:25 +08:00
|
|
|
You can install the vlc and its plugins by typing:
|
2000-06-24 06:28:42 +08:00
|
|
|
|
|
|
|
make install
|
|
|
|
|
2001-03-05 09:29:25 +08:00
|
|
|
But you don't need to install it if you don't want to; vlc can be launched
|
|
|
|
from the current directory as well:
|
2000-06-24 06:28:42 +08:00
|
|
|
|
|
|
|
./vlc
|
|
|
|
|
2001-03-05 09:29:25 +08:00
|
|
|
|
|
|
|
Building packages
|
|
|
|
=================
|
|
|
|
|
|
|
|
To build a Debian package, you may use:
|
|
|
|
|
|
|
|
dpkg-buildpackage -rfakeroot -us -uc
|
|
|
|
|
|
|
|
|
|
|
|
To build RedHat packages, use:
|
|
|
|
|
|
|
|
rpm -ba vlc.spec
|
|
|
|
|