Re: Arrgggh Wayland is not compiling again (xcb-composite)

2013-12-08 Thread Bill Spitzak
Thanks I got it to work. Two mistakes I made: 1. I clicked on the wrong package and installed the i386 one rather than the x86_64 one. 2. When autogen.sh is run it copies the current value of $PKG_CONFIG_PATH to configure.in. Thus my changes to this variable were being ignored each time I t

[PATCH 2/2] Add a FreeRds backend, take 2

2013-12-08 Thread Hardening
FreeRDS is a FreeRDP based RDP server, the server handles incoming connections and talks RDP with the peers. FreeRds cooperates with an "out-service": the out-service creates the content to display, and FreeRds will take care of encoding the content in the appropriate format (bitmapUpdate, remot

weston-launch and virtual terminals

2013-12-08 Thread Kalrish Bäakjen
Hello, For some time I have had FBCON and the VGA console disabled in the kernel, as kmscon works really great. However, it seems that the traditional in-kernel console is a requirement for weston-launch; without it, it will claim that it "must be run from a virtual terminal". I've tried several c

Re: [PATCH weston 06/11] configure.ac: Make AC_ARG_ENABLE calls consistent

2013-12-08 Thread sardemff7+wayland
On 08/12/2013 19:45, Quentin Glidic wrote: From: Quentin Glidic Signed-off-by: Quentin Glidic --- configure.ac | 128 ++- 1 file changed, 83 insertions(+), 45 deletions(-) diff --git a/configure.ac b/configure.ac index daf81eb..157dc3

[PATCH weston 07/11] configure.ac: m4-quote AM_CONDITIONAL tests

2013-12-08 Thread Quentin Glidic
From: Quentin Glidic Signed-off-by: Quentin Glidic --- configure.ac | 48 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/configure.ac b/configure.ac index 157dc3a..d5eb04b 100644 --- a/configure.ac +++ b/configure.ac @@ -68,7 +68

[PATCH weston 03/11] configure.ac: Correctly check for functions and libraries

2013-12-08 Thread Quentin Glidic
From: Quentin Glidic AC_SEARCH_LIBS is preferred over AC_CHECK_FUNC and AC_CHECK_LIB Signed-off-by: Quentin Glidic --- configure.ac | 37 + 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/configure.ac b/configure.ac index 40ae145..c169311 100

[PATCH weston 05/11] configure.ac: Use consistent quoting

2013-12-08 Thread Quentin Glidic
From: Quentin Glidic Also avoid "==" Bashisms Signed-off-by: Quentin Glidic --- configure.ac | 74 ++-- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/configure.ac b/configure.ac index 5b7c847..daf81eb 100644 --- a/config

[PATCH weston 04/11] configure.ac: Replace AC_ERROR with AC_MSG_ERROR

2013-12-08 Thread Quentin Glidic
From: Quentin Glidic Signed-off-by: Quentin Glidic --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index c169311..5b7c847 100644 --- a/configure.ac +++ b/configure.ac @@ -224,7 +224,7 @@ else if test "x$with_cairo" = "xglesv2

[PATCH weston 10/11] configure.ac: Reorder common stuff

2013-12-08 Thread Quentin Glidic
From: Quentin Glidic Signed-off-by: Quentin Glidic --- configure.ac | 56 1 file changed, 32 insertions(+), 24 deletions(-) diff --git a/configure.ac b/configure.ac index 4e76a2c..8238824 100644 --- a/configure.ac +++ b/configure.ac @@ -

[PATCH weston 02/11] autotools: Search for .m4 files in m4/

2013-12-08 Thread Quentin Glidic
From: Quentin Glidic It allows libtool to distribute its m4 files and the user to override its system ones if needed 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

[RFC v2 weston 00/11] Autotools cleanup and rework

2013-12-08 Thread Quentin Glidic
From: Quentin Glidic Thanks for comments and review. This new series should address all the points commented previously. First patches rewrite the configure.ac code to a cleaner version. Subsequent ones reorder and comment the file to make it easier for contributors to understand and write code.

[PATCH weston 08/11] configure.ac: Rework AC_ARG_WITH usages

2013-12-08 Thread Quentin Glidic
From: Quentin Glidic Also rework the --with-cairo option have priority over --with-cairo-glesv2 Signed-off-by: Quentin Glidic --- configure.ac | 65 1 file changed, 35 insertions(+), 30 deletions(-) diff --git a/configure.ac b/confi

[PATCH weston 06/11] configure.ac: Make AC_ARG_ENABLE calls consistent

2013-12-08 Thread Quentin Glidic
From: Quentin Glidic Signed-off-by: Quentin Glidic --- configure.ac | 128 ++- 1 file changed, 83 insertions(+), 45 deletions(-) diff --git a/configure.ac b/configure.ac index daf81eb..157dc3a 100644 --- a/configure.ac +++ b/configure.ac

[PATCH weston 09/11] configure.ac: Protect AC_PATH_PROG variables

2013-12-08 Thread Quentin Glidic
From: Quentin Glidic Signed-off-by: Quentin Glidic --- configure.ac | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 4f3e314..4e76a2c 100644 --- a/configure.ac +++ b/configure.ac @@ -516,13 +516,15 @@ if test "x$have_lcms" = "xyes"; the

[PATCH weston 01/11] autotools: Use AM_DISTCHECK_CONFIGURE_FLAGS

2013-12-08 Thread Quentin Glidic
From: Quentin Glidic DISTCHECK_CONFIGURE_FLAGS should be for the user to override configure switches specified by the package maintainer using AM_DISTCHECK_CONFIGURE_FLAGS Signed-off-by: Quentin Glidic --- With a little comment on “why?” :-) Makefile.am | 4 ++-- 1 file changed, 2 insertions(

[PATCH weston 11/11] configure.ac: Reorder weston-launch stuff

2013-12-08 Thread Quentin Glidic
From: Quentin Glidic Signed-off-by: Quentin Glidic --- configure.ac | 52 +--- 1 file changed, 29 insertions(+), 23 deletions(-) diff --git a/configure.ac b/configure.ac index 8238824..fcffe7e 100644 --- a/configure.ac +++ b/configure.ac @@ -101,

Re: Arrgggh Wayland is not compiling again (xcb-composite)

2013-12-08 Thread Emilio Pozuelo Monfort
On 08/12/13 16:48, Bill Spitzak wrote: > Make of weston is not working: > > ~/swdevl/wayland/weston$ make > /dev/nullconfigure: error: Package > requirements > (xcb xcb-xfixes xcb-composite xcursor cairo-xcb) were not met: > > No package 'xcb-composite' found > > I have the .pc file: > > ls /u

Arrgggh Wayland is not compiling again (xcb-composite)

2013-12-08 Thread Bill Spitzak
Make of weston is not working: ~/swdevl/wayland/weston$ make > /dev/nullconfigure: error: Package requirements (xcb xcb-xfixes xcb-composite xcursor cairo-xcb) were not met: No package 'xcb-composite' found I have the .pc file: ls /usr/lib/i386-linux-gnu/pkgconfig pthread-stubs.pc xcb-compo