summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2010-07-08 08:58:32 +0000
committerGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2010-07-08 08:58:32 +0000
commit10b514f0bf9e583712b043ea4f39b79d81aa029d (patch)
treeec86109eec4ff8ecda62eb0d39e280cf816590de /configure.ac
parent0136ed528f11a87cd7cc673d523b98d8dd61ff88 (diff)
Merge from 0.6-branch:
- Simplify -lvdpau check - Drop obsolete vars (ctx)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 425b79a..fbea464 100644
--- a/configure.ac
+++ b/configure.ac
@@ -232,7 +232,7 @@ AC_CACHE_CHECK([for VDPAU],
[#include <vdpau/vdpau_x11.h>],
[vdp_device_create_x11(0,0,0,0)],
[ac_cv_have_vdpau="yes" HAVE_VDPAU=1],
- [ac_cv_have_vdpau="no" HAVE_VDPAU=0 LIBS="$saved_LIBS"])
+ [ac_cv_have_vdpau="no" HAVE_VDPAU=0])
])
if test "$ac_cv_have_vdpau" = "no"; then
AC_MSG_ERROR([you need VDPAU to build this package])
@@ -240,8 +240,6 @@ fi
AC_CACHE_CHECK([for VDPAU/MPEG-4 support],
ac_cv_have_vdpau_mpeg4, [
- saved_LIBS="$LIBS"
- LIBS="$LIBS -lvdpau"
AC_TRY_LINK(
[#include <vdpau/vdpau.h>],
[VdpPictureInfoMPEG4Part2 pic_info],