1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-19 01:47:38 +00:00

libdvdnav need libdvdread from the same repository

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27047 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nicodvb 2008-06-10 16:11:33 +00:00
parent aee1b48978
commit 61082eedb8

View File

@ -9,7 +9,15 @@ $ rm -rf /usr/lib/libdvdnav* /usr/lib/libdvdread* /usr/include/dvdnav* \
/usr/local/include/dvdread* /usr/bin/dvdnav-config \
/usr/local/bin/dvdnav-config
Now download dvdnav from MPHQ (dvdnav includes its own version of dvdread):
Now download dvdnav from MPHQ libdvdread and libdvdnav (in this order) :
$ svn co svn://svn.mplayerhq.hu/dvdnav/trunk/libdvdread libdvdread
$ cd libdvdread
$ ./autogen.sh && ./configure && make
(or, if you feel brave and want to help us improve the new build system)
$ ./configure2 && make
install it as root with
$ make install
$ svn co svn://svn.mplayerhq.hu/dvdnav/trunk/libdvdnav libdvdnav
$ cd libdvdnav
$ ./autogen.sh && ./configure && make