Commit 0611e689 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Fix libdvdread behaviour and crashes on Windows.

parent 5941c31c
......@@ -79,16 +79,16 @@ Index: configure.ac
dnl ---------------------------------------------
dnl cflags
dnl ---------------------------------------------
Index: autogen.sh
Index: src/ifo_types.h
===================================================================
--- autogen.sh (revision 1107)
+++ autogen.sh (working copy)
@@ -86,7 +86,7 @@
try_libtool_executable() {
libtool=$1
LT="`$libtool --version | awk '{ print $4 }' | sed -e 's/[a-zA-Z\ \.\(\)\-\;]//g'`"
- if test "$LT" -ne "" ; then
+ if test "$LT" -ne "0" ; then
LIBTOOL_MIN="`echo $LIBTOOL_MIN | sed -e 's/[a-zA-Z\ \.\(\)\-]//g'`"
if test $LT -lt 100 ; then
LT=`expr $LT \* 10`
--- src/ifo_types.h (révision 1132)
+++ src/ifo_types.h (copie de travail)
@@ -30,7 +30,7 @@
#if defined(__GNUC__)
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
-#define ATTRIBUTE_PACKED __attribute__ ((packed))
+#define ATTRIBUTE_PACKED __attribute__ ((gcc_struct,packed))
#define PRAGMA_PACK 0
#endif
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment