summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--m4/xv.m47
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 707328a1d..85d3acdf1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
xine-lib (1.1.2)
* Czech translation update
* Disable the XXMC plugin if Xv support isn't there
+ * Also look for Xv support in /usr/lib for X.org's new location
xine-lib (1.1.1)
* Improve sound quality when using alsa 1.0.9 or above.
diff --git a/m4/xv.m4 b/m4/xv.m4
index 8d464591a..b09e23626 100644
--- a/m4/xv.m4
+++ b/m4/xv.m4
@@ -8,7 +8,12 @@ AC_DEFUN([AC_PATH_LIBXV_IMPL],
AC_MSG_RESULT([found $1 in $xv_path])
XV_LIB="$1"
else
- AC_MSG_RESULT([$1 not found in $xv_path])
+ if test -f "/usr/lib/$1"; then
+ AC_MSG_RESULT([found $1 in /usr/lib])
+ XV_LIB="$1"
+ else
+ AC_MSG_RESULT([$1 not found in $xv_path])
+ fi
fi
])