Re: [PATCH 01/14] doc: Fix typo.

2011-06-05 Thread Alan Coopersmith
- Patch 4: I agree with Jamey's suggestion. - Patch 9: I would bet sometime before xmlization, the document was mailed around via a mail system that added '>' before lines starting with "From " to avoid confusion with the classic Unix mailbox new message delimiter. In any case, I agree it d

Re: [PATCH 01/14] doc: Fix typo.

2011-06-05 Thread Jamey Sharp
I've commented on patches 4 and 10. I'm not up for evaluating 13 or 14. Otherwise, for patches 1-12: Reviewed-by: Jamey Sharp On Mon, Jun 06, 2011 at 02:24:59AM +0200, Cyril Brulebois wrote: > Signed-off-by: Cyril Brulebois > --- > doc/c-extensions |2 +- > 1 files changed, 1 insertions(+)

Re: [PATCH 2/4] Remove the cacheing of the last scratch PixmapRec

2011-06-05 Thread Keith Packard
On Mon, 6 Jun 2011 06:36:07 +0100, Chris Wilson wrote: > In order for the driver to be notified of when the resource backing the > scratch pixmap becomes no longer accessible, it needs to be called on > every FreeScratchPixmapHeader(). As we instead maybe cached the > PixmapRec (to avoid the fr

Re: [PATCH 10/14] doc: Fix ponctuation.

2011-06-05 Thread Jamey Sharp
"ponctuation"? Tee-hee. Commit message aside, Reviewed-by: Jamey Sharp On Mon, Jun 06, 2011 at 02:25:08AM +0200, Cyril Brulebois wrote: > Signed-off-by: Cyril Brulebois > --- > doc/Xinput.xml |6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/doc/Xinput.xml b/d

Re: [PATCH 04/14] doc: Fix grammar and typos.

2011-06-05 Thread Jamey Sharp
On Mon, Jun 06, 2011 at 02:25:02AM +0200, Cyril Brulebois wrote: > --- a/doc/smartsched > +++ b/doc/smartsched > @@ -104,7 +104,7 @@ into select; ReadRequestFromClient causes the server to > yield when the > client request buffer doesn't contain a complete request. When > that buffer is execute

Re: [PATCH 3/4] sdksyms.dep: Enable silent rules for sdksyms.sh

2011-06-05 Thread Alan Coopersmith
On 06/ 5/11 10:58 AM, Cyril Brulebois wrote: > Signed-off-by: Cyril Brulebois > --- > hw/xfree86/loader/Makefile.am |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/hw/xfree86/loader/Makefile.am b/hw/xfree86/loader/Makefile.am > index 0e5b304..054dca9 100644 > --- a

Re: [PATCH 1/4] configure.ac: Fix help string for mitshm.

2011-06-05 Thread Alan Coopersmith
On 06/ 5/11 10:58 AM, Cyril Brulebois wrote: > Pasting from ./configure --help's output, one would get: > | configure: WARNING: unrecognized options: --disable-shm > > Fix the help string to include the previously missing “mit” bits. > > Signed-off-by: Cyril Brulebois > --- > configure.ac |

Re: [PATCH 4/4] render: Replace __inline with inline.

2011-06-05 Thread Alan Coopersmith
On 06/ 5/11 10:58 AM, Cyril Brulebois wrote: > Also remove traces from the past. > > Signed-off-by: Cyril Brulebois > --- > render/mipict.c |6 +- > 1 files changed, 1 insertions(+), 5 deletions(-) > > diff --git a/render/mipict.c b/render/mipict.c > index 08b2fa7..9a44c27 100644 > ---

[PATCH 2/4] Remove the cacheing of the last scratch PixmapRec

2011-06-05 Thread Chris Wilson
In order for the driver to be notified of when the resource backing the scratch pixmap becomes no longer accessible, it needs to be called on every FreeScratchPixmapHeader(). As we instead maybe cached the PixmapRec (to avoid the free and malloc overhead), this notification went astray, and the dri

[PATCH 4/4] shadow: Remove unused ModifyPixmapHeader wrapping

2011-06-05 Thread Chris Wilson
Signed-off-by: Chris Wilson --- hw/xfree86/shadowfb/shadow.c |3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/hw/xfree86/shadowfb/shadow.c b/hw/xfree86/shadowfb/shadow.c index 5cc476a..46d481b 100644 --- a/hw/xfree86/shadowfb/shadow.c +++ b/hw/xfree86/shadowfb/shadow.c @

[PATCH 1/4] xaa: Free the scratch pixmap header before freeing the contents

2011-06-05 Thread Chris Wilson
Some DDX may be sensitive to the ordering and could conceivably continue to use the memory freed before FreeScratchPixmapHeader is called. Signed-off-by: Chris Wilson --- hw/xfree86/xaa/xaaOffscreen.c |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/hw/xfree86/xaa/xaa

[PATCH 3/4] shm: Replace open-coded version of GetScratchPixmapHeader

2011-06-05 Thread Chris Wilson
fbShmCreatePixmap() was just another variant of wrapping an arbitrary data pointer within a pixmap, ala GetScratchPixmapHeader(). By using the common version, the fbShmCreatePixmap() is also updated to pass the information that the pixmap contents are not part of the ddx address space. Signed-off

Notify the driver when Scratch Pixmaps are released

2011-06-05 Thread Chris Wilson
If the driver uses the Pixmap to track GPU objects associated with transient data structures like scratch Pixmaps, then it needs to be notified when the resource is released. Currently, that notification is only performed when the scratch Pixmap is reused - too late. One solution, is to add a miMod

Re: [PATCH xserver 11/12] input: deliver raw events unconditionally for XI 2.1 clients.

2011-06-05 Thread Jeremy Huddleston
On Jun 5, 2011, at 9:22 PM, Peter Hutterer wrote: > On Fri, Jun 03, 2011 at 11:40:02PM -0400, Jeremy Huddleston wrote: >> 5-10, 12: >> Reviewed-by: Jeremy Huddleston >> >> 11: >> >> This looks odd. You're only going to deliver to the first client: >> >> +for (; inputclients; inputcl

Re: [PATCH xserver 11/12] input: deliver raw events unconditionally for XI 2.1 clients.

2011-06-05 Thread Peter Hutterer
On Fri, Jun 03, 2011 at 11:40:02PM -0400, Jeremy Huddleston wrote: > 5-10, 12: > Reviewed-by: Jeremy Huddleston > > 11: > > This looks odd. You're only going to deliver to the first client: > > +for (; inputclients; inputclients = inputclients->next) > { > +ClientP

Re: [PATCH 2/7] man: Build proper sentences for various options.

2011-06-05 Thread Cyril Brulebois
James Cloos (05/06/2011): > Most (all?) of those depend on whether the option is part of the > sentence. You change would be correct if the option is a noun > which is the object of the verb, but not if the sentence is > an imperitive description separate from the option. > > Most man pages use

Re: [PATCH 6/7] man: Avoid single quotes.

2011-06-05 Thread Cyril Brulebois
James Cloos (05/06/2011): > The actual bug is that ' has a special meaning when it the first > character of a line in 'roff. > > If you move the last word of the previous line down in front of > the word 'unscaled' the 's are interpreted properly. If that's deemed an acceptable solution I'll pro

Re: [PATCH 7/7] man: Improve quotes vs. macros consistency.

2011-06-05 Thread James Cloos
If [6/7] is changed then [7/7] should be as well. -JimC -- James Cloos OpenPGP: 1024D/ED7DAEA6 ___ xorg-devel@lists.x.org: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel

Re: [PATCH 5/7] man: Clarify what FPE means.

2011-06-05 Thread Cyril Brulebois
James Cloos (05/06/2011): > Normal style is to put the abbreviation in parentheses in such cases, > not the spelled-out term. > > So this would be better: > > -and each symlink destination will be added as a local fontfile FPE. > +and each symlink destination will be added as a local fontfile Fo

Re: [PATCH 2/7] man: Build proper sentences for various options.

2011-06-05 Thread James Cloos
> "CB" == Cyril Brulebois writes: CB> .B \-nocursor CB> -disable the display of the pointer cursor. CB> +disables the display of the pointer cursor. Most (all?) of those depend on whether the option is part of the sentence. You change would be correct if the option is a noun which is the o

[PATCH 14/14] doc: Try to mention all parameters [FIXME].

2011-06-05 Thread Cyril Brulebois
The FIXME in the title is intentional, a hunk needs some intel: a description of the 3 last parameters to the InitStringFeedbackClassDeviceStruct() function. Thanks already! Signed-off-by: Cyril Brulebois --- doc/Xinput.xml | 10 +++--- 1 files changed, 7 insertions(+), 3 deletions(-) di

[PATCH 13/14] doc: Convert an \fP pair into appropriate tags.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- doc/Xinput.xml |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/Xinput.xml b/doc/Xinput.xml index 6f43810..4f79f34 100644 --- a/doc/Xinput.xml +++ b/doc/Xinput.xml @@ -1077,7 +1077,7 @@ valuator0 through valuator5 - the values of the

[PATCH 12/14] doc: Try to avoid repetitions.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- doc/Xinput.xml |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/Xinput.xml b/doc/Xinput.xml index f35b9be..6f43810 100644 --- a/doc/Xinput.xml +++ b/doc/Xinput.xml @@ -1020,7 +1020,7 @@ initialized. -The data structures that de

[PATCH 11/14] doc: Kiss K&R good bye, with love.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- doc/Xinput.xml | 129 ++- 1 files changed, 70 insertions(+), 59 deletions(-) diff --git a/doc/Xinput.xml b/doc/Xinput.xml index d41ddfc..f35b9be 100644 --- a/doc/Xinput.xml +++ b/doc/Xinput.xml @@ -289,9 +289

[PATCH 10/14] doc: Fix ponctuation.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- doc/Xinput.xml |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/Xinput.xml b/doc/Xinput.xml index ab488c8..d41ddfc 100644 --- a/doc/Xinput.xml +++ b/doc/Xinput.xml @@ -426,7 +426,7 @@ FocusClass - the device can be focused.

[PATCH 09/14] doc: Fix extraneous >

2011-06-05 Thread Cyril Brulebois
It looks like it serves no special purpose. Signed-off-by: Cyril Brulebois --- doc/Xinput.xml |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/Xinput.xml b/doc/Xinput.xml index f74a068..ab488c8 100644 --- a/doc/Xinput.xml +++ b/doc/Xinput.xml @@ -368,7 +368,7 @@ serv

[PATCH 08/14] doc: Fix grammar and typos.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- doc/Xinput.xml |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/Xinput.xml b/doc/Xinput.xml index 821e300..f74a068 100644 --- a/doc/Xinput.xml +++ b/doc/Xinput.xml @@ -67,7 +67,7 @@ The functionality is implemented by routines t

[PATCH 07/14] doc: Fix alignment.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- doc/Xinput.xml |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/Xinput.xml b/doc/Xinput.xml index 1ae7afe..821e300 100644 --- a/doc/Xinput.xml +++ b/doc/Xinput.xml @@ -1084,7 +1084,7 @@ The following code fragment shows how the t

[PATCH 06/14] doc/dtrace: Provide a better description for sequenceNumber.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- doc/dtrace/Xserver-DTrace.xml |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/dtrace/Xserver-DTrace.xml b/doc/dtrace/Xserver-DTrace.xml index 992bed9..7cbff98 100644 --- a/doc/dtrace/Xserver-DTrace.xml +++ b/doc/dtrace/Xserver-DTrac

[PATCH 05/14] doc/dtrace: Fix typo.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- doc/dtrace/Xserver-DTrace.xml |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/dtrace/Xserver-DTrace.xml b/doc/dtrace/Xserver-DTrace.xml index 69cd30e..992bed9 100644 --- a/doc/dtrace/Xserver-DTrace.xml +++ b/doc/dtrace/Xserver-DTrac

[PATCH 02/14] doc: Mention higher than 2.6 kernels.

2011-06-05 Thread Cyril Brulebois
3.x kernels are on their way. Signed-off-by: Cyril Brulebois --- doc/c-extensions |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/c-extensions b/doc/c-extensions index 96f582d..44b4d5f 100644 --- a/doc/c-extensions +++ b/doc/c-extensions @@ -45,7 +45,7 @@ be C99, bu

[PATCH 01/14] doc: Fix typo.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- doc/c-extensions |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/c-extensions b/doc/c-extensions index eb33e27..96f582d 100644 --- a/doc/c-extensions +++ b/doc/c-extensions @@ -21,7 +21,7 @@ extensions, although the results may not

[PATCH 03/14] doc: Get rid of RCS tags.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- doc/smartsched |6 -- 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/doc/smartsched b/doc/smartsched index 057a759..bd76274 100644 --- a/doc/smartsched +++ b/doc/smartsched @@ -196,9 +196,3 @@ updated in three ways: The effect of these

[PATCH 04/14] doc: Fix grammar and typos.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- doc/smartsched |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/smartsched b/doc/smartsched index bd76274..4ef6db2 100644 --- a/doc/smartsched +++ b/doc/smartsched @@ -73,13 +73,13 @@ With a single client executing a stream of

Re: [PATCH 6/7] man: Avoid single quotes.

2011-06-05 Thread James Cloos
> "CB" == Cyril Brulebois writes: CB> Use double quotes instead The actual bug is that ' has a special meaning when it the first character of a line in 'roff. If you move the last word of the previous line down in front of the word 'unscaled' the 's are interpreted properly. The other simi

Re: [PATCH 5/7] man: Clarify what FPE means.

2011-06-05 Thread James Cloos
> "CB" == Cyril Brulebois writes: CB> -and each symlink destination will be added as a local fontfile FPE. CB> +and each symlink destination will be added as a local fontfile FPE (Font Path Element). Normal style is to put the abbreviation in parentheses in such cases, not the spelled-out t

Re: [PATCH 4/7] man: Fix extraneous escaping for TCP/IP.

2011-06-05 Thread James Cloos
Reviewed-by: James Cloos -JimC -- James Cloos OpenPGP: 1024D/ED7DAEA6 ___ xorg-devel@lists.x.org: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel

[PATCH 7/7] man: Improve quotes vs. macros consistency.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- man/Xserver.man |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/man/Xserver.man b/man/Xserver.man index b173f87..02ba073 100644 --- a/man/Xserver.man +++ b/man/Xserver.man @@ -502,9 +502,9 @@ You can specify a special kind of font

[PATCH 6/7] man: Avoid single quotes.

2011-06-05 Thread Cyril Brulebois
Use double quotes instead, the target paragraph was rendered this way: | This will add /usr/share/X11/fonts/misc as the first FPE with the | attribute the attribute unscaled etc. This is functionally equivalent | to setting the following font path: Signed-off-by: Cyril Brulebois --- man/

[PATCH 1/7] man: Fix typo.

2011-06-05 Thread Cyril Brulebois
As far as I can tell, disconnect is a verb, not a noun. Signed-off-by: Cyril Brulebois --- man/Xserver.man |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/man/Xserver.man b/man/Xserver.man index b725949..2c016c2 100644 --- a/man/Xserver.man +++ b/man/Xserver.man @@ -89,

[PATCH 5/7] man: Clarify what FPE means.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- man/Xserver.man |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/man/Xserver.man b/man/Xserver.man index 8ad4af9..34b0016 100644 --- a/man/Xserver.man +++ b/man/Xserver.man @@ -500,7 +500,7 @@ after the server has started. .SH "FONTPATH

[PATCH 4/7] man: Fix extraneous escaping for TCP/IP.

2011-06-05 Thread Cyril Brulebois
That resulted in the “TCPIP” string instead of “TCP/IP”. Signed-off-by: Cyril Brulebois --- man/Xserver.man |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/man/Xserver.man b/man/Xserver.man index 204caf4..8ad4af9 100644 --- a/man/Xserver.man +++ b/man/Xserver.man @@ -39

[PATCH 3/7] man: Fix case for MIT-unspecified.

2011-06-05 Thread Cyril Brulebois
include/site.h says that COMPILEDDISPLAYCLASS is MIT-unspecified, rather than MIT-Unspecified. Fix the manpage accordingly. Signed-off-by: Cyril Brulebois --- man/Xserver.man |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/man/Xserver.man b/man/Xserver.man index d239cf3

[PATCH 2/7] man: Build proper sentences for various options.

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- man/Xserver.man | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/man/Xserver.man b/man/Xserver.man index 2c016c2..d239cf3 100644 --- a/man/Xserver.man +++ b/man/Xserver.man @@ -174,7 +174,7 @@ sets the maximum big request to M

Re: [PATCH 3/3] dix: support the transformation matrix for relative devices.

2011-06-05 Thread Simon Thum
On 06/05/2011 01:32 PM, Simon Thum wrote: > First off, you're discarding sub-pixel information that doesn't make it > into the (integer) output. That's wrong by itself, e.g. scaling down > cancels slow motion, you can't really rotate by small angles, etc. So having seen daniel's patches, this point

Re: [PATCH 2/4] x86emu: Silence compiler warnings.

2011-06-05 Thread Matt Turner
On Sun, Jun 5, 2011 at 1:58 PM, Cyril Brulebois wrote: > Both if/else match, so usage of ip32 or ip16 will only happen after the > proper one has been initialized. > > As a consequence, let's silence those warnings by initializing both > variables to 0: > |   CC     ops.lo > | ops.c: In function '

Re: Build fixes (was Anything more for xproto 7.0.22?)

2011-06-05 Thread Gaetan Nadon
On Sun, 2011-06-05 at 14:11 -0400, Gaetan Nadon wrote: > On Sun, 2011-06-05 at 18:34 +0200, Julien Cristau wrote: > > > On Sun, Jun 5, 2011 at 11:22:31 -0400, Gaetan Nadon wrote: > > > > > An alternative is to install the *.db files in their respective packages > > > and have the xorg-sgml-doc

Re: [PATCH 27/27] Input: Add smooth-scrolling support to GetPointerEvents

2011-06-05 Thread Simon Thum
On 06/03/2011 05:00 PM, Daniel Stone wrote: > For scroll wheel support, we used to send buttons 4/5 and 6/7 for > horizontal/vertical positive/negative scroll events. For touchpads, we > really want more fine-grained scroll values. GetPointerEvents now > accepts both old-school scroll button pres

Re: [PATCH 1/4] configure.ac: Fix help string for mitshm.

2011-06-05 Thread Gaetan Nadon
On Sun, 2011-06-05 at 19:58 +0200, Cyril Brulebois wrote: > Pasting from ./configure --help's output, one would get: > | configure: WARNING: unrecognized options: --disable-shm > > Fix the help string to include the previously missing “mit” bits. > > Signed-off-by: Cyril Brulebois > --- > conf

Re: Build fixes (was Anything more for xproto 7.0.22?)

2011-06-05 Thread Gaetan Nadon
On Sun, 2011-06-05 at 18:34 +0200, Julien Cristau wrote: > On Sun, Jun 5, 2011 at 11:22:31 -0400, Gaetan Nadon wrote: > > > An alternative is to install the *.db files in their respective packages > > and have the xorg-sgml-doctools masterdb point to the packages. Either > > xorg-sgml-doctools

[PATCH 2/4] x86emu: Silence compiler warnings.

2011-06-05 Thread Cyril Brulebois
Both if/else match, so usage of ip32 or ip16 will only happen after the proper one has been initialized. As a consequence, let's silence those warnings by initializing both variables to 0: | CC ops.lo | ops.c: In function 'x86emuOp_call_near_IMM': | ops.c:9701:39: warning: 'ip32' may be used

[PATCH 3/4] sdksyms.dep: Enable silent rules for sdksyms.sh

2011-06-05 Thread Cyril Brulebois
Signed-off-by: Cyril Brulebois --- hw/xfree86/loader/Makefile.am |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/xfree86/loader/Makefile.am b/hw/xfree86/loader/Makefile.am index 0e5b304..054dca9 100644 --- a/hw/xfree86/loader/Makefile.am +++ b/hw/xfree86/loader/Makefi

[PATCH 1/4] configure.ac: Fix help string for mitshm.

2011-06-05 Thread Cyril Brulebois
Pasting from ./configure --help's output, one would get: | configure: WARNING: unrecognized options: --disable-shm Fix the help string to include the previously missing “mit” bits. Signed-off-by: Cyril Brulebois --- configure.ac |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http:

[PATCH 4/4] render: Replace __inline with inline.

2011-06-05 Thread Cyril Brulebois
Also remove traces from the past. Signed-off-by: Cyril Brulebois --- render/mipict.c |6 +- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/render/mipict.c b/render/mipict.c index 08b2fa7..9a44c27 100644 --- a/render/mipict.c +++ b/render/mipict.c @@ -33,10 +33,6 @@ #incl

[DOC]: Match error in Shapelib

2011-06-05 Thread Matt Dew
I'm adding olinks in the documents and I need a verification so I don't link to the wrong thing. In Shapelib (http://www.x.org/releases/X11R7.6/doc/libXext/shapelib.html), 2nd to last paragraph in section 2. "An InputOnly window can have its bounding region set, but it is a Match error to

Re: [PATCH 3/4] xserver: Use regular expressions in Match entries

2011-06-05 Thread walter harms
Am 05.06.2011 07:52, schrieb Oleh Nykyforchyn: > Use regular expressions in Match entries > > Signed-off-by: Oleh Nykyforchyn > --- > hw/xfree86/common/xf86Xinput.c | 22 -- > hw/xfree86/parser/InputClass.c | 17 - > hw/xfree86/parser/xf86Parser.h |7

Re: [PATCH:gccmakedep] Use autoconf instead of XORG_RAWCPP to substitute text in gccmakedep

2011-06-05 Thread Alan Coopersmith
On 06/ 5/11 04:54 AM, Gaetan Nadon wrote: > On Sat, 2011-06-04 at 21:50 -0700, Alan Coopersmith wrote: >> Signed-off-by: Alan Coopersmith > > >> --- >> >> I don't know if anyone still uses/ships gccmakedep, but if so, this gets rid >> of one more needless use of

Re: Build fixes (was Anything more for xproto 7.0.22?)

2011-06-05 Thread Julien Cristau
On Sun, Jun 5, 2011 at 11:22:31 -0400, Gaetan Nadon wrote: > An alternative is to install the *.db files in their respective packages > and have the xorg-sgml-doctools masterdb point to the packages. Either xorg-sgml-doctools doesn't know where the packages are installed, and shouldn't have to k

Re: [PATCH 15/27] Input: Widen pointer acceleration types to double

2011-06-05 Thread Simon Thum
On 06/03/2011 04:59 PM, Daniel Stone wrote: > This widens most of ptrveloc.[ch] to double from float: I would have > loved to have done it in smaller chunks, but the code's fairly > intractable, so. > > Signed-off-by: Daniel Stone While I don't oppose it, I would like to mention the velocity esti

Re: Build fixes (was Anything more for xproto 7.0.22?)

2011-06-05 Thread Gaetan Nadon
On Sun, 2011-06-05 at 11:48 +0200, Julien Cristau wrote: > On Sat, Jun 4, 2011 at 09:25:07 -0400, Gaetan Nadon wrote: > > > The DocBook/XML olink databases (this is what those files are) are > > installed in the location provided by the specs/Makefile variable > > sgmldbsdir which is set to $(XO

Re: [PATCH 16/27] Input: Convert acceleration code to using ValuatorMask

2011-06-05 Thread Simon Thum
On 06/03/2011 04:59 PM, Daniel Stone wrote: > Instead of passing a set of int* to the acceleration code, pass it a > mask instead, which avoids an unfortunate loss of precision. > > Signed-off-by: Daniel Stone > --- > dix/getevents.c | 41 +--- > dix/ptrveloc.c | 82

Re: Build fixes (was Anything more for xproto 7.0.22?)

2011-06-05 Thread Dan Nicholson
On Jun 5, 2011 4:48 AM, "Julien Cristau" wrote: > > On Sat, Jun 4, 2011 at 09:25:07 -0400, Gaetan Nadon wrote: > > > The DocBook/XML olink databases (this is what those files are) are > > installed in the location provided by the specs/Makefile variable > > sgmldbsdir which is set to $(XORG_SGML_

Re: [PATCH:gccmakedep] Use autoconf instead of XORG_RAWCPP to substitute text in gccmakedep

2011-06-05 Thread Gaetan Nadon
On Sat, 2011-06-04 at 21:50 -0700, Alan Coopersmith wrote: > Signed-off-by: Alan Coopersmith > --- > > I don't know if anyone still uses/ships gccmakedep, but if so, this > gets rid > of one more needless use of XORG_RAWCPP where simpler tools (in this > case > autoconf itself) will do. > > Thi

Re: [PATCH] Convert sisusb.man from XORG_RAWCPP to using sed like other drivers

2011-06-05 Thread Gaetan Nadon
On Sat, 2011-06-04 at 21:07 -0700, Alan Coopersmith wrote: > Upgrade to util-macros 1.8 for additional man page support > > Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS > The value of MAN_SUBST is the same for all X.Org packages. > > Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS >

Re: [PATCH 3/3] dix: support the transformation matrix for relative devices.

2011-06-05 Thread Simon Thum
On 06/03/2011 03:27 AM, Peter Hutterer wrote: > On Thu, Jun 02, 2011 at 03:44:15PM +0200, Simon Thum wrote: >> On 05/31/2011 05:57 AM, Peter Hutterer wrote: >>> The transformation matrix we previously stored was a scaled matrix based on >>> the axis ranges of the device. For relative movements, the

Re: [PATCH] Convert sis.man from XORG_RAWCPP to using sed substitutions like other drivers

2011-06-05 Thread Gaetan Nadon
On Sat, 2011-06-04 at 21:03 -0700, Alan Coopersmith wrote: > Upgrade to util-macros 1.8 for additional man page support > > Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS > The value of MAN_SUBST is the same for all X.Org packages. > > Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS >

[PATCH 4/4] xserver: Add negation and regexes in Match entries to man page

2011-06-05 Thread Oleh Nykyforchyn
Add negation and regexes in Match entries to man page Signed-off-by: Oleh Nykyforchyn --- hw/xfree86/man/xorg.conf.man | 49 -- 1 files changed, 42 insertions(+), 7 deletions(-) diff --git a/hw/xfree86/man/xorg.conf.man b/hw/xfree86/man/xorg.conf.man in

[PATCH 3/4] xserver: Use regular expressions in Match entries

2011-06-05 Thread Oleh Nykyforchyn
Use regular expressions in Match entries Signed-off-by: Oleh Nykyforchyn --- hw/xfree86/common/xf86Xinput.c | 22 -- hw/xfree86/parser/InputClass.c | 17 - hw/xfree86/parser/xf86Parser.h |7 ++- 3 files changed, 42 insertions(+), 4 deletions(-) di

[PATCH 2/4] xserver: Add negation operator to Match entries

2011-06-05 Thread Oleh Nykyforchyn
Add negation operator to Match entries Signed-off-by: Oleh Nykyforchyn --- hw/xfree86/common/xf86Xinput.c | 15 --- hw/xfree86/parser/InputClass.c | 10 ++ hw/xfree86/parser/xf86Parser.h |1 + 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/hw/xfree86/

[PATCH 1/4] xserver: Use lists and constants for matching modes in Match entries

2011-06-05 Thread Oleh Nykyforchyn
Use lists and constants for matching modes in Match entries Signed-off-by: Oleh Nykyforchyn --- hw/xfree86/common/xf86Xinput.c | 117 +++--- hw/xfree86/parser/InputClass.c | 336 +--- hw/xfree86/parser/xf86Parser.h | 23 +++- 3 files changed, 292 i

Re: [PATCH xserver] Multiple matching modes (incl. regex) selection support in Match* statements

2011-06-05 Thread Oleh Nykyforchyn
On Fri, 3 Jun 2011 09:22:42 -0500 Dan Nicholson wrote: > > - man page additions please > > Agree completely here. This is getting pretty complex, and I'm really > curious to see it explained in a manual for people coming in fresh. > Here is a version: *** xorg.conf.man.orig 2011-06-04 09:39:1

Re: Build fixes (was Anything more for xproto 7.0.22?)

2011-06-05 Thread Julien Cristau
On Sat, Jun 4, 2011 at 09:25:07 -0400, Gaetan Nadon wrote: > The DocBook/XML olink databases (this is what those files are) are > installed in the location provided by the specs/Makefile variable > sgmldbsdir which is set to $(XORG_SGML_PATH)/X11/dbs. The value of > XORG_SGML_PATH is obtained fro