Re: [PATCH][demos] COPYING: Gather all copyright/license notices

2011-06-19 Thread Cyril Brulebois
Cyril Brulebois (16/06/2011): > --- > COPYING | 97 > +++ > 1 files changed, 97 insertions(+), 0 deletions(-) > create mode 100644 COPYING > > Introducing packages in Debian usually means checking licenses,

[PATCH] configure: Use proper equality tests

2011-06-19 Thread Cyril Brulebois
POSIX says equality is tested through the = operator; == is a bashism. --- configure.ac | 22 +++--- 1 files changed, 11 insertions(+), 11 deletions(-) In case a pointer is needed: http://pubs.opengroup.org/onlinepubs/95399/utilities/test.html diff --git a/configure.ac b/

[PATCH][demos] configure: Make sure WAYLAND_SCANNER_RULES is defined

2011-06-19 Thread Cyril Brulebois
If wayland-scanner.m4 is missing, the WAYLAND_SCANNER_RULES macro is undefined, and this token ends up in the generated configure script. This makes autogen.sh (or autoreconf) succeed, but configure fail. Catch that at configure time, making sure the macro was expanded: | configure.ac:111: error:

[PATCH][demos] COPYING: Gather all copyright/license notices

2011-06-16 Thread Cyril Brulebois
--- COPYING | 97 +++ 1 files changed, 97 insertions(+), 0 deletions(-) create mode 100644 COPYING Introducing packages in Debian usually means checking licenses, and since there was just a data/COPYING (due to the DMZ theme addition)

Re: [PATCH:wayland-demos 1/2] Make sure pkg-config is available when autoreconfing.

2011-04-07 Thread Cyril Brulebois
Kristian Høgsberg (07/04/2011): > The way I use the pkgconfig macros is pretty standard - I don't see > any other projects use this extra check... I discussed that with pkg-config upstream past night, and he agreed documenting such a check would be nice. Just haven't opened a bug entry with a pat

[PATCH:wayland-demos 2/2] Check return value of XOpenDisplay().

2011-04-06 Thread Cyril Brulebois
Instead of calling XGetXCBConnection() blindly, check XOpenDisplay()'s return value to avoid a possible segfault in the former. That happens if $DISPLAY is set, but if that display isn't available. Signed-off-by: Cyril Brulebois --- compositor/compositor-x11.c |4 1 files

[PATCH:wayland-demos 1/2] Make sure pkg-config is available when autoreconfing.

2011-04-06 Thread Cyril Brulebois
igure.ac:18: the top level | autom4te: /usr/bin/m4 failed with exit status: 1 | aclocal: /usr/bin/autom4te failed with exit status: 1 | autoreconf: aclocal failed with exit status: 1 Signed-off-by: Cyril Brulebois --- configure.ac |1 + 1 files changed, 1 insertions(+), 0 deletions(-) The

Re: New build requirements related to wayland-egl

2011-02-09 Thread Cyril Brulebois
Hi, dar...@chaosreigns.com (07/02/2011): > Requirements for building wayland changed today as support for the > wayland egl platform in mesa was added. You kind of need to build > both mesa and wayland twice, due to them now depending on each > other. It sounds like this will be fixed by splitt