Re: [PULL] input fixes for 1.8

2010-04-01 Thread Daniel Stone
On Wed, Mar 31, 2010 at 10:07:03AM -0700, Dan Nicholson wrote: > On Wed, Mar 31, 2010 at 9:32 AM, Keith Packard wrote: > > Does the existing released evdev driver work with the new server if > > recompiled? If not, we must release the evdev driver before the server > > (and ensure that it works ac

RE: Big patch of XGI because of a big feature

2010-04-01 Thread Jong Lin
Hi Gaetan, Could you please help on the following issue? It needs to be signed by someone else at fd.o. Thank you very much. "Asking for an account to commit patches to xorg/driver/xf86-video-xgi" http://bugs.freedesktop.org/show_bug.cgi?id=26036

Re: libXfont: Changes to 'master'

2010-04-01 Thread Gaetan Nadon
On Wed, 2010-03-31 at 20:10 -0700, Jeremy Huddleston wrote: > On Mar 31, 2010, at 18:10, Gaetan Nadon wrote: > > >> Oops, there's a couple issues with that patch. > >> > >> 1. AC_CONFIG_HEADERS does not appear to make the config.h.in template > >> for you when there are multiple files passed to

Re: [PULL] input fixes for 1.8

2010-04-01 Thread Keith Packard
On Thu, 1 Apr 2010 18:13:41 +1100, Daniel Stone wrote: > If you're happy moving the config file to the server, then I think we're > fine to release the server, as the current release of evdev works fine > with 1.8. I think Peter had a few more things he wanted to do before > cutting a final evde

[PATCH] xfree86: die gracefully in the vga arbiter if AddScreen fails

2010-04-01 Thread Tiago Vignatti
vga arbiter will be locked in one device while AbortDDX will call LeaveVT routines from the other device. Fail! Signed-off-by: Tiago Vignatti --- Keith, you might want to apply in 1.8 this one. The stack is the following, where NVSync stays spinning forever: 0xb72828f9 in NVSync (pScrn=0x9277

Re: libXfont: Changes to 'master'

2010-04-01 Thread Jeremy Huddleston
I have no idea why this was resent, sorry... On Mar 31, 2010, at 14:46, Jeremy Huddleston wrote: > This introduced a regression on tinderbox: > > http://tinderbox.x.org/builds/2010-03-31-0030/logs/libXfont > > > On Mar 30, 2010, at 10:19, Gaetan Nadon wrote: > >> Makefile.am |3 +-- >> co

[RFC] Make MAXSCREENS run-time configurable

2010-04-01 Thread Tiago Vignatti
Allows MAXSCREENS to be determined at run time instead of compile time, adding a new -maxscreens command line flag. *** Attention ABI broken everywhere! *** There's also a tiny work needed on driver side, to change some DGA structure. And if you don't, some really weird pointers will get lost eve

[RFC vmmouse] Install support files to try and have the driver loaded automatically via udev.

2010-04-01 Thread Michel Dänzer
From: Michel Dänzer --- Makefile.am |2 +- configure.ac | 32 +++- udev/10-vmmouse.conf |7 +++ udev/69-xorg-vmmouse.rules.in |1 + udev/Makefile.am | 39 +

Re: [PATCH evdev] When building against server 1.8, install 00-evdev.conf.

2010-04-01 Thread Dan Nicholson
On Wed, Mar 31, 2010 at 6:22 PM, Alan Coopersmith wrote: > Dan Nicholson wrote: >> Not quite. The hal backend ignores any devices that don't have the >> input.x11_driver key set. We could change that, but it might be better >> to keep this behavior for consistency. > > So right now, if I start up

Re: libXfont: Changes to 'master'

2010-04-01 Thread Dan Nicholson
On Wed, Mar 31, 2010 at 6:10 PM, Gaetan Nadon wrote: > On Wed, 2010-03-31 at 15:12 -0700, Dan Nicholson wrote: > > On Wed, Mar 31, 2010 at 2:46 PM, Jeremy Huddleston > wrote: >> This introduced a regression on tinderbox: >> >> http://tinderbox.x.org/builds/2010-03-31-0030/logs/libXfont >> >> >> O

[PATCH libXfont] config: replace obsolete AM_CONFIG_HEADER with AC_CONFIG_HEADERS

2010-04-01 Thread Gaetan Nadon
There are 2 headers to generate. The first one (config.h) is picked up by autoheader to generate the familiar config.h.in input file. The others in the list (or in subsequent AC_CONFIG_HEADERS macro calls) are generated from their existing matching template, e.g. fontconf.h.in. When multiple heade

Re: [PATCH] Remove deprecated "nv" driver from autoconfiguration list

2010-04-01 Thread Adam Jackson
On Wed, 2010-03-31 at 23:18 +0200, Mark Kettenis wrote: > > From: Alan Coopersmith > > Date: Wed, 31 Mar 2010 13:38:08 -0700 > > > > Nvidia hardware will now default to "vesa" until an xorg.conf file is > > created to set it to "nv", "nvidia", or "nouveau". > > The vesa driver only works on i386

[PATCH libXfont] config: fontconf.h.in is redundant in EXTRA_DIST

2010-04-01 Thread Gaetan Nadon
Output files listed in AC_CONFIG_HEADERS or AC_OUTPUT have their input files (typically .in) included in the tarball. Signed-off-by: Gaetan Nadon --- Makefile.am |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 7aee053..49102e8 100644 ---

Re: [PATCH libXfont] config: fontconf.h.in is redundant in EXTRA_DIST

2010-04-01 Thread Dan Nicholson
On Thu, Apr 1, 2010 at 12:36 PM, Gaetan Nadon wrote: > Output files listed in AC_CONFIG_HEADERS or AC_OUTPUT have > their input files (typically .in) included in the tarball. > > Signed-off-by: Gaetan Nadon Reviewed-by: Dan Nicholson ___ xorg-devel@li

Re: [PATCH libXfont] config: replace obsolete AM_CONFIG_HEADER with AC_CONFIG_HEADERS

2010-04-01 Thread Dan Nicholson
On Thu, Apr 1, 2010 at 11:12 AM, Gaetan Nadon wrote: > There are 2 headers to generate. The first one (config.h) > is picked up by autoheader to generate the familiar config.h.in > input file. The others in the list (or in subsequent AC_CONFIG_HEADERS > macro calls) are generated from their existi

Re: [RFC] Make MAXSCREENS run-time configurable

2010-04-01 Thread Kevin E Martin
On Thu, Apr 01, 2010 at 07:19:11PM +0300, Tiago Vignatti wrote: > Allows MAXSCREENS to be determined at run time instead of compile time, adding > a new -maxscreens command line flag. > > *** Attention ABI broken everywhere! *** > > There's also a tiny work needed on driver side, to change some D

[PATCH xserver] doc: specify 1.6.1 as the minimum version for doxygen.

2010-04-01 Thread Gaetan Nadon
Older versions generate filenames that are different from the ones listed in the Makefile. Signed-off-by: Gaetan Nadon --- configure.ac |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 5f08688..bee6563 100644 --- a/configure.ac +++ b

Re: [PATCH xserver] doc: specify 1.6.1 as the minimum version for doxygen.

2010-04-01 Thread Jeremy Huddleston
Reviewed-by: Jeremy Huddleston On Apr 1, 2010, at 12:53, Gaetan Nadon wrote: > Older versions generate filenames that are different from > the ones listed in the Makefile. > > Signed-off-by: Gaetan Nadon > --- > configure.ac |6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > >

Re: [RFC] Make MAXSCREENS run-time configurable

2010-04-01 Thread Rémi Cardona
Le 01/04/2010 18:19, Tiago Vignatti a écrit : > Allows MAXSCREENS to be determined at run time instead of compile time, adding > a new -maxscreens command line flag. [snip] There seems to be a lot of busted indentation throughout the patch. But if this is just a first review, I won't nitpick :)

Re: [RFC vmmouse] Install support files to try and have the driver loaded automatically via udev.

2010-04-01 Thread Dan Nicholson
2010/4/1 Michel Dänzer : > From: Michel Dänzer > > --- >  Makefile.am                   |    2 +- >  configure.ac                  |   32 +++- >  udev/10-vmmouse.conf          |    7 +++ >  udev/69-xorg-vmmouse.rules.in |    1 + >  udev/Makefile.am              |  

Re: [PATCH] Remove deprecated "nv" driver from autoconfiguration list

2010-04-01 Thread Mark Kettenis
> Date: Wed, 31 Mar 2010 15:10:39 -0700 > From: Alan Coopersmith > > Mark Kettenis wrote: > >> From: Alan Coopersmith > >> Date: Wed, 31 Mar 2010 13:38:08 -0700 > >> > >> Nvidia hardware will now default to "vesa" until an xorg.conf file is > >> created to set it to "nv", "nvidia", or "nouveau".

Re: [PATCH] Remove deprecated "nv" driver from autoconfiguration list

2010-04-01 Thread Mark Kettenis
> From: Adam Jackson > Date: Thu, 01 Apr 2010 14:19:37 -0400 > > On Wed, 2010-03-31 at 23:18 +0200, Mark Kettenis wrote: > > > From: Alan Coopersmith > > > Date: Wed, 31 Mar 2010 13:38:08 -0700 > > >=20 > > > Nvidia hardware will now default to "vesa" until an xorg.conf file is > > > created to

[PULL] XQuartz.app version bump for 1.8

2010-04-01 Thread Jeremy Huddleston
I'd like to bump the version number of the XQuartz app bundle for 1.8. Thanks, Jeremy The following changes since commit 67b814d9b2baea6beccfb1625a1e3f0b2ba7218b: Ruediger Oertel (1): Remove now obsolete function chooseVideoDriver are available in the git repository at: git://anongi

[PATCH xinput 1/2] man: Use AC_PROG_SED to find sed

2010-04-01 Thread Yaakov (Cygwin/X)
From: Yaakov Selkowitz Signed-off-by: Yaakov Selkowitz --- configure.ac|1 + man/Makefile.am |4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 32facc7..c50b7b2 100644 --- a/configure.ac +++ b/configure.ac @@ -16,6 +16,7 @@ AM_C

[PATCH xinput 2/2] man: use automake silent rules

2010-04-01 Thread Yaakov (Cygwin/X)
From: Yaakov Selkowitz Signed-off-by: Yaakov Selkowitz --- man/Makefile.am |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/man/Makefile.am b/man/Makefile.am index 7902ff7..6608ff7 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -47,5 +47,5 @@ MAN_SUBSTS = \ SUFF

Re: [PATCH xinput 2/2] man: use automake silent rules

2010-04-01 Thread Rémi Cardona
Le 02/04/2010 07:30, Yaakov (Cygwin/X) a écrit : > From: Yaakov Selkowitz > > Signed-off-by: Yaakov Selkowitz Both patches: Reviewed-by: Rémi Cardona Cheers, Rémi ___ xorg-devel@lists.x.org: X.Org development Archives: http://lists.x.org/archives/

[PATCH libXt] Use automake silent rules for BUILT_SOURCES generation

2010-04-01 Thread Yaakov (Cygwin/X)
From: Yaakov Selkowitz Signed-off-by: Yaakov Selkowitz --- src/Makefile.am | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index a43fb22..2b39ec5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -97,9 +97,9 @@ all-local: