Re: [PATCH] Support installing systemd unit file.

2011-08-29 Thread Michał Górny
On Sun, 28 Aug 2011 17:53:07 +0600 Alexander E. Patrakov patrakov-re5jqeeqqe8avxtiumw...@public.gmane.org wrote: 28.08.2011 13:49, Michał Górny wrote: +[Unit] +Description=X-Window Display Manager on %I +Requires=dev-%i.device +After=dev-%i.device systemd-user-sessions.service +

Re: [PATCH] Support installing systemd unit file.

2011-08-29 Thread Michał Górny
On Sun, 28 Aug 2011 17:12:41 -0400 Gaetan Nadon mems...@videotron.ca wrote: +if HAVE_SYSTEMD +systemdsystemunit_DATA = xdm.service + +xdm.service: xdm.service.in + $(AM_V_GEN)$(SED) -e 's|BINDIR|$(bindir)|g' $ $@ + +MOSTLYCLEANFILES = xdm.service +endif HAVE_SYSTEMD

[PATCH libpciaccess] common_interface.c: Use proper byteswap functions on APPLE systems

2011-08-29 Thread shea
APPLE systems do not have sys/endian.h, they have architecture/byte_order.h instead. Signed-off-by: Shea Levy s...@shealevy.com --- src/common_interface.c | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/src/common_interface.c b/src/common_interface.c

XDND Protocol - Help needed

2011-08-29 Thread Andrea Azzarone
Hi, I'm working with XDND Protocol and I need your help. My goal is collecting dnd data as soon as dnd starts and not when mouse pointer enters my X Window. Now I'm able to know when a drag and drop start playing with XdndSelection. To collect dnd data I've used a fake X window that appears as

Re: libXaw3d: optional features

2011-08-29 Thread Thomas Dickey
On Mon, 29 Aug 2011, Rafa�~B Muży�~Bo wrote: On Sun, Aug 28, 2011 at 10:15:05AM -0400, Gaetan Nadon wrote: AM_YFLAGS is usually used to pass the -d option to yacc. Automake knows what this means and will automatically adjust its rules to update and distribute the

[PATCH 1/2] dri2: Let client call swap before previous swap target has been passed

2011-08-29 Thread Pauli Nieminen
From: Pauli Nieminen pauli.niemi...@linux.intel.com Client has to be allowed to call swap buffers before last_swap_target has been passed if driver implements triple buffering with swap_interval. Time that swap may come before reaching last_swap_target is swap_limit * swap_interval if

[PATCH 2/2] DRI2: Free DRI2 drawable references in DRI2DestroyDrawable

2011-08-29 Thread Pauli Nieminen
From: Pauli Nieminen pauli.niemi...@linux.intel.com If client calls DRI2CreateDrawable multiple times for same drawable DRI2 creates multiple references. Multiple references cause DRI2 send multiple invalidate events for same client. Problem is easy to see in xtrace. Like following filtered

Re: [PATCH 1/2] dri2: Let client call swap before previous swap target has been passed

2011-08-29 Thread walter harms
Am 29.08.2011 13:45, schrieb Pauli Nieminen: From: Pauli Nieminen pauli.niemi...@linux.intel.com Client has to be allowed to call swap buffers before last_swap_target has been passed if driver implements triple buffering with swap_interval. Time that swap may come before reaching

Re: libXaw3d: optional features

2011-08-29 Thread Rafał Mużyło
On Mon, Aug 29, 2011 at 05:16:03AM -0400, Thomas Dickey wrote: On Mon, 29 Aug 2011, Rafa?~B Muży?~Bo wrote: I can't say that I've used yacc, but 'bison -y -Wall' doesn't print any compatibility warnings about '%defines', so it should have been OK. It's bison-specific, as you might have

Re: [PATCH libpciaccess] common_interface.c: Use proper byteswap functions on APPLE systems

2011-08-29 Thread Alan Coopersmith
On 08/29/11 00:53, s...@shealevy.com wrote: APPLE systems do not have sys/endian.h, they have architecture/byte_order.h instead. Making libpciaccess work on MacOS is going to take a lot more than just fixing byte-swapping - are you doing a full port? -- -Alan Coopersmith-

Re: [PATCH:xf86-video-v4l] Bump version for development.

2011-08-29 Thread Mauro Carvalho Chehab
Em 28-06-2011 11:11, Cyril Brulebois escreveu: Signed-off-by: Cyril Brulebois k...@debian.org --- configure.ac |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) The version number wasn't bumped after 0.2.0; given the big changes from Mauro Carvalho Chehab to support V4L2, having

Re: [PATCH] Support installing systemd unit file.

2011-08-29 Thread Gaetan Nadon
On Sun, 2011-08-28 at 09:49 +0200, Michał Górny wrote: +if HAVE_SYSTEMD +systemdsystemunit_DATA = xdm.service + +xdm.service: xdm.service.in + $(AM_V_GEN)$(SED) -e 's|BINDIR|$(bindir)|g' $ $@ + Almost forgot: add xdm.service at the bottom of the .gitignore file. If you do a 'git

[PATCH] edid-decode: Be explicit about valid checksums

2011-08-29 Thread Tormod Volden
From: Tormod Volden debian.tor...@gmail.com Also fix some formatting and typos. --- edid-decode.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/edid-decode.c b/edid-decode.c index cb6fec2..923556a 100644 --- a/edid-decode.c +++ b/edid-decode.c @@ -219,7

Re: [PATCH libpciaccess] common_interface.c: Use proper byteswap functions on APPLE systems

2011-08-29 Thread shea
On 08/29/11 00:53, s...@shealevy.com wrote: APPLE systems do not have sys/endian.h, they have architecture/byte_order.h instead. Making libpciaccess work on MacOS is going to take a lot more than just fixing byte-swapping - are you doing a full port? -- -Alan Coopersmith-