[PATCH weston 2/4] autotools: Search for .m4 files in m4/

2013-12-06 Thread Quentin Glidic
From: Quentin Glidic Signed-off-by: Quentin Glidic --- Makefile.am | 2 ++ configure.ac | 1 + 2 files changed, 3 insertions(+) diff --git a/Makefile.am b/Makefile.am index 38b6ad6..43fd307 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,5 @@ +ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} +

[RFC weston 0/4] Autotools cleanup & rework

2013-12-06 Thread Quentin Glidic
From: Quentin Glidic These are the first four patches I am going to send to clean the Weston Åutotools stuff. They are good to push directly, the RFC stands for the “is the overall design ok?” question. If these one are pushed, I will work on cleaning the rest of the configure.ac file and then

[PATCH weston 1/4] autotools: Use AM_DISTCHECK_CONFIGURE_FLAGS

2013-12-06 Thread Quentin Glidic
From: Quentin Glidic Signed-off-by: Quentin Glidic --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 85d08e9..38b6ad6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,5 @@ +AM_DISTCHECK_CONFIGURE_FLAGS = --disable-setuid

[PATCH weston 4/4] configure.ac: Split weston-launch stuff

2013-12-06 Thread Quentin Glidic
From: Quentin Glidic Signed-off-by: Quentin Glidic --- configure.ac| 16 +--- m4/weston-launch.m4 | 24 2 files changed, 25 insertions(+), 15 deletions(-) create mode 100644 m4/weston-launch.m4 diff --git a/configure.ac b/configure.ac index eaa2af1

[PATCH weston 3/4] configure.ac: Split common stuff to m4/common.m4

2013-12-06 Thread Quentin Glidic
From: Quentin Glidic Signed-off-by: Quentin Glidic --- configure.ac | 41 ++--- m4/common.m4 | 54 ++ 2 files changed, 56 insertions(+), 39 deletions(-) create mode 100644 m4/common.m4 diff --git a/configu

Re: [PATCH weston v2] input: make sure the devices get the resource destruction signal

2013-12-06 Thread Jason Ekstrand
Yeah, this is a good idea. --Jason Ekstrand Reviewed-By: Jason Ekstrand On Dec 6, 2013 5:48 AM, "Giulio Camuffo" wrote: > The device may not have a resource for the client yet, but install > the listeners nevertheless. > Fixes https://bugs.freedesktop.org/show_bug.cgi?id=65726 > --- > > v2: ad

[PATCH weston v2] input: make sure the devices get the resource destruction signal

2013-12-06 Thread Giulio Camuffo
The device may not have a resource for the client yet, but install the listeners nevertheless. Fixes https://bugs.freedesktop.org/show_bug.cgi?id=65726 --- v2: add a check on the surface's resource src/input.c | 26 ++ 1 file changed, 14 insertions(+), 12 deletions(-) di

[PATCH weston] input: make sure the devices get the resource destruction signal

2013-12-06 Thread Giulio Camuffo
The device may not have a resource for the client yet, but install the listeners nevertheless. Fixes https://bugs.freedesktop.org/show_bug.cgi?id=65726 --- src/input.c | 24 +--- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/input.c b/src/input.c index e29