vdpau: Fix pkg-config test

If the pkg-config check doesn't succeed, test with the old method
instead of bailing out of configure with an error.
This commit is contained in:
Jan Schmidt 2009-09-01 19:48:43 +01:00
parent f85c84af1f
commit 16124a1c1e

View file

@ -1537,8 +1537,8 @@ AG_GST_CHECK_FEATURE(VDPAU, [VDPAU], vdpau, [
VDPAU_LIBS=-lvdpau
HAVE_VDPAU=no
PKG_CHECK_MODULES(VDPAU, vdpau, [HAVE_VDPAU="yes"])
PKG_CHECK_MODULES(VDPAU, vdpau, [HAVE_VDPAU="yes"],
[
if test "$HAVE_VDPAU" = "no"; then
saved_CPPFLAGS="$CPPFLAGS"
AC_CHECK_HEADER([vdpau/vdpau.h], [HAVE_VDPAU_H=yes])
@ -1566,6 +1566,7 @@ AG_GST_CHECK_FEATURE(VDPAU, [VDPAU], vdpau, [
LIBS="$saved_LIBS"
fi
fi
])
if test "$HAVE_VDPAU" = "yes"; then
AC_MSG_NOTICE([Found up to date VDPAU installation])