From 53868985ff20badbcb70c69055937893fde1d91d Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Thu, 12 Jun 2014 16:26:49 +0200 Subject: clients: add simple-dmabuf client MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v2: - adapted to protocol changes - added TODO comments - minor clean-up - change y-invert from per-plane boolean to per-buffer flag v3: - fix a typo: 1 -> i (noticed by Carlos Olmedo Escobar) Signed-off-by: George Kiagiadakis Signed-off-by: Pekka Paalanen Signed-off-by: Louis-Francis Ratté-Boulianne Acked-by: Daniel Stone --- configure.ac | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 6c77826a..0f745817 100644 --- a/configure.ac +++ b/configure.ac @@ -335,6 +335,15 @@ if test x$enable_simple_egl_clients = xyes; then [egl >= 7.10 glesv2 wayland-client wayland-egl wayland-cursor]) fi +AC_ARG_ENABLE(simple-intel-dmabuf-client, + AS_HELP_STRING([--disable-simple-intel-dmabuf-client], + [do not build the simple intel dmabuf client]),, + enable_simple_intel_dmabuf_client="yes") +AM_CONDITIONAL(BUILD_SIMPLE_INTEL_DMABUF_CLIENT, test "x$enable_simple_intel_dmabuf_client" = "xyes") +if test "x$enable_simple_intel_dmabuf_client" = "xyes"; then + PKG_CHECK_MODULES(SIMPLE_DMABUF_CLIENT, [wayland-client libdrm libdrm_intel]) +fi + AC_ARG_ENABLE(clients, [ --enable-clients],, enable_clients=yes) AM_CONDITIONAL(BUILD_CLIENTS, test x$enable_clients = xyes) if test x$enable_clients = xyes; then -- cgit v1.2.1