<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.freedesktop.xorg">
    <title>gmane.comp.freedesktop.xorg</title>
    <link>http://blog.gmane.org/gmane.comp.freedesktop.xorg</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47841"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47840"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47839"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47835"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47834"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47832"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47826"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47824"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47821"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47818"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47817"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47814"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47813"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47807"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47803"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47799"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47789"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47787"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47785"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47783"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47841">
    <title>XTestFakeKeyEvent and direction arrows</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47841</link>
    <description>&lt;pre&gt;
Hi,
I'm writing a simple open source gtk(mm) "on screen keyboard"
(http://code.google.com/p/giuspen-x-osk/source/checkout)
and, while all characters and modifiers work pretty good, I'm struggling
from several days with the direction arrows
but am absolutely stuck and clueless.

For all characters and modifiers it works simply with something like:

        XSync(mp_display, 0);
        if(flags &amp;amp; FLAG_KEY_DOWN)
        {
            XTestFakeKeyEvent(mp_display, XKeysymToKeycode(mp_display,
keysym), 1 , 0);
            XFlush(mp_display);
        }
        if(flags &amp;amp; FLAG_KEY_UP)
        {
            XTestFakeKeyEvent(mp_display, XKeysymToKeycode(mp_display,
keysym), 0, 0);
            XFlush(mp_display);
        }

but I really found no way to have the direction arrows working.

The result is that sending the XK_Up and XK_Down arrow doesn't produce
visible effect, the XK_Left
and XK_Right instead sometimes produce a double movement and sometimes
(after messing with XK_Up
and XK_Down button clicks) produce &lt;/pre&gt;</description>
    <dc:creator>giuspen</dc:creator>
    <dc:date>2012-05-24T11:36:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47840">
    <title>XTestFakeKeyEvent and direction arrows</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47840</link>
    <description>&lt;pre&gt;Hi,
I'm writing a simple open source gtk(mm) "on screen keyboard" (
http://code.google.com/p/giuspen-x-osk/source/checkout)
and, while all characters and modifiers work pretty good, I'm struggling
from several days with the direction arrows
but am absolutely stuck and clueless.

For all characters and modifiers it works simply with something like:

        XSync(mp_display, 0);
        if(flags &amp;amp; FLAG_KEY_DOWN)
        {
            XTestFakeKeyEvent(mp_display, XKeysymToKeycode(mp_display,
keysym), 1 , 0);
            XFlush(mp_display);
        }
        if(flags &amp;amp; FLAG_KEY_UP)
        {
            XTestFakeKeyEvent(mp_display, XKeysymToKeycode(mp_display,
keysym), 0, 0);
            XFlush(mp_display);
        }

but I really found no way to have the direction arrows working.

The result is that sending the XK_Up and XK_Down arrow doesn't produce
visible effect, the XK_Left
and XK_Right instead sometimes produce a double movement and sometimes
(after messing with XK_Up
and XK_Down button clicks) produce &lt;/pre&gt;</description>
    <dc:creator>Giuseppe Penone</dc:creator>
    <dc:date>2012-05-23T17:10:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47839">
    <title>[ANNOUNCE] xf86-input-vmmouse 12.9.0</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47839</link>
    <description>&lt;pre&gt;-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Bugfix release, made to address a regression caused by the last release on
Ubuntu [1], the original bug will of course return then [2].

Cheers, Jakob.

[1] https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-vmmouse/+bug/996821
[2] https://bugzilla.novell.com/show_bug.cgi?id=717625

Gaetan Nadon (1):
      config: replace obsolete AM_CONFIG_HEADER with AC_CONFIG_HEADERS

Jakob Bornecrantz (1):
      vmmouse 12.8.0

Michal Srb (1):
      Enable hardware access during vmmouse preinit.

Zack Rusin (1):
      Revert "Adjust the kernel name in the udev file."

git tag: xf86-input-vmmouse-12.9.0

http://xorg.freedesktop.org/archive/individual/driver/xf86-input-vmmouse-12.9.0.tar.bz2
MD5:  2b3bfea9ba1f73d9d68bddd0d6b20112  xf86-input-vmmouse-12.9.0.tar.bz2
SHA1: 83500beddba2da390389705d482131872fe9be8b  xf86-input-vmmouse-12.9.0.tar.bz2
SHA256: fbcf00f6bfee38bc65e0f0b812a4d076f7e203e81ed908e57de4026792b299bf  xf86-input-vmmouse-12.9.0.tar.bz2

http://xorg.fre&lt;/pre&gt;</description>
    <dc:creator>jakob&lt; at &gt;vmware.com</dc:creator>
    <dc:date>2012-05-22T19:34:17</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47835">
    <title>compile libXext-1.3.1 problem</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47835</link>
    <description>&lt;pre&gt;i am trying to build libXext-1.3.1 but i get a error message 


checking for X.Org SGML entities &amp;gt;= 1.8... ./configure: line 18029: syntax error near unexpected token `xorg-sgml-doctools'
./configure: line 18029: `PKG_CHECK_EXISTS(xorg-sgml-doctools m4_ifval([1.8],[&amp;gt;= 1.8]),'

what shall i do, please help_______________________________________________
xorg&amp;lt; at &amp;gt;lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: gcfx-xorg-2&amp;lt; at &amp;gt;m.gmane.org&lt;/pre&gt;</description>
    <dc:creator>Lee Wei han</dc:creator>
    <dc:date>2012-05-21T09:15:22</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47834">
    <title>xf86-input-aiptek bug</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47834</link>
    <description>&lt;pre&gt;Hey I'm writing to the mailing list because I fear that
https://sourceforge.net/projects/aiptektablet/ is dead (last update
2009-08-18).
I have to Aiptek Hyperpen mini devices which are identical to the
point except for the bcdDevice id.
The first one with the id 1.01 works but the other one with the id
1.02 doesn't work so well.
The points are mapped correctly but sometimes the stylus stops working
completly (seems to be the case if the pressure is too big or the
angle of the stylus is changed).
On Windows the device works flawless.
I attach the lsusb output with the hope that someone can help me.
with kind regards,
Thomas

Bus 005 Device 007: ID 172f:0037 Waltop International Corp. 
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  idVendor           0x172f Waltop International Corp.
  idProduct          0x0037 &lt;/pre&gt;</description>
    <dc:creator>Thomas Schneider</dc:creator>
    <dc:date>2012-05-20T20:58:01</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47832">
    <title>[ANNOUNCE] xorg-server 1.12.1.902 (1.12.2 RC2)</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47832</link>
    <description>&lt;pre&gt;-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

== Description ==

This is the second release candidate for 1.12.2.

The primary changes from the first release candidate pertain to logging,
build failures, and xinput.

== Known Issues ==

Top Issues (1.12 Tracker, https://bugs.freedesktop.org/show_bug.cgi?id=xserver-1.12)
* #23938: [from 1.6.x] keys occasionally get stuck
* #31501: [from 1.8.x] crash accessing font info with xfs in fontpath
* #39094: WaitFor does not handle EIO (causes 100% cpu load)
* #39838: Server crash in RENDER
* #39949: [from 1.9.x] RandR panning &amp;amp; scaling don't work
* #41124: [from 1.9.x] Another crash in GLX/DRI2 when resizing a window
* #41149: Server crash pressing multimedia keys 
  * patch on xorg-devel
* #41653: Server crash in rotate
  * patch pending PULL to master
* #43988: Use-after-free
  * patch in bug needs updated formatting &amp;amp; review
* #44038: GL regression with wine

Other Issues (1.13 Tracker, https://bugs.freedesktop.org/show_bug.cgi?id=44202)
* #11053: Buffer overflow&lt;/pre&gt;</description>
    <dc:creator>Jeremy Huddleston</dc:creator>
    <dc:date>2012-05-20T05:22:42</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47826">
    <title>XSetBackgroundPixmap question</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47826</link>
    <description>&lt;pre&gt;When using this Xlib function to set a new background pixmap, how does the old one get
freed? If I am setting the root window's background pixmap, I don't know how I can get the
XID of the old one. If it is a window I created, I can cache it but that seems overkill if I'm
just wanting to discard the old one. Can someone direct me to how I am supposed to free
the old background pixmap? Thanks.

_______________________________________________
xorg&amp;lt; at &amp;gt;lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: gcfx-xorg-2&amp;lt; at &amp;gt;m.gmane.org

&lt;/pre&gt;</description>
    <dc:creator>James Buren</dc:creator>
    <dc:date>2012-05-19T20:57:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47824">
    <title>xorg performance in general / eclipse specific question</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47824</link>
    <description>&lt;pre&gt;Hi 

I am running an Eclipse based IDE on Ubuntu 10.04 LTS, which runs on a VMWare virtual machine on a remote server. I access the IDE  on my Win 7 laptop using VcXsrv, which is an X server for Windows based on the Xorg sources.  I have two questions related to this configuration.

1) Firstly, in general, the IDE is quite sluggish in this configuration. Is there anything I can do on the remote server or the local laptop to improve performance? (for example, I have heard of xorg acceleration, but I don't know what it is).

2) Secondly, I have a very specific question about the IDE behaviour.  Given that this problem only manifests in a X server configuration. I thought it appropriate to ask the question here. When running the IDE, if I right click in an editor window to access a right-click menu option, the expected menu pops up but, after I select a menu item, the editor enters 'text select' mode and highlights a block of text, which is only terminated if I right-click again.  I think this simply means that&lt;/pre&gt;</description>
    <dc:creator>David Aldrich</dc:creator>
    <dc:date>2012-05-18T12:23:03</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47821">
    <title>Regarding Xorg</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47821</link>
    <description>&lt;pre&gt;Hello all,

   I am working on imx53 sabre board. &amp;amp; my interest is to run Xorg on 
the board  not Xfbdev.
So I made necessary changes to ltib and build the source.

but when I am running on the board I am unable to run Xorg. &amp;amp; I am 
ending with following errors

(EE) Failed to load module "glx" (module does not exist, 0)
(EE) Failed to load module "dri" (module does not exist, 0)

Could you Please help me regarding these Issue

PFA for Xorg.conf , Xorg.0.log
FYI I could not find libglx.so libdri.so in 
/usr/lib/xorg/modules/extensions location

lib in usr/lib/xorg/modules/
libfb.so libshadowfb.so  libvbe.so    libwfb.so  libxf8_16bpp.so    
libexa.so  libint10.so  libshadow.so  libvgahw.so  libxaa.so

In usr/lib/xorg/modules/extension
I have only these two libdbe.so  libextmod.so

In usr/lib/xorg/modules/input
I have these kbd_drv.so  mouse_drv.so

In usr/lib/xorg/modules/drivers
I have imx_drv.so

In usr/lib/xorg/modules/linux
I have libfbdevhw.so

In usr/lib/xorg/modules/multimedia
I have   bt829_drv.so  f&lt;/pre&gt;</description>
    <dc:creator>vkpulluri</dc:creator>
    <dc:date>2012-05-18T05:46:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47818">
    <title>Randr window resize</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47818</link>
    <description>&lt;pre&gt;Hi all,

I have one question regarding Randr: Whenever I use xrandr to rotate my
screen by 90 degrees, full screen windows look like in this picture:

+----------+---------+
|  screen  |         |
|   and    | screen  |
|  window  |         |
+----------+---------+
|          |
| window   |
|          |
+----------+

I would really appreciate it if the windows were resized by exchanging
their width and length, so that they remain totally visible even after
screen rotations.
To my knowledge, this is not possible with Xorg at the moment.
Correct me if I am wrong, but I think that this is a problem with the X
server and not the GUI toolkits like Qt or Gtk+. Is there any way that
you could improve Xorg to resize full screen windows on Randr events?

g4hx
_______________________________________________
xorg&amp;lt; at &amp;gt;lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: gcfx-xorg-2&amp;lt; at &amp;gt;m.gmane.org

&lt;/pre&gt;</description>
    <dc:creator>g4hx</dc:creator>
    <dc:date>2012-05-17T17:33:45</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47817">
    <title>xorg performance in general / eclipse specific question</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47817</link>
    <description>&lt;pre&gt;Hi 

I am running an Eclipse based IDE on Ubuntu 10.04 LTS, which runs on a VMWare virtual machine on a remote server. I access the IDE  on my Win 7 laptop using VcXsrv, which is an X server for Windows based on the Xorg sources.  I have two questions related to this configuration.

1) Firstly, in general, the IDE is quite sluggish in this configuration. Is there anything I can do on the remote server or the local laptop to improve performance? (for example, I have heard of xorg acceleration, but I don't know what it is).

2) Secondly, I have a very specific question about the IDE behaviour.  Given that this problem only manifests in a X server configuration. I thought it appropriate to ask the question here. When running the IDE, if I right click in an editor window to access a right-click menu option, the expected menu pops up but, after I select a menu item, the editor enters 'text select' mode and highlights a block of text, which is only terminated if I right-click again.  I think this simply means that&lt;/pre&gt;</description>
    <dc:creator>David Aldrich</dc:creator>
    <dc:date>2012-05-17T08:25:43</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47814">
    <title>Error when trying dual graphics cards</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47814</link>
    <description>&lt;pre&gt;Hi all,
I have read http://www.x.org/wiki/Development/Documentation/Multiseat, but looks that's mainly for USB graphics card(?) and here I don't use that.

I have a desktop host (HP Compaq 8200 Elite SFF PC) that has an integrated Intel card and an add-on nVidia card.
The "lspci | grep VGA" on the host shows
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
01:00.0 VGA compatible controller: nVidia Corporation GT218 [NVS 300] (rev a2).

In the default BIOS setting, the integrated Intel card is set to Primary VGA card.
When the BIOS and grub run, only the monitor attached to the integrated Intel card has VGA output.

I tried x86-64 Ubuntu 12.04, RHEL 6.2 and Fedora 17 and it looks Fedora 17 gave the best result, though I still couldn't make both cards work properly -- my goal is something like this: both monitors attached to the 2 card should be able to show a gnome session, or an ever better goal: both monitors belong to a single&lt;/pre&gt;</description>
    <dc:creator>Cui, Dexuan</dc:creator>
    <dc:date>2012-05-16T16:21:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47813">
    <title>How can I use 2 gfx cards to display</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47813</link>
    <description>&lt;pre&gt;Hi, guys

How can I use 2 gfx cards in a linux machine to boot up perspective X server.
Is there any order or basic steps I can follow to do this ?

-Eric

_______________________________________________
xorg&amp;lt; at &amp;gt;lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: gcfx-xorg-2&amp;lt; at &amp;gt;m.gmane.org&lt;/pre&gt;</description>
    <dc:creator>Xu, Anhua</dc:creator>
    <dc:date>2012-05-16T13:22:22</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47807">
    <title>[ANNOUNCE] xinput 1.6.0</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47807</link>
    <description>&lt;pre&gt;Only one more fix since RC1, adding --enable and --disable support as
shortcuts to trigger the property to enable or disable the device,
respectively.

Peter Hutterer (2):
      Add --enable/--disable support
      xinput 1.6.0

git tag: xinput-1.6.0

http://xorg.freedesktop.org/archive/individual/app/xinput-1.6.0.tar.bz2
MD5:  d2459d35b4e0b41ded26a1d1159b7ac6  xinput-1.6.0.tar.bz2
SHA1: 958b77a2acf52197b9a1e3e3d11e9bc57fbb1e6c  xinput-1.6.0.tar.bz2
SHA256: 4ab007d952c76665603bcb82ceb15fd3929d10faf0580fc4873ac16f5f63847e  xinput-1.6.0.tar.bz2

http://xorg.freedesktop.org/archive/individual/app/xinput-1.6.0.tar.gz
MD5:  03146d20083a8bd2e3806554b36c7c2b  xinput-1.6.0.tar.gz
SHA1: cb36f3bde1aabde7c0d0d907124a05eb2597bd28  xinput-1.6.0.tar.gz
SHA256: a3117a323cc32c80428dd1604df8d0f87ecbfb03a4975c187475a04f7201dfb7  xinput-1.6.0.tar.gz

_______________________________________________
xorg&amp;lt; at &amp;gt;lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg&lt;/pre&gt;</description>
    <dc:creator>Peter Hutterer</dc:creator>
    <dc:date>2012-05-15T05:54:36</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47803">
    <title>Help: the problem to run GUI program with cron when logged out</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47803</link>
    <description>&lt;pre&gt;Hi,

Many people say that it is a simple fix to let cron run a GUI program: just export DISPLAY=:0.0 -- telling where to display it. However, it is hard and even impossible for me.

(I am using "env -i script_name" to test) 
Suppose my script "run_gui.sh" can be run successfully:

env -i /path/run_gui.sh

Within run_gui.sh, there are:
export XAUTHORITY=xxx
export DISPLAY=:0.0
..
start the Java GUI program //this program is an automatic GUI program. It runs for about one minute or so, then shut down automatically. No human interaction is needed.

If I put run_gui.sh on cron and logged out(These linux machines are shared desktops, not my personal machines). Our IT support told me that my gui program have no place to put the display.(Since I have logged out, everything has closed). I told them that many people on newsgroup say that it is possible and they don't think so.

Another problem is that, since I was not logged in when the cron job("run_gui.sh") was running, so there is no XAUTHORITY value.

I am just c&lt;/pre&gt;</description>
    <dc:creator>Xiaoshen Li</dc:creator>
    <dc:date>2012-05-14T17:52:49</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47799">
    <title>minor pointer accel fixes</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47799</link>
    <description>&lt;pre&gt;Hi all,

I polished some indentation fallout in pointer acceleration code and 
removed a warning that came to my attention. Nothing serious.

Cheers,

Simon
_______________________________________________
xorg&amp;lt; at &amp;gt;lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: gcfx-xorg-2&amp;lt; at &amp;gt;m.gmane.org&lt;/pre&gt;</description>
    <dc:creator>Simon Thum</dc:creator>
    <dc:date>2012-05-13T11:08:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47789">
    <title>X server crash due to evdev device - regression</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47789</link>
    <description>&lt;pre&gt;I've upgraded from Ubuntu 11.10 to 12.04, and the X server is now 
crashing. Log excerpt below. lsusb -vv attached.

This happens (probably not surprisingly) with both the stock Linux 3.2 
kernel as well as a self-compiled Linux 3.1 kernel.

Log (end):
[    15.883] (II) config/udev: Adding input device Conexant USB Audio 
(/dev/input/event7)
[    15.883] (**) Conexant USB Audio: Applying InputClass "evdev 
keyboard catchall"
[    15.883] (II) Using input driver 'evdev' for 'Conexant USB Audio'
[    15.883] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    15.883] (**) Conexant USB Audio: always reports core events
[    15.883] (**) evdev: Conexant USB Audio: Device: "/dev/input/event7"
[    15.884] (--) evdev: Conexant USB Audio: Vendor 0x572 Product 0x1400
[    15.884] (--) evdev: Conexant USB Audio: Found 13 mouse buttons
[    15.884] (--) evdev: Conexant USB Audio: Found absolute axes
[    15.884] (--) evdev: Conexant USB Audio: Found absolute multitouch axes
[    15.884] (--) evdev: Conexant USB&lt;/pre&gt;</description>
    <dc:creator>Ben Bucksch</dc:creator>
    <dc:date>2012-05-11T18:36:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47787">
    <title>installing xf86driproto-2.1.1</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47787</link>
    <description>&lt;pre&gt;Hi,
i wanna install xf86driproto-2.1.1:

    cd xf86driproto-2.1.1
    ./autogen.sh
    ./configure
    make install

         make[1]: Entering directory `/home/me/tmp/xf86driproto-2.1.1'
         make[1]: Nothing to be done for `install-exec-am'.
         test -z "/usr/local/lib/pkgconfig" || /bin/mkdir -p\
                     "/usr/local/lib/pkgconfig"
         /usr/bin/install -c -m 644 xf86driproto.pc '/usr/local/lib/pkgconfig'
         test -z "/usr/local/include/X11/dri" || /bin/mkdir -p\
                     "/usr/local/include/X11/dri"
          /usr/bin/install -c -m 644 xf86dri.h xf86dristr.h\
                      xf86driproto.h '/usr/local/include/X11/dri'
          make[1]: Leaving directory `/home/me/tmp/xf86driproto-2.1.1'

... it skips install silently  :-/
Any help?
thxs a lot...

ubu 12.04
_______________________________________________
xorg&amp;lt; at &amp;gt;lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription addr&lt;/pre&gt;</description>
    <dc:creator>oxy</dc:creator>
    <dc:date>2012-05-11T17:12:59</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47785">
    <title>Installation of XQuartz on OSX 10.6.2?</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47785</link>
    <description>&lt;pre&gt;I am having a devil of a time. I'm trying to install GIMP, and I need to install XQuartz first. But my Mac's OS is at 10.6.2... and it seems ALL the Snow Leopard installs require 10.6.3! I can't upgrade because of interrelated hardware/software setup issues, so I can't go to 10.6.3.

Any help would be appreciated!

Don
_______________________________________________
xorg&amp;lt; at &amp;gt;lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: gcfx-xorg-2&amp;lt; at &amp;gt;m.gmane.org&lt;/pre&gt;</description>
    <dc:creator>Don Stroud</dc:creator>
    <dc:date>2012-05-10T16:49:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47783">
    <title>ANN: xterm patch #279</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47783</link>
    <description>&lt;pre&gt;                            Patch #279 - 2012/05/10

     * fill  in missing cases in the save/restore modes feature (report by
       Thomas Wolff).
     * add  check  to  ensure that combining characters are precomposed in
       the order given (report/analysis by Andries E Brouwer).
     * improve  workability check for posix_openpt(), to take into account
       BSD  systems  which do not complete initialization until both sides
       of the pseudoterminal are opened (report by Christian Weisgerber).
     * amend  fix  for Debian #650291 in patch #277 changes to account for
       different data returned by vnc4server (Debian #670638).
     * add  check in DECCRA operation to make copies of blinking text also
       blink by updating a line-level flag.
     * modify rectangle operations to work with DECOM.
     * modify  DECSERA  to  use  the  current  protected state rather than
       preserving it.
     * add   precompose  resource  to  allow  storing  character  data  in
       Normalized  Form D a&lt;/pre&gt;</description>
    <dc:creator>Thomas Dickey</dc:creator>
    <dc:date>2012-05-10T14:07:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.freedesktop.xorg/47781">
    <title>Resized window does not resize its content.</title>
    <link>http://comments.gmane.org/gmane.comp.freedesktop.xorg/47781</link>
    <description>&lt;pre&gt;Hello,

I am trying to force an application to have a certain size but it does
not work as expected yet: the application window resize well but not
it's content.

The application I try to resize is VirtualBox. I want it to run in a
kiosk like mode (full-screen) for a project named 'Cube' :
https://github.com/jonosterman/cube/blob/master/cube-client-wm/src/main/java/ch/admin/vbs/cube/client/wm/ui/x/imp/XWindowManager2.java
(perhaps some parts are commented right now since I'm still testing some stuff)

There is no other window manager running in the background.

What append is:
- I start VirtualBox
- Once I detect a VirtualBox Window (based on its title), I re-parent
it into another window (which is used to display a 5-pixels border
around the application's window) -&amp;gt; line 135
- and resize it to fullscreen (using XMoveResizeWindow)
- I then get resizeRequest event (with smaller size) that I ignore (is
that wrong?) -&amp;gt; line 315
- then ConfigureNotify event where I check if it is the correct size.
If not, I resi&lt;/pre&gt;</description>
    <dc:creator>Frédéric Dreier</dc:creator>
    <dc:date>2012-05-10T06:44:34</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.freedesktop.xorg">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.freedesktop.xorg</link>
  </textinput>
</rdf:RDF>

