summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorBastien Nocera <hadess@users.sourceforge.net>2006-01-07 12:35:00 +0000
committerBastien Nocera <hadess@users.sourceforge.net>2006-01-07 12:35:00 +0000
commit424b4f5d6b0e6f602820db324bfe4829be0e4c04 (patch)
treea71cc2cd52e294ec0b703932ef51ab782d7d8f72 /m4
parenteebe40e45c021ad8eac59277e63baa1d24a01c02 (diff)
downloadxine-lib-424b4f5d6b0e6f602820db324bfe4829be0e4c04.tar.gz
xine-lib-424b4f5d6b0e6f602820db324bfe4829be0e4c04.tar.bz2
* Also look for Xv support in /usr/lib for X.org's new location
CVS patchset: 7831 CVS date: 2006/01/07 12:35:00
Diffstat (limited to 'm4')
-rw-r--r--m4/xv.m47
1 files changed, 6 insertions, 1 deletions
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
])