I try to build dvd95 with the last libdvdread version available (4.1.3) but during the ./configure , it stop and tell me : "unable to find libdvdread >= 0.97"
Hi, I'm going to upload the latest dvd95 version in Ubuntu's repositories and I used a little workaround (not a fix) to make it building fine.
#! /bin/sh /usr/share/dpatch/dpatch-run
## 02_fix_configure_libdvdread.dpatch by Alessio Treglia <quadrispro@ubuntu.com>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Skip libdvdread version check.
Hi, I'm going to upload the latest dvd95 version in Ubuntu's repositories and I used a little workaround (not a fix) to make it building fine.
#! /bin/sh /usr/share/dpatch/dpatch-run
## 02_fix_configure_libdvdread.dpatch by Alessio Treglia <quadrispro@ubuntu.com>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Skip libdvdread version check.
@DPATCH@
diff -urNad dvd95-1.5p0~/configure dvd95-1.5p0/configure
--- dvd95-1.5p0~/configure 2009-01-27 20:36:52.000000000 +0100
+++ dvd95-1.5p0/configure 2009-05-04 18:02:13.000000000 +0200
@@ -25385,7 +25385,7 @@
#include <dvdread/ifo_types.h>
#include <dvdread/ifo_read.h>
#include <dvdread/nav_read.h>
-int main(void) { if (DVDREAD_VERSION < 907) return 1; return 0; }
+int main(void) { return 0; }
_ACEOF
rm -f conftest$ac_exeext
diff -urNad dvd95-1.5p0~/configure.in dvd95-1.5p0/configure.in
--- dvd95-1.5p0~/configure.in 2009-01-26 20:53:17.000000000 +0100
+++ dvd95-1.5p0/configure.in 2009-05-04 18:01:56.000000000 +0200
@@ -246,7 +246,7 @@
#include <dvdread/ifo_types.h>
#include <dvdread/ifo_read.h>
#include <dvdread/nav_read.h>
-int main(void) { if (DVDREAD_VERSION < 907) return 1; return 0; }
+int main(void) { return 0; }
],,AC_MSG_ERROR(Unable to find libdvdread >= 0.9.7))
dnl
Thanks for the patch. It solved my problem :o)