Re: [PATCH weston] configure: fix enable_simple_intel_dmabuf_client=auto

2015-08-17 Thread Pekka Paalanen
On Mon, 17 Aug 2015 13:54:55 +0100
Daniel Stone dan...@fooishbar.org wrote:

 Hi,
 
 On 17 August 2015 at 08:27, Pekka Paalanen ppaala...@gmail.com wrote:
  When the user does not specify --enable nor
  --disable-simple-intel-dmabuf-client, we want to autodetect based on
  dependencies. cb512c018e8db66574b4e0d1263c52a05267918c implemented this,
  but forgot to actually enable it if the autodetect comes positive.
 
  Cc: Daniel Stone dan...@fooishbar.org
  Signed-off-by: Pekka Paalanen pekka.paala...@collabora.co.uk
 
 Perfect, thanks Pekka.
 
 Reviewed-by: Daniel Stone dani...@collabora.com

And pushed:
   f2bf50e..8358305  master - master


Thanks,
pq


pgpYD_jmGiIql.pgp
Description: OpenPGP digital signature
___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel


Re: [PATCH weston] configure: fix enable_simple_intel_dmabuf_client=auto

2015-08-17 Thread Daniel Stone
Hi,

On 17 August 2015 at 08:27, Pekka Paalanen ppaala...@gmail.com wrote:
 When the user does not specify --enable nor
 --disable-simple-intel-dmabuf-client, we want to autodetect based on
 dependencies. cb512c018e8db66574b4e0d1263c52a05267918c implemented this,
 but forgot to actually enable it if the autodetect comes positive.

 Cc: Daniel Stone dan...@fooishbar.org
 Signed-off-by: Pekka Paalanen pekka.paala...@collabora.co.uk

Perfect, thanks Pekka.

Reviewed-by: Daniel Stone dani...@collabora.com

Cheers,
Daniel
___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel


[PATCH weston] configure: fix enable_simple_intel_dmabuf_client=auto

2015-08-17 Thread Pekka Paalanen
From: Pekka Paalanen pekka.paala...@collabora.co.uk

When the user does not specify --enable nor
--disable-simple-intel-dmabuf-client, we want to autodetect based on
dependencies. cb512c018e8db66574b4e0d1263c52a05267918c implemented this,
but forgot to actually enable it if the autodetect comes positive.

Cc: Daniel Stone dan...@fooishbar.org
Signed-off-by: Pekka Paalanen pekka.paala...@collabora.co.uk
---
 configure.ac | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure.ac b/configure.ac
index aa29862..425f071 100644
--- a/configure.ac
+++ b/configure.ac
@@ -348,6 +348,7 @@ if ! test x$enable_simple_intel_dmabuf_client = xno; 
then
   if test x$have_simple_dmabuf_client = xno -a 
x$enable_simple_intel_dmabuf_client = xyes; then
 AC_MSG_ERROR([Intel dmabuf client explicitly enabled, but libdrm_intel 
couldn't be found])
   fi
+  enable_simple_intel_dmabuf_client=$have_simple_dmabuf_client
 fi
 AM_CONDITIONAL(BUILD_SIMPLE_INTEL_DMABUF_CLIENT, test 
x$enable_simple_intel_dmabuf_client = xyes)
 
-- 
2.4.6

___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel