<?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 a single movement in the right direction
plus a movement up or down.

If anybody can give me even a simple clue/link that would be of great help.
Thanks in advance.
&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 a single movement in the right direction
plus a movement up or down.

If anybody can give me even a simple clue/link that would be of great help.
Thanks in advance.
Giuseppe.
_______________________________________________
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>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.freedesktop.org/archive/individual/driver/xf86-input-vmmouse-12.9.0.tar.gz
MD5:  b5fcdc6149ce98c4e962bd4944fa7fb0  xf86-input-vmmouse-12.9.0.tar.gz
SHA1: 7de723bf5856c7923daf0a46d4a31b627915e2cb  xf86-input-vmmouse-12.9.0.tar.gz
SHA256: b28d5e2426478bbec22e221e162167b0cff8a17b5c6b374aa8bbb1525f9bea26  xf86-input-vmmouse-12.9.0.tar.gz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk+74EAACgkQtC8VpKcKoE17tACgjt01oqRhrIr+1WIsvXsuCNNp
BxAAnAy0wiF8QlpWa4fG29vTfBa3n172
=0BFK
-----END PGP SIGNATURE-----
_______________________________________________
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>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 
  bcdDevice            1.02
  iManufacturer           1          WALTOP   
  iProduct                2          Tablet    
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           34
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      0 No Subclass
      bInterfaceProtocol      0 None
      iInterface              0 
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.10
          bCountryCode           30 Taiwan
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength     241
         Report Descriptors: 
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               2
Device Status:     0x0000
  (Bus Powered)
_______________________________________________
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>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 in fbCopyArea()
  * Has a patch, ajax thinks the patch is wrong
* #17013: Issues when mising Xinerama and XCopyArea/Xdamage
  * Partial patch is available... still waiting on complete fix
* #24094: CTRL-ALT-F1 doesn't switch to VT1 (provides garbage input to terminal instead)
  * XKB weirdness.  This looks diagnosed, so let's get a patch tested.
* #27804: Enter/Leave event woes with multiple master devices
* #29251: [from 1.8.x] server crash destroying GLX pixmaps
* #32765: [from 1.8.x] Xephyr segfaults on 24bpp hosts
  * A possible fix is discussed, but Keith didn't like it.
* #42219: Some override-redirect windows aren't getting rendered
* #43434: Rotate causes loss of gamma changes
* #47510: Xephyr memory leak

== New Issues ==

If you encounter an issue that you think should block a future 1.11 release,
please follow the instructions listed in the wiki to raise this to our
attention.

http://www.x.org/wiki/Server112Branch

== Changes since 1.12.1.901 ==

Chase Douglas (2):
      Report logical button state in ProcXIQueryPointer
      Report touch emulated buttons in XIQueryPointer for XI 2.1 and earlier

Daniel Kurtz (5):
      dix: don't BUG_WARN for button events from button-only device
      os/log: trivial cleanups
      os/xprintf: add Xvscnprintf and Xscnprintf
      os/log: only write timestamp if a message is actually written to logfile
      os/log: refactor logging

Jeremy Huddleston (2):
      Revert "dix: when disabling a device, release all buttons and keys"
      configure.ac: Version bump to 1.12.1.902 (1.12.2 RC2)

Keith Packard (2):
      hw/xfree86: Spurious ');' in xf86vmode.c messed up indentation badly
      hw/xfree86: Re-indent xf86vmode.c

Michal Suchanek (1):
      dmx: Annotate dmxlog.c with _X_ATTRIBUTE_PRINTF and _X_NORETURN

Peter Hutterer (1):
      dix: indentation fix

git tag: xorg-server-1.12.1.902

http://xorg.freedesktop.org/archive/individual/xserver/xorg-server-1.12.1.902.tar.bz2
MD5:  29c8ccc0097daa31500b250b6b7cf31d  xorg-server-1.12.1.902.tar.bz2
SHA1: f5ab539ac875551ba3ea8f29150bc17949999b58  xorg-server-1.12.1.902.tar.bz2
SHA256: 052efb01c47348b4138c89ad5654be022a4d952acc6129b2ad2659bc1ff4d509  xorg-server-1.12.1.902.tar.bz2

