Page 1 of 1

How to check out v0.8.5 from svn?

Posted: 12 Nov 2005 14:55
by Yunin Tang
Who can tell me, how to check out v0.8.5 from svn? and use which contrib packet ? http://download.videolan.org/pub/testin ... ly.tar.bz2
or other?

SVN

Posted: 12 Nov 2005 17:50
by Pflaume
Install Cygwin,
install svn,
download latest contribute (higest Number)
download latest VLC svn
(eg. at cmd line type:
"c:\program\subversion\bin\svn" co svn://svn.videolan.org/vlc/trunk vlc-trunk")

read INSTALL.win32 carefully
try to compile...

Copy the Script in a textfile named "config_setup" or somthing like that.
Place it in the parent folder to "vlc-trunk".
Open Cygwin!
Within Cygwin execute it "../config_setup"
read the error messages carefully, and install the missing components in cygwin...

here is my script:

schnipp___________________________

./bootstrap && \
CPPFLAGS="-I/usr/win32/include -I/usr/win32/include/ebml" \
LDFLAGS=-L/usr/win32/lib \
CC="gcc -mno-cygwin" CXX="g++ -mno-cygwin" \
./configure \
--disable-mkv \
--disable-sdl \
--disable-gtk \
--enable-nls \
--enable-ffmpeg \
--with-ffmpeg-mp3lame \
--with-ffmpeg-faac \
--with-ffmpeg-zlib \
--enable-faad \
--enable-flac \
--enable-theora \
--with-wx-config-path=/usr/win32/bin \
--with-freetype-config-path=/usr/win32/bin \
--with-fribidi-config-path=/usr/win32/bin \
--enable-livedotcom \
--with-livedotcom-tree=/usr/win32/live.com \
--enable-caca \
--with-caca-config-path=/usr/win32/bin \
--with-xml2-config-path=/usr/win32/bin \
--with-dvdnav-config-path=/usr/win32/bin \
--enable-dvdread \
--disable-pvr \
--enable-real \
--enable-realrtsp \
--enable-lirc \
--disable-cddax \
--enable-vcdx \
--disable-goom \
--disable-toolame \
--enable-dvdread \
--enable-lirc \
--enable-debug \
--enable-optimizations \
--enable-release
make package-win32-base
_______________________________schnapp