mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
configure: fix check for libva-glx and libva-drm.
This commit is contained in:
parent
f65a413500
commit
5c89b66dae
1 changed files with 2 additions and 2 deletions
|
@ -404,7 +404,7 @@ if test $USE_DRM -eq 1; then
|
|||
|
||||
if test $HAVE_VA_DRM -eq 1; then
|
||||
saved_CPPFLAGS="$CPPFLAGS"
|
||||
CPPFLAGS="$LIBVA_DRM_CPPFLAGS"
|
||||
CPPFLAGS="$LIBVA_DRM_CFLAGS"
|
||||
AC_CHECK_HEADERS([va/va_drm.h], [:], [HAVE_VA_DRM=0 USE_DRM=0])
|
||||
CPPFLAGS="$saved_CPPFLAGS"
|
||||
fi
|
||||
|
@ -428,7 +428,7 @@ if test $USE_GLX -eq 1; then
|
|||
|
||||
if test $HAVE_VA_GLX -eq 1; then
|
||||
saved_CPPFLAGS="$CPPFLAGS"
|
||||
CPPFLAGS="$LIBVA_GLX_CPPFLAGS"
|
||||
CPPFLAGS="$LIBVA_GLX_CFLAGS"
|
||||
AC_CHECK_HEADERS([va/va_glx.h], [:], [HAVE_VA_GLX=0])
|
||||
CPPFLAGS="$saved_CPPFLAGS"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue