Re: High CPU usage with tabs and GTK

2012-02-29 Thread Neil Whelchel
Hello, Thank you for pointing out xscope, I didn't know about it. I ran my app under xscope and the first thing I noticed was that there were many DAMAGE-Event related messages, about 90 groups of them per second. So on a hunch, I disabled DAMAGE in X and the problem of the constant chatter went

dvi to vga, resolution too small

2012-02-29 Thread max
Problem: I have dual head videocard nvidia 6200 (agp) with VGA and DVI. Resolution of monitor is 1600x1200 on VGA head. But maximum resolution of monitor on DVI head (through DVI to VGA) is only 640x480. How to set bigger resolution? P.S. Sorry for my english. My environment: Videocard: # lspci

Re: Configure Xorg on 2001 PPC iBook with Debian 6

2012-02-29 Thread Tormod Volden
On Wed, Feb 29, 2012 at 6:08 PM, Mike Mackenna mpmacke...@gmail.com wrote: Added this to the device section as shown below.  The weird part is You missed the Option word. Anyway, I don't think r128 honors that option so never mind. vbe/int10 is disabled on ppc in most of the r128 driver because

Re: Configure Xorg on 2001 PPC iBook with Debian 6

2012-02-29 Thread Mike Mackenna
Scratch that... This is the one that is working. http://mac.linux.be/files/xorg/ibook6.txt On Wed, Feb 29, 2012 at 10:13 AM, Mike Mackenna mpmacke...@gmail.com wrote: Hello, I am trying to configure X on an old iBook running Debian 6.  When I run Xorg -configure I get the error below.

[ANNOUNCE] listres 1.0.3

2012-02-29 Thread Alan Coopersmith
The listres program generates a list of X resources for a widget in an X client written using a toolkit based on libXt. This minor maintenance release mostly delivers minor cleanups and improvements to source code, documentation, build configuration. Alan Coopersmith (4): listres depends

Re: [PATCH xorg-gtest 1/3] Separate XSERVER deps from X11 deps

2012-02-29 Thread Chase Douglas
On 02/27/2012 08:04 AM, Gaetan Nadon wrote: The previous commits fixed a compile error as there were no -I for Xlib.h but at the same time introduced a link error for the example subdir. The X server published C flags introduce -fvisibility=hidden. The X server is not a build dependency for the

[PATCH libXaw3d] Fix parameters of FloatInRange

2012-02-29 Thread Matt Turner
Introduced in f6cd786d1. Reported-by: Jean-Pierre Demailly jean-pierre.demai...@ujf-grenoble.fr Signed-off-by: Matt Turner matts...@gmail.com --- src/Scrollbar.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/Scrollbar.c b/src/Scrollbar.c index be74ed3..5667327

[PATCH macros 1/2] Make XORG_TESTSET_CFLAG work for multiple languages

2012-02-29 Thread Chase Douglas
Signed-off-by: Chase Douglas chase.doug...@canonical.com --- xorg-macros.m4.in | 53 - 1 files changed, 32 insertions(+), 21 deletions(-) diff --git a/xorg-macros.m4.in b/xorg-macros.m4.in index 8550ca0..9041542 100644 --- a/xorg-macros.m4.in

[PATCH macros 2/2] Define BASE_CXXFLAGS when C++ is the chosen language

2012-02-29 Thread Chase Douglas
Set the language to C++ before calling XORG_DEFAULT_OPTIONS. This can be done by calling AC_LANG(C++). Signed-off-by: Chase Douglas chase.doug...@canonical.com --- xorg-macros.m4.in | 166 ++-- 1 files changed, 96 insertions(+), 70 deletions(-)

[PATCH xorg-gtest] Remove xorg-server pkgconfig check

2012-02-29 Thread Chase Douglas
xorg-server flags are not needed. Including them also causes -fvisibility=hidden to be used, which breaks the build output. Signed-off-by: Chase Douglas chase.doug...@canonical.com --- configure.ac |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac

Re: [PATCH xorg-gtest 2/3] distcheck fails: cannot open linker script file libxorg-gtest.ver

2012-02-29 Thread Chase Douglas
On 02/27/2012 08:04 AM, Gaetan Nadon wrote: The $(top_srcdir) path is needed to locate the source as it is not in the same dir as the generated files. Signed-off-by: Gaetan Nadonmems...@videotron.ca --- src/Makefile.am |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [PATCH xorg-gtest 3/3] distcheck: cannot create directory `xorg-gtest-0.1.1': Permission denied

2012-02-29 Thread Chase Douglas
On 02/27/2012 08:04 AM, Gaetan Nadon wrote: Use the util-macros implementation to generate the ChangeLog and the INSTALL file. Signed-off-by: Gaetan Nadonmems...@videotron.ca --- Makefile.am |6 +++--- configure.ac |6 ++ 2 files changed, 9 insertions(+), 3 deletions(-)

Re: [PATCH] Xi: prohibit multiple XIQueryVersion requests with different versions

2012-02-29 Thread Chase Douglas
On 02/26/2012 06:58 PM, Peter Hutterer wrote: Return BadValue if major or minor differs on the second call. Signed-off-by: Peter Huttererpeter.hutte...@who-t.net Makes sense. Reviewed-by: Chase Douglas chase.doug...@canonical.com ___

Re: [PATCH] dix: when rescaling from master, rescale from desktop dimensions (#46657)

2012-02-29 Thread Chase Douglas
On 02/26/2012 04:18 PM, Peter Hutterer wrote: master-last.valuators[] is in desktop dimensions, so use those as rescale axis ranges, not the screen. Otherwise, a rescale on any screen not the top-left will cause out-of-bounds coordinates which will always map to the bottom-right screen, causing

Re: [PATCH xorg-gtest 1/3] Separate XSERVER deps from X11 deps

2012-02-29 Thread Gaetan Nadon
On 12-02-29 01:57 PM, Chase Douglas wrote: On 02/27/2012 08:04 AM, Gaetan Nadon wrote: The previous commits fixed a compile error as there were no -I for Xlib.h but at the same time introduced a link error for the example subdir. The X server published C flags introduce -fvisibility=hidden.

Re: [PATCH xorg-gtest 1/3] Separate XSERVER deps from X11 deps

2012-02-29 Thread Chase Douglas
On 02/29/2012 12:57 PM, Gaetan Nadon wrote: On 12-02-29 01:57 PM, Chase Douglas wrote: On 02/27/2012 08:04 AM, Gaetan Nadon wrote: The previous commits fixed a compile error as there were no -I for Xlib.h but at the same time introduced a link error for the example subdir. The X server

Re: [PATCH macros 2/2] Define BASE_CXXFLAGS when C++ is the chosen language

2012-02-29 Thread Gaetan Nadon
On 12-02-29 03:24 PM, Chase Douglas wrote: Set the language to C++ before calling XORG_DEFAULT_OPTIONS. This can be done by calling AC_LANG(C++). Is this sentence a recommendation of what to do in a module or does it describe what the patch does? I am a little confused. Signed-off-by: Chase

Re: [PATCH xorg-gtest] Remove xorg-server pkgconfig check

2012-02-29 Thread Gaetan Nadon
On 12-02-29 03:28 PM, Chase Douglas wrote: xorg-server flags are not needed. Including them also causes -fvisibility=hidden to be used, which breaks the build output. Signed-off-by: Chase Douglas chase.doug...@canonical.com --- configure.ac |2 +- 1 files changed, 1 insertions(+), 1

[PATCH xorg-gtest 2/2] config: do not initialize libtool twice

2012-02-29 Thread Gaetan Nadon
AC_PROG_LIBTOOL initializes libtool, contrary to what the name may suggest. It has been renamed to LT_INIT in libtool v2. However X.Org has a requirement to support libtool v1.5. Signed-off-by: Gaetan Nadon mems...@videotron.ca --- configure.ac |2 -- 1 files changed, 0 insertions(+), 2

Re: [PATCH macros 2/2] Define BASE_CXXFLAGS when C++ is the chosen language

2012-02-29 Thread Chase Douglas
On 02/29/2012 02:58 PM, Gaetan Nadon wrote: On 12-02-29 03:24 PM, Chase Douglas wrote: Set the language to C++ before calling XORG_DEFAULT_OPTIONS. This can be done by calling AC_LANG(C++). Is this sentence a recommendation of what to do in a module or does it describe what the patch does? I

Re: [PATCH xorg-gtest] Remove xorg-server pkgconfig check

2012-02-29 Thread Chase Douglas
On 02/29/2012 03:15 PM, Gaetan Nadon wrote: On 12-02-29 03:28 PM, Chase Douglas wrote: xorg-server flags are not needed. Including them also causes -fvisibility=hidden to be used, which breaks the build output. Signed-off-by: Chase Douglaschase.doug...@canonical.com --- configure.ac |2

Re: [PATCH xorg-gtest 1/2] config: no need to m4_include gtest.m4

2012-02-29 Thread Chase Douglas
On 02/29/2012 03:23 PM, Gaetan Nadon wrote: This is done when autoconf runs aclocal. Signed-off-by: Gaetan Nadonmems...@videotron.ca --- configure.ac |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index ae254be..d15eac6 100644 ---

Re: [PATCH xorg-gtest 2/2] config: do not initialize libtool twice

2012-02-29 Thread Chase Douglas
On 02/29/2012 03:23 PM, Gaetan Nadon wrote: AC_PROG_LIBTOOL initializes libtool, contrary to what the name may suggest. It has been renamed to LT_INIT in libtool v2. However X.Org has a requirement to support libtool v1.5. Signed-off-by: Gaetan Nadonmems...@videotron.ca --- configure.ac |

[Bug 44141] ATI R600: GPU lockup when using OpenGL

2012-02-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44141 --- Comment #9 from Fabrice fabrice.j...@gmail.com 2012-02-29 00:03:27 PST --- Well, F16 still provide libdrm 2.4.30 so I won't try to compile. By the way, still an issue with xorg-x11-drv-ati 6.14.3.4. -- Configure bugmail:

[Bug 28106] radeon KMS causes hardware conflict/interference with Intel wifi and audio, crashes wireless

2012-02-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28106 --- Comment #68 from Neven nkla...@gmail.com 2012-02-29 12:44:29 PST --- The wifi I tried disabling the sound quaility is still bad when doing anything display intensive. I havent tried disabling alsa altogether to see if the wifi is still

[Bug 46796] New: [X800SE] Mouse cursor corruption when switching users

2012-02-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46796 Bug #: 46796 Summary: [X800SE] Mouse cursor corruption when switching users Classification: Unclassified Product: xorg Version: unspecified Platform: x86 (IA32) OS/Version: Linux

[Bug 46796] [X800SE] Mouse cursor corruption when switching users

2012-02-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46796 --- Comment #1 from Bryce Harrington br...@canonical.com 2012-02-29 16:07:00 PST --- Created attachment 57834 -- https://bugs.freedesktop.org/attachment.cgi?id=57834 BootDmesg.txt -- Configure bugmail: