Reinhard,
I decided to try vdr 1.6.0 and vdr-xine 0.8.2 and have ran into the XINE VDR VERSION MISMATCH in INSTALL issue.
I am running xine-lib 1.2 pulled from the xine site
pkg-config --cflags libxine -I/usr/local/include
I can't see what is wrong
Cheers
Tony
On Thu, Mar 27, 2008 at 11:02:45AM +0100, Tony Grant wrote:
Reinhard,
I decided to try vdr 1.6.0 and vdr-xine 0.8.2 and have ran into the XINE VDR VERSION MISMATCH in INSTALL issue.
I am running xine-lib 1.2 pulled from the xine site
pkg-config --cflags libxine -I/usr/local/include
I can't see what is wrong
I use this in order to be sure I only got ONE xine-lib installed :
#!/bin/bash source /etc/make.conf p=vdr.patch MAKE='sudo nice -n 4 make -j3' OPTIONS="show update dry-run apply undry-run unapply compile log exit" select opt in $OPTIONS; do if [ "$opt" = "show" ]; then vi $p elif [ "$opt" = "update" ]; then hg pull -u http://hg.debian.org/hg/xine-lib/xine-lib-1.2/ elif [ "$opt" = "dry-run" ]; then patch --dry-run -p1 < $p elif [ "$opt" = "apply" ]; then patch -p1 < $p elif [ "$opt" = "undry-run" ]; then patch --dry-run -p1 -R < $p elif [ "$opt" = "unapply" ]; then patch -p1 -R < $p elif [ "$opt" = "compile" ]; then sudo ./autogen.sh --disable-dxr3 --enable-opengl --enable-v4l \ --enable-glu --enable-dvb --prefix=/usr \ --with-alsa --with-external-ffmpeg --with-fontconfig \ --with-freetype --with-x --with-xv-path=/usr/X11R6/lib \ --x-includes=/usr/include && $MAKE && $MAKE install && \ sudo rm -fr /usr/lib/xine && $MAKE install && $MAKE distclean elif [ "$opt" = "log" ]; then hg log|less elif [ "$opt" = "exit" ]; then exit else echo bad option fi done
Just put this into your xine-lib-1.2 hg's source and adjust it if you don't want to install into /usr ;-)
If you don't use gentoo, you could remove the source... and my p is only to have vdr fifo where I want them...
(notice the rm -fr /usr/lib/xine which I only run if the install is successfull to be sure I can have a complete be unique xine install).
Hope that could be of any help ;-)
Le jeudi 27 mars 2008 à 12:15 +0100, Gregoire Favre a écrit :
I use this in order to be sure I only got ONE xine-lib installed :
Thanks Gregoire but I only have one xine-lib installed. This is a clean FC8 with xine-lib 1.2 installed from hg.
Trying an update of xine-lib now (4 hours on a VIA Epia M10000)
Tony
On Thu, Mar 27, 2008 at 12:34:21PM +0100, Tony Grant wrote:
Thanks Gregoire but I only have one xine-lib installed. This is a clean FC8 with xine-lib 1.2 installed from hg.
Trying an update of xine-lib now (4 hours on a VIA Epia M10000)
I am quiete certain that you still have some files from the previous version... you don't have to recompil all, just delete all files in the location you installed it, and just do the make install part.
Le jeudi 27 mars 2008 à 12:54 +0100, Gregoire Favre a écrit :
Trying an update of xine-lib now (4 hours on a VIA Epia M10000)
I am quiete certain that you still have some files from the previous version... you don't have to recompil all, just delete all files in the location you installed it, and just do the make install part.
The update worked you were right there must have been some stuff from a previous hg update.
Cheers
Tony