summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2010-11-03 10:18:54 +0000
committerGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2010-11-03 10:18:54 +0000
commitad281ab305c4119e7c6eba32b6bb05016d99ab26 (patch)
tree123ecd8638f7e7f59002d7822d128c2ce4937f54
parenta6d4155c3e1a6cb7b8b0f6a8825afbd4067a7e5e (diff)
Fix VA/GLX build with upstream libva.
-rw-r--r--NEWS3
-rw-r--r--configure.ac6
2 files changed, 7 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 511610c..8ad904d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,9 @@
vdpau-video NEWS -- summary of changes. 2010-10-08
Copyright (C) 2009-2010 Splitted-Desktop Systems
+Version 0.7.3 - DD.Nov.2010
+* Fix VA/GLX build with upstream libva
+
Version 0.7.2 - 08.Oct.2010
* Drop explicit link against libva
* Fix detection of the NVIDIA driver version
diff --git a/configure.ac b/configure.ac
index ae9027c..e3b5a40 100644
--- a/configure.ac
+++ b/configure.ac
@@ -203,8 +203,10 @@ AC_CACHE_CHECK([for VA-API (GLX extensions)],
# error "VA-API version >= 0.30.0-sds$LIBVA_GLX_SDS_VERSION_0_30 is required"
# endif
#elif VA_MAJOR_VERSION == 0 && VA_MINOR_VERSION == 31
- # if !defined(VA_SDS_VERSION) || (VA_SDS_VERSION < $LIBVA_GLX_SDS_VERSION_0_31)
- # error "VA-API version >= 0.31.0-sds$LIBVA_GLX_SDS_VERSION_0_31 is required"
+ # if VA_MICRO_VERSION < 1
+ # if !defined(VA_SDS_VERSION) || (VA_SDS_VERSION < $LIBVA_GLX_SDS_VERSION_0_31)
+ # error "VA-API version >= 0.31.0-sds$LIBVA_GLX_SDS_VERSION_0_31 is required"
+ # endif
# endif
#else
# error "This version of VA-API is not supported for OpenGL rendering"