Re: no package vpx found when building weston

2012-05-31 Thread Scott Moreau
> > > Fedora packages worked for me as well but as pointed out on IRC, the -lm > is actually pulled in by cairo, which gets it from mesa. > > your cairo built for GL pulls in the deps from the mesa pc files > .la files tend to have excessive linking information > > The -lm bit should be fixed by

Re: [PATCH weston 30/31] Add weston_compositor::input_init

2012-05-31 Thread Daniel Stone
Hi, On 31 May 2012 21:58, Kristian Høgsberg wrote: > On Wed, May 30, 2012 at 04:32:08PM +0100, Daniel Stone wrote: >> This function gets called after backend_init, so compositors can add >> their input devices slightly later on in the process.  This gives us a >> chance to set the default XKB rul

Re: [PATCH weston 30/31] Add weston_compositor::input_init

2012-05-31 Thread Kristian Høgsberg
On Wed, May 30, 2012 at 04:32:08PM +0100, Daniel Stone wrote: > This function gets called after backend_init, so compositors can add > their input devices slightly later on in the process. This gives us a > chance to set the default XKB rulesets, in particular. I don't like input_init. The start

[PATCH v4 1/2] Weston: log.c, log.h

2012-05-31 Thread Martin Minarik
This is logging functionality for weston compositor. It handles: messages coming from libwayland-server from wl_log() messages from weston itself, from weston_log() Introduce --log option, to specify log file path on the command line. When the path is incorrect, or on weston_log_file_destroy(),

[PATCH weston v2] Text cursor position protocol follow-up.

2012-05-31 Thread Scott Moreau
* Drop user input detection since cursor position may change when pasting text, for example. * Use fixed type in protocol. --- Changed int to fixed in protocol/text-cursor-position.xml clients/window.c | 15 +-- clients/window.h |2 +- protocol

[PATCH weston] Text cursor position protocol follow-up.

2012-05-31 Thread Scott Moreau
* Drop user input detection since cursor position may change when pasting text, for example. * Use fixed type in protocol. --- I'm not particularly thrilled with switching back and forth between fixed types, but I wasn't able to find an immediate better solution, having the protocol accept fixed

Re: [PATCH weston 06/31] Do binding modifier lookup on XKB state, not physical keys

2012-05-31 Thread Kristian Høgsberg
On Wed, May 30, 2012 at 04:31:44PM +0100, Daniel Stone wrote: > When we update the modifier_state used for Weston bindings, derive this > from the XKB modifier state, rather than a hardcoded mapping of physical > keys to modifier state. > > Signed-off-by: Daniel Stone > --- > src/compositor.c |

Re: no package vpx found when building weston

2012-05-31 Thread Scott Moreau
On Thu, May 31, 2012 at 1:19 PM, Kristian Høgsberg wrote: > On Thu, May 31, 2012 at 3:10 PM, Casey Dahlin wrote: > > On Thu, May 31, 2012 at 12:17:00PM -0400, dar...@chaosreigns.com wrote: > >> On 05/31, Prigent, Christophe wrote: > >> >I had an error when building Weston: "package requiremen

Re: no package vpx found when building weston

2012-05-31 Thread Kristian Høgsberg
On Thu, May 31, 2012 at 3:10 PM, Casey Dahlin wrote: > On Thu, May 31, 2012 at 12:17:00PM -0400, dar...@chaosreigns.com wrote: >> On 05/31, Prigent, Christophe wrote: >> >    I had an error when building Weston: "package requirements (cairo vpx) >> >    were not met: no package vpx found". >> > >>

Re: no package vpx found when building weston

2012-05-31 Thread Casey Dahlin
On Thu, May 31, 2012 at 12:17:00PM -0400, dar...@chaosreigns.com wrote: > On 05/31, Prigent, Christophe wrote: > >I had an error when building Weston: "package requirements (cairo vpx) > >were not met: no package vpx found". > > > >The installation of libvpx0 and libvpx-dev from the sy

Re: [PATCH weston 1/5] compositor: work around missing SOCK_CLOEXEC

2012-05-31 Thread Kristian Høgsberg
On Wed, May 30, 2012 at 03:53:41PM +0300, Pekka Paalanen wrote: > Android does not have SOCK_CLOEXEC, so implement a wrapper that falls > back. Entire series applied, thanks. Kristian > Signed-off-by: Pekka Paalanen > --- > shared/Makefile.am|2 + > shared/os-compatibility.c | 78

Re: [PATCH v2 2/2] Wayland: logging, replace printf by wl_log

2012-05-31 Thread Kristian Høgsberg
On Mon, May 28, 2012 at 12:25:34PM +0200, Martin Minarik wrote: > The wl_log() takes the same parameters as regular printf Committed, thanks. Kristian > --- > src/wayland-server.c | 17 +++-- > 1 files changed, 7 insertions(+), 10 deletions(-) > > diff --git a/src/wayland-server.

Re: [PATCH v2 1/2] Wayland: logging

2012-05-31 Thread Kristian Høgsberg
On Mon, May 28, 2012 at 12:18:25PM +0200, Martin Minarik wrote: > The core libwayland libraries should not handle logging, only passing > the error messages to subscribed functions. > An application linked to libwayland-server or libwayland-client > will be able to set own functions (one per librar

Re: gtk3-demo-application not running in gtk with Wayland back end

2012-05-31 Thread Andrew Guertin
On 05/28/2012 04:59 AM, suranjana.bhattacha...@wipro.com wrote: > (gtk3-demo-application:24881): GLib-GIO-ERROR **: Settings schema > 'org.gtk.Demo' is not installed Try setting the XDG_DATA_DIRS or GSETTINGS_SCHEMA_DIR environment variable. ___ wayland

Re: [PATCH weston v4] Implement text cursor position protocol.

2012-05-31 Thread Scott Moreau
On Thu, May 31, 2012 at 11:10 AM, Kristian Høgsberg wrote: > On Sun, May 27, 2012 at 02:25:02PM -0600, Scott Moreau wrote: > > Here we create a new client/compositor interface in weston to allow > > clients to report their x/y cursor position to the compositor. These > > values are then used to ce

Re: [PATCH xserver v2] Always use WL_SHM_FORMAT_ARGB8888 for shm surfaces.

2012-05-31 Thread Kristian Høgsberg
On Sun, May 27, 2012 at 02:58:34AM -0600, Scott Moreau wrote: > --- Looks good, committed. > Remove unused variables. > > hw/xfree86/xwayland/xwayland.c | 21 + > 1 files changed, 5 insertions(+), 16 deletions(-) > > diff --git a/hw/xfree86/xwayland/xwayland.c b/hw/xfree8

Re: [PATCH weston v4] Implement text cursor position protocol.

2012-05-31 Thread Kristian Høgsberg
On Sun, May 27, 2012 at 02:25:02PM -0600, Scott Moreau wrote: > Here we create a new client/compositor interface in weston to allow > clients to report their x/y cursor position to the compositor. These > values are then used to center the zoom area on this point. This > is useful for everyone, esp

Re: no package vpx found when building weston

2012-05-31 Thread darxus
On 05/31, Prigent, Christophe wrote: >I had an error when building Weston: "package requirements (cairo vpx) >were not met: no package vpx found". > >The installation of libvpx0 and libvpx-dev from the synaptic package >manager didn’t fix the problem. I found that there is no .pc f

Re: no package vpx found when building weston

2012-05-31 Thread Kristian Høgsberg
You can just disable the capture tools, pass --disable-wcap-tools to configure. Kristian On Thu, May 31, 2012 at 10:22 AM, Prigent, Christophe wrote: > I had an error when building Weston: "package requirements (cairo vpx) were > not met: no package vpx found". > > The installation of libvpx0 an

no package vpx found when building weston

2012-05-31 Thread Prigent, Christophe
I had an error when building Weston: "package requirements (cairo vpx) were not met: no package vpx found". The installation of libvpx0 and libvpx-dev from the synaptic package manager didn't fix the problem. I found that there is no .pc file related to it inside /usr/share/pkgconfig. I'm workin

RE: Build Webkit with Waylnad backend and wayland plugins

2012-05-31 Thread suranjana.bhattacharya
Hello, Thanks for the help! I am making changes in the PluginViewGtk.cpp file to add conditional checking for "GDK_WINDOWING_X11" and "GDK_WINDOWING_WAYLAND" on the macros which is directly calling X11 macros, like. #ifdef GDK_WINDOWING_X11 Display* display = GDK_DISPLAY_XDISPL

Re: Build Webkit with Waylnad backend and wayland plugins

2012-05-31 Thread Mika Boström
On 05/31/12 14:43, suranjana.bhattacha...@wipro.com wrote: > Hello, I am trying to build webkit 1.8.0 with Wayland backend . > Following are the configuration I am working with. > > 1. Wayland : 0.85 > 2. Webkit : 1.8.0 > 3. gtk +-3.4 > > I found that webkit is using gtk plugins which is internal

Build Webkit with Waylnad backend and wayland plugins

2012-05-31 Thread suranjana.bhattacharya
Hello, I am trying to build webkit 1.8.0 with Wayland backend . Following are the configuration I am working with. 1. Wayland : 0.85 2. Webkit : 1.8.0 3. gtk +-3.4 I found that webkit is using gtk plugins which is internally referring X11 macro. Can anyone help me which are the files I need to