http://xorg.freedesktop.org/archive/individual/xserver/xorg-server-1.12.1.902.tar.gz
MD5:  40b0de8c8fad46357ba2bf5b1bc18377  xorg-server-1.12.1.902.tar.gz
SHA1: c5fc232decc3eaa18283ffb313dde8b0b73e48b3  xorg-server-1.12.1.902.tar.gz
SHA256: aabeaf68ef7885ad2bc33a4a6ac2abb3c5c12ee563b53744932093a15a17d499  xorg-server-1.12.1.902.tar.gz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (Darwin)

iD8DBQFPuH90jC1Anjf1NmMRAgLcAJ4qzrDEVouUpLru3+rQ08U8bXWXugCdGExX
+NYxg2MO/a4lQdsdEyHbSzA=
=40vQ
-----END PGP SIGNATURE-----

_______________________________________________
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>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 the IDE is getting confused about right clicks. Any ideas how to fix this please?

Best regards

David

_______________________________________________
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>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  fi1236_drv.so  msp3430_drv.so  tda8425_drv.so  
tda9850_drv.so  tda9885_drv.so  uda1380_drv.so   these dynamic libs

Please help me How can I run Xorg


Thanks &amp;amp; Regards,
Vijay Kumar Pulluri
______________________________________________________________________________

DISCLAIMER

The information contained in this e-mail message and/or attachments to it may
contain confidential or privileged information. If you are not the intended
recipient, any dissemination, use, review, distribution, printing or copying
of the information contained in this e-mail message and/or attachments to it
are strictly prohibited. If you have received this communication in error,
please notify us by reply e-mail or directly to netsupport&amp;lt; at &amp;gt;cmcltd.com or
telephone and immediately and permanently delete the message and any
attachments. Thank you.

______________________________________________________________________________

This email has been scrubbed for your protection by SecureMX.
For more information visit http://securemx.in
_____________________________________________________________________________
Section "InputDevice"
Identifier"Generic Keyboard"
Driver"kbd"
Option"XkbRules""xorg"
Option"XkbModel""pc105"
Option"XkbLayout""us"
EndSection

Section "InputDevice"
Identifier"Configured Mouse"
Driver"mouse"
Option"CorePointer"
EndSection

Section "Device"
Identifier"i.MX Accelerated Framebuffer Device"
Driver"imx"
Option"fbdev""/dev/fb0"

# This option only recognized when "mxc_epdc_fb" frame buffer driver in
# use.  Values are "RGB565" (default, 16-bit RGB), "Y8" (8-bit gray),
# and "Y8INV" (8-bit gray inverted).
Option"FormatEPDC""Y8INV"

EndSection

Section "Monitor"
Identifier"Configured Monitor"
EndSection

Section "Screen"
Identifier"Default Screen"
Monitor"Configured Monitor"
Device"i.MX Accelerated Framebuffer Device"
EndSection

Section "ServerLayout"
Identifier"Default Layout"
Screen"Default Screen"
EndSection

_______________________________________________
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>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 the IDE is getting confused about right clicks. Any ideas how to fix this please?

Best regards

David

_______________________________________________
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>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 gnome session.  Is this feasible?

In the x86-64 Fedora 17, the kernel version is 3.3.0-1.fc17.x86_64, and the driver of the integrated Intel card 00:02.0 is i915, and the driver of the add-on Nvidia NVS 300 card is nouveau.

When Fedora 17 just starts up, only the integrated Intel card has VGA output; when the nVidia driver is loaded and X server finishes startup, on the monitor (the first monitor) attached to the integrated Intel card, I see a gnome GUI session and I can log in, but on the monitor(the second monitor) attached to the add-on nVidia card, there is only a Fedora's logo (the small icon with a white f char and blue background) in the center of the monitor -- no gnome session. And the USB mouse/keyboard inputs are routed to the first monitor only and I can't move the mouse cursor into the second monitor.
Please see the attachment for the Xorg.0.log -- looks only 1 monitor is detected and used??? Can you find anything abnormal in the log? -- I don't have much experience about configuring X... :-(
BTW, at this time, "ps aux | grep Xorg" shows:
root       702  0.0  0.1  99352  9648 tty1     Ss+  11:18   0:00 /usr/bin/Xorg :0 -background none -logverbose 7 -auth /var/run/gdm/auth-for-gdm-wSpZLp/database -seat seat0 -nolisten tcp vt1

Later I tried "init 3" to enter runlevel 3 so Xorg was killed.
And I tried "Xorg -configure" to generated a xorg.conf.new and a new /var/log/Xorg.0.log(please see the attached xorg.conf.new and Xorg.0.log.new).
Looks the xorg.conf.new is a good config file: Screen0/Card0/Monitor0 and Scree1/Card1/Monitor1 are defined properly. 
However, when I tried to run "Xorg :0 -config /root/xorg.conf.new", both monitors flicked once and kept black and I got a strange "FATAL: Module fbcon not found" error.
Please see the attached run_Xorg.log and Xorg.0.log.new2 for the details.

Could you please have a look at the logs and see if there is something abnormal? Any suggestion would be appreciated!
If you need any further information, please just let me know.

I'm using X.Org X Server 1.12.0.  It's said one X server can manage two graphics card at the same time? -- if yes, how many gnome session is created, one or two?
It's said people "run dual cards for years" -- do you run one X server or two X servers here?

Thanks!

&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
Your subscription address: gcfx-xorg-2&amp;lt; at &amp;gt;m.gmane.org&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 confused: many people say it is possible to run a GUI program by cron. I assume that means they are not logged in when the cron job is run. How come it is impossible for me?

Thank you very much.
_______________________________________________
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>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 Audio: Found keys
[    15.884] (II) evdev: Conexant USB Audio: Configuring as mouse
[    15.884] (II) evdev: Conexant USB Audio: Configuring as keyboard
[    15.884] (**) evdev: Conexant USB Audio: YAxisMapping: buttons 4 and 5
[    15.884] (**) evdev: Conexant USB Audio: EmulateWheelButton: 4, 
EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    15.884] (**) Option "config_info" 
"udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5.4/1-1.5.4:1.3/input/input7/event7"
[    15.884] (II) XINPUT: Adding extended input device "Conexant USB 
Audio" (type: KEYBOARD, id 12)
[    15.884] (**) Option "xkb_rules" "evdev"
[    15.884] (**) Option "xkb_model" "pc105"
[    15.884] (**) Option "xkb_layout" "de"
[    15.885] (II) evdev: Conexant USB Audio: initialized for absolute axes.
[    15.885]
Backtrace:
[    15.886] 0: /usr/bin/X (xorg_backtrace+0x37) [0xb7844627]
[    15.886] 1: /usr/bin/X (0xb76bc000+0x18c3aa) [0xb78483aa]
[    15.886] 2: (vdso) (__kernel_rt_sigreturn+0x0) [0xb769940c]
[    15.886] 3: /lib/i386-linux-gnu/libc.so.6 (0xb7305000+0x135d38) 
[0xb743ad38]
[    15.886] 4: /usr/bin/X (XIChangeDeviceProperty+0x16c) [0xb77dcafc]
[    15.886] 5: /usr/lib/xorg/modules/input/evdev_drv.so 
(0xb6b8f000+0x634e) [0xb6b9534e]
[    15.886] 6: /usr/lib/xorg/modules/input/evdev_drv.so 
(0xb6b8f000+0x6595) [0xb6b95595]
[    15.886] 7: /usr/bin/X (ActivateDevice+0x66) [0xb76e82e6]
[    15.886] 8: /usr/bin/X (0xb76bc000+0x8cc05) [0xb7748c05]
[    15.886] 9: /usr/bin/X (0xb76bc000+0x9b142) [0xb7757142]
[    15.886] 10: /usr/bin/X (0xb76bc000+0x9b9b3) [0xb77579b3]
[    15.886] 11: /usr/bin/X (config_init+0x14) [0xb7756a14]
[    15.886] 12: /usr/bin/X (InitInput+0xfd) [0xb7736edd]
[    15.887] 13: /usr/bin/X (0xb76bc000+0x2524e) [0xb76e124e]
[    15.887] 14: /lib/i386-linux-gnu/libc.so.6 (__libc_start_main+0xf3) 
[0xb731e4d3]
[    15.887] 15: /usr/bin/X (0xb76bc000+0x255e9) [0xb76e15e9]
[    15.887] Segmentation fault at address 0x139
[    15.887]
Caught signal 11 (Segmentation fault). Server aborting
[    15.887]
Please consult the The X.Org Foundation support
          at http://wiki.x.org
  for help.
[    15.887] Please also check the log file at "/var/log/Xorg.0.log" for 
additional information.
[    15.887]
[    15.916] (II) evdev: Power Button: Close
[    15.916] (II) UnloadModule: "evdev"
[    15.916] (II) Unloading evdev
[    15.960] (II) evdev: Video Bus: Close
[    15.960] (II) UnloadModule: "evdev"
[    15.960] (II) Unloading evdev
[    15.988] (II) evdev: Power Button: Close
[    15.988] (II) UnloadModule: "evdev"
[    15.988] (II) Unloading evdev
[    16.072] (II) UnloadModule: "wacom"
[    16.072] (II) Unloading wacom
[    16.124] (II) evdev: HID 046a:0021: Close
[    16.124] (II) UnloadModule: "evdev"
[    16.124] (II) Unloading evdev
[    16.180] (II) evdev: HID 046a:0021: Close
[    16.180] (II) UnloadModule: "evdev"
[    16.180] (II) Unloading evdev
[    16.180] (II) UnloadModule: "evdev"
[    16.180] (II) Unloading evdev
[    16.180] (II) AIGLX: Suspending AIGLX clients for VT switch
[    16.246]  ddxSigGiveUp: Closing log
[    16.246] Server terminated with error (1). Closing log file.

Crashing version from Ubuntu 12.04:
X.Org X Server 1.11.3
Release Date: 2011-12-16
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.42-23-generic i686 Ubuntu
Current Operating System: Linux slate 3.2.0 #3 SMP Wed Jan 11 14:02:31 
CET 2012 i686
Kernel command line: BOOT_IMAGE=/vmlinuz-3.2.0 
root=UUID=40e678cb-6174-4f2f-8118-827bf3e89d7c ro quiet splash 
vt.handoff=7 pcie_aspm=force i915.i915_enable_rc6=1 
i915.lvds_downclock=1 i915.i915_enable_fbc=1 i915_semaphores=1
Build Date: 20 April 2012  05:12:21AM
xorg-server 2:1.11.4-0ubuntu10.1 (For technical support please see 
http://www.ubuntu.com/support)
Current version of pixman: 0.24.4


Bus 001 Device 009: ID 0572:1400 Conexant Systems (Rockwell), Inc. 
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  idVendor           0x0572 Conexant Systems (Rockwell), Inc.
  idProduct          0x1400 
  bcdDevice            1.00
  iManufacturer           1 Conexant
  iProduct                2 USB Audio
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength          342
    bNumInterfaces          4
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower              500mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           0
      bInterfaceClass         1 Audio
      bInterfaceSubClass      1 Control Device
      bInterfaceProtocol      0 
      iInterface              0 
      AudioControl Interface Descriptor:
        bLength                10
        bDescriptorType        36
        bDescriptorSubtype      1 (HEADER)
        bcdADC               1.00
        wTotalLength          125
        bInCollection           2
        baInterfaceNr( 0)       1
        baInterfaceNr( 1)       2
      AudioControl Interface Descriptor:
        bLength                12
        bDescriptorType        36
        bDescriptorSubtype      2 (INPUT_TERMINAL)
        bTerminalID             2
        wTerminalType      0x0101 USB Streaming
        bAssocTerminal          0
        bNrChannels             2
        wChannelConfig     0x0003
          Left Front (L)
          Right Front (R)
        iChannelNames           0 
        iTerminal               0 
      AudioControl Interface Descriptor:
        bLength                12
        bDescriptorType        36
        bDescriptorSubtype      2 (INPUT_TERMINAL)
        bTerminalID             1
        wTerminalType      0x0201 Microphone
        bAssocTerminal          0
        bNrChannels             2
        wChannelConfig     0x0003
          Left Front (L)
          Right Front (R)
        iChannelNames           0 
        iTerminal               0 
      AudioControl Interface Descriptor:
        bLength                 9
        bDescriptorType        36
        bDescriptorSubtype      3 (OUTPUT_TERMINAL)
        bTerminalID             3
        wTerminalType      0x0101 USB Streaming
        bAssocTerminal          0
        bSourceID              10
        iTerminal               0 
      AudioControl Interface Descriptor:
        bLength                 9
        bDescriptorType        36
        bDescriptorSubtype      3 (OUTPUT_TERMINAL)
        bTerminalID             4
        wTerminalType      0x0301 Speaker
        bAssocTerminal          0
        bSourceID               5
        iTerminal               0 
      AudioControl Interface Descriptor:
        bLength                10
        bDescriptorType        36
        bDescriptorSubtype      6 (FEATURE_UNIT)
        bUnitID                 5
        bSourceID               9
        bControlSize            1
        bmaControls( 0)      0x01
          Mute Control
        bmaControls( 1)      0x02
          Volume Control
        bmaControls( 2)      0x02
          Volume Control
        iFeature                0 
      AudioControl Interface Descriptor:
        bLength                10
        bDescriptorType        36
        bDescriptorSubtype      6 (FEATURE_UNIT)
        bUnitID                 6
        bSourceID               1
        bControlSize            1
        bmaControls( 0)      0x01
          Mute Control
        bmaControls( 1)      0x02
          Volume Control
        bmaControls( 2)      0x02
          Volume Control
        iFeature                0 
      AudioControl Interface Descriptor:
        bLength                12
        bDescriptorType        36
        bDescriptorSubtype      2 (INPUT_TERMINAL)
        bTerminalID             7
        wTerminalType      0x0603 Line Connector
        bAssocTerminal          0
        bNrChannels             2
        wChannelConfig     0x0003
          Left Front (L)
          Right Front (R)
        iChannelNames           0 
        iTerminal               0 
      AudioControl Interface Descriptor:
        bLength                10
        bDescriptorType        36
        bDescriptorSubtype      6 (FEATURE_UNIT)
        bUnitID                 8
        bSourceID               7
        bControlSize            1
        bmaControls( 0)      0x01
          Mute Control
        bmaControls( 1)      0x00
        bmaControls( 2)      0x00
        iFeature                0 
      AudioControl Interface Descriptor:
        bLength                13
        bDescriptorType        36
        bDescriptorSubtype      4 (MIXER_UNIT)
        bUnitID                 9
        bNrInPins               2
        baSourceID( 0)          2
        baSourceID( 1)          8
        bNrChannels             2
        wChannelConfig     0x0003
          Left Front (L)
          Right Front (R)
        iChannelNames           0 
        bmControls         0x00
        iMixer                  0 
      AudioControl Interface Descriptor:
        bLength                 8
        bDescriptorType        36
        bDescriptorSubtype      5 (SELECTOR_UNIT)
        bUnitID                10
        bNrInPins               2
        baSource( 0)            6
        baSource( 1)           11
        iSelector               0 
      AudioControl Interface Descriptor:
        bLength                10
        bDescriptorType        36
        bDescriptorSubtype      6 (FEATURE_UNIT)
        bUnitID                11
        bSourceID               7
        bControlSize            1
        bmaControls( 0)      0x01
          Mute Control
        bmaControls( 1)      0x02
          Volume Control
        bmaControls( 2)      0x02
          Volume Control
        iFeature                0 
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       0
      bNumEndpoints           0
      bInterfaceClass         1 Audio
      bInterfaceSubClass      2 Streaming
      bInterfaceProtocol      0 
      iInterface              0 
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       1
      bNumEndpoints           2
      bInterfaceClass         1 Audio
      bInterfaceSubClass      2 Streaming
      bInterfaceProtocol      0 
      iInterface              0 
      AudioStreaming Interface Descriptor:
        bLength                 7
        bDescriptorType        36
        bDescriptorSubtype      1 (AS_GENERAL)
        bTerminalLink           2
        bDelay                  1 frames
        wFormatTag              1 PCM
      AudioStreaming Interface Descriptor:
        bLength                14
        bDescriptorType        36
        bDescriptorSubtype      2 (FORMAT_TYPE)
        bFormatType             1 (FORMAT_TYPE_I)
        bNrChannels             2
        bSubframeSize           2
        bBitResolution         16
        bSamFreqType            2 Discrete
        tSamFreq[ 0]        48000
        tSamFreq[ 1]        44100
      Endpoint Descriptor:
        bLength                 9
        bDescriptorType         5
        bEndpointAddress     0x01  EP 1 OUT
        bmAttributes            5
          Transfer Type            Isochronous
          Synch Type               Asynchronous
          Usage Type               Data
        wMaxPacketSize     0x00c8  1x 200 bytes
        bInterval               1
        bRefresh                0
        bSynchAddress         131
        AudioControl Endpoint Descriptor:
          bLength                 7
          bDescriptorType        37
          bDescriptorSubtype      1 (EP_GENERAL)
          bmAttributes         0x01
            Sampling Frequency
          bLockDelayUnits         0 Undefined
          wLockDelay              0 Undefined
      Endpoint Descriptor:
        bLength                 9
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0003  1x 3 bytes
        bInterval               1
        bRefresh                5
        bSynchAddress           0
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       2
      bNumEndpoints           2
      bInterfaceClass         1 Audio
      bInterfaceSubClass      2 Streaming
      bInterfaceProtocol      0 
      iInterface              0 
      AudioStreaming Interface Descriptor:
        bLength                 7
        bDescriptorType        36
        bDescriptorSubtype      1 (AS_GENERAL)
        bTerminalLink           2
        bDelay                  1 frames
        wFormatTag              1 PCM
      AudioStreaming Interface Descriptor:
        bLength                14
        bDescriptorType        36
        bDescriptorSubtype      2 (FORMAT_TYPE)
        bFormatType             1 (FORMAT_TYPE_I)
        bNrChannels             2
        bSubframeSize           3
        bBitResolution         24
        bSamFreqType            2 Discrete
        tSamFreq[ 0]        48000
        tSamFreq[ 1]        44100
      Endpoint Descriptor:
        bLength                 9
        bDescriptorType         5
        bEndpointAddress     0x01  EP 1 OUT
        bmAttributes            5
          Transfer Type            Isochronous
          Synch Type               Asynchronous
          Usage Type               Data
        wMaxPacketSize     0x012c  1x 300 bytes
        bInterval               1
        bRefresh                0
        bSynchAddress         131
        AudioControl Endpoint Descriptor:
          bLength                 7
          bDescriptorType        37
          bDescriptorSubtype      1 (EP_GENERAL)
          bmAttributes         0x01
            Sampling Frequency
          bLockDelayUnits         0 Undefined
          wLockDelay              0 Undefined
      Endpoint Descriptor:
        bLength                 9
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0003  1x 3 bytes
        bInterval               1
        bRefresh                5
        bSynchAddress           0
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        2
      bAlternateSetting       0
      bNumEndpoints           0
      bInterfaceClass         1 Audio
      bInterfaceSubClass      2 Streaming
      bInterfaceProtocol      0 
      iInterface              0 
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        2
      bAlternateSetting       1
      bNumEndpoints           1
      bInterfaceClass         1 Audio
      bInterfaceSubClass      2 Streaming
      bInterfaceProtocol      0 
      iInterface              0 
      AudioStreaming Interface Descriptor:
        bLength                 7
        bDescriptorType        36
        bDescriptorSubtype      1 (AS_GENERAL)
        bTerminalLink           3
        bDelay                  1 frames
        wFormatTag              1 PCM
      AudioStreaming Interface Descriptor:
        bLength                14
        bDescriptorType        36
        bDescriptorSubtype      2 (FORMAT_TYPE)
        bFormatType             1 (FORMAT_TYPE_I)
        bNrChannels             2
        bSubframeSize           2
        bBitResolution         16
        bSamFreqType            2 Discrete
        tSamFreq[ 0]        48000
        tSamFreq[ 1]        44100
      Endpoint Descriptor:
        bLength                 9
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            5
          Transfer Type            Isochronous
          Synch Type               Asynchronous
          Usage Type               Data
        wMaxPacketSize     0x00c8  1x 200 bytes
        bInterval               1
        bRefresh                0
        bSynchAddress           0
        AudioControl Endpoint Descriptor:
          bLength                 7
          bDescriptorType        37
          bDescriptorSubtype      1 (EP_GENERAL)
          bmAttributes         0x01
            Sampling Frequency
          bLockDelayUnits         0 Undefined
          wLockDelay              0 Undefined
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        3
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      0 No Subclass
      bInterfaceProtocol      0 None
      iInterface              0 
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.00
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength     324
         Report Descriptors: 
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x84  EP 4 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              10
Device Status:     0x0000
  (Bus Powered)
_______________________________________________
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>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 address: gcfx-xorg-2&amp;lt; at &amp;gt;m.gmane.org

&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 as described in http://unicode.org/reports/tr15/
       (report/discussion with Andries E Brouwer).
     * modify CBT, other ISO-6429 controls which are used by VT520 to work
       with DECOM.
     * add HPR and VPR controls, ISO 6429 cursor movement used in VT520.
     * remove  "linux"  restriction for IUTF8 ifdef in main.c (prompted by
       Matthew Dempsky posting on mailing.openbsd.tech).
     * implement the remaining VT420-level device status reports.
     * change DECXCPR to return page 1, rather than 0.
     * improve VT-level checks on reporting functions, such as DECXCPR.
     * change limit on decTerminalID to 525.
     * fixes to improve vttest vt52 screen when running as a VT420:
          + add  checks  for  some  VT2xx and up controls for consistency:
            DECSCL, S1C8T, S1C7T.
          + modify  DECRQSS  return  for  DECSCL  to only return that when
            running as VT2xx and up.
          + when exiting from VT52-mode, resume in VT100 level rather than
            the level before starting VT52-mode.
     * implement  DECLRMM,  DECSLRMM  and DECNCSM (prompted by discussions
       with  Ailin  Nemui  and  Paul LeoNerd Evans). This modifies several
       controls to obey top/bottom and left/right margins.
     * correct  macro  definition  used for testing modes used in ANSI/DEC
       request-mode controls introduced in patch #262.
     * modify  x_getlogin  to  check $LOGNAME and $USER before fallback to
       getlogin,  so that user's choice for these variables can be carried
       forward to the xterm process (Debian #611487).
     * document DECSCUSR response for DECRQSS in ctlseqs.ms
     * add  zIconTitleFormat  resource  to  allow  customizing  the "*** "
       prefixed  to the icon title when the zIconBeep feature is activated
       (request by Thomas Adam).
     * modify  DECSCUSR  to update the same internal variable as RM/SM 12,
       and  document  in  manpage  the  two variables used for controlling
       blinking cursor (report by Paul LeoNerd Evans).
     * correct  response  data for DECSCUSR in reply for DECRQSS response,
       which  had  inverted  the blink-value (reports by Ailin Nemui, Paul
       LeoNerd Evans).
     * add  a  null-pointer  check  in  OkPasswd macro to fix a problem in
       resize  with Fedora 17 and a serial console (report/patch by Daniel
       Drake).
     * add  workaround  for  Mac  OS  X,  which loses the window size of a
       pseudo-terminal  when  the tty device is opened (report/analysis by
       Egmont Koblinger).
     * updated  configure  check for workable posix_openpt versus grantpt,
       from luit fixes.
     * modify  DECIC/DECDC/DECBI/DECFI implemented in patch #277 to enable
       them only in VT4xx mode and up (report by Ailin Nemui).
     * update config.guess, config.sub

&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 resize it again. -&amp;gt; line 389
- then ResizeRequest and Configuration again (VirtualBox actually
display a welcome screen before showing the application)


At the end the application's window has got the desired dimension but
not its content.

Something odd (at least for me): when it is completely started,
resizing (XResizeWindow) it at the 'fullscreen size' again does
nothing, but resizing it to another size or moving it one pixel away,
trigger its content resize.

I really need help, because I already tried so much way to trick it
(without success) and actually want to solve the problem in a clean
way (It works well under metacity/gnome, I check there code, but did
not find why).

Regards,

Frederic
_______________________________________________
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>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>

