diff options
author | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2012-08-06 16:11:47 +0200 |
---|---|---|
committer | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2012-09-26 15:43:54 +0200 |
commit | 91d33d401d70e7373b4528146b48a3c7b1b242f1 (patch) | |
tree | b3599305494cb2fa1017d6ecf670c7d7e8bd16ea /configure.ac | |
parent | cde2a75033e38b70f2c81addf326a0d493b25149 (diff) | |
download | libva-intel-driver-91d33d401d70e7373b4528146b48a3c7b1b242f1.tar.gz libva-intel-driver-91d33d401d70e7373b4528146b48a3c7b1b242f1.tar.bz2 libva-intel-driver-91d33d401d70e7373b4528146b48a3c7b1b242f1.zip |
wayland: drop explicit dependencies to Wayland libraries.
Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac index 96584a5..4c4a6db 100644 --- a/configure.ac +++ b/configure.ac @@ -151,21 +151,13 @@ AM_CONDITIONAL(USE_EGL, test "$USE_EGL" = "yes") # Check for Wayland USE_WAYLAND="no" -WAYLAND_DRM_CFLAGS="" -WAYLAND_DRM_LIBS="" if test "$enable_wayland" = "yes"; then PKG_CHECK_MODULES([WAYLAND], [wayland-client], [USE_WAYLAND="yes"], [:]) PKG_CHECK_MODULES([LIBVA_WAYLAND_DEPS], [libva-wayland], [AC_DEFINE([HAVE_VA_WAYLAND], [1], [Defined to 1 if VA/Wayland API is enabled])], [USE_WAYLAND="no"]) - if test "$USE_EGL" = "yes"; then - WAYLAND_DRM_CFLAGS="$DRM_CFLAGS" - WAYLAND_DRM_LIBS="$DRM_LIBS $EGL_LIBS" - fi fi AM_CONDITIONAL(USE_WAYLAND, test "$USE_WAYLAND" = "yes") -AC_SUBST([WAYLAND_DRM_CFLAGS]) -AC_SUBST([WAYLAND_DRM_LIBS]) m4_ifdef([WAYLAND_SCANNER_RULES], [WAYLAND_SCANNER_RULES(['$(top_srcdir)/src/wayland'])], |