Bug#465084: NV problem

2008-05-01 Thread CK

Hello!

I confirm i encounter with same problem. If end kde session then system hangs. 
Very bad. The output is same too.

Regards

-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: [RFC PATCHv2] New XCB socket handoff mechanism for Xlib/XCB and other libraries

2008-05-01 Thread Julien Cristau
On Thu, May  1, 2008 at 00:41:17 +0100, Colin Guthrie wrote:

 I want to update the Mandriva cooker package but as a lot of other
 packages link against libxcb-xlib and will require rebuilt, I don't want
 to push it out only to find that this wont actually happen and I'll have
 to rebuild everything again :s
 
Why would you need to rebuild anything?  This change doesn't affect the
Xlib ABI, so this shouldn't affect anything beyond libxcb and libX11
afaict (unless you're installing .la files, but then you've already
lost anyway).

Cheers,
Julien


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



xserver-xorg-input-fpit: Changes to 'upstream-unstable'

2008-05-01 Thread Julien Cristau
 .cvsignore  |   19 
 .gitignore  |   20 
 configure.ac|2 
 man/.cvsignore  |2 
 man/.gitignore  |2 
 man/Makefile.am |1 
 man/fpit.man|   25 +++--
 readme.txt  |   89 ---
 src/.cvsignore  |6 -
 src/.gitignore  |6 +
 src/xf86Fpit.c  |  261 ++--
 11 files changed, 248 insertions(+), 185 deletions(-)

New commits:
commit 95676d89c7954cc5550ed386b784b470034320cc
Author: Peter Hutterer [EMAIL PROTECTED]
Date:   Wed Jan 30 13:30:59 2008 +1030

Set is_core_pointer to 0 by default.

Server 1.4 does not do physical core devices.

diff --git a/src/xf86Fpit.c b/src/xf86Fpit.c
index 81d70a1..5b1d060 100644
--- a/src/xf86Fpit.c
+++ b/src/xf86Fpit.c
@@ -231,7 +231,7 @@ static void xf86FpitReadInput(LocalDevicePtr local)
 {
FpitPrivatePtr priv = (FpitPrivatePtr) local-private;
int len, loop;
-   int is_core_pointer = 1;
+   int is_core_pointer = 0;
int x, y, buttons, prox;
DeviceIntPtr device;
int conv_x, conv_y;

commit 01a4da993a2ecd0f017baef49b6e57b82c05316d
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Mon Jan 14 10:50:54 2008 +1030

Don't crash with xserver 1.4

xf86IsCorePointer() is gone.

diff --git a/src/xf86Fpit.c b/src/xf86Fpit.c
index 531b0bd..81d70a1 100644
--- a/src/xf86Fpit.c
+++ b/src/xf86Fpit.c
@@ -231,7 +231,7 @@ static void xf86FpitReadInput(LocalDevicePtr local)
 {
FpitPrivatePtr priv = (FpitPrivatePtr) local-private;
int len, loop;
-   int is_core_pointer;
+   int is_core_pointer = 1;
int x, y, buttons, prox;
DeviceIntPtr device;
int conv_x, conv_y;
@@ -319,7 +319,9 @@ static void xf86FpitReadInput(LocalDevicePtr local)
prox = (priv-fpitData[loop]  PROXIMITY_BIT) ? 0 : 1;
buttons = (priv-fpitData[loop]  BUTTON_BITS);
device = local-dev;
+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) == 0
is_core_pointer = xf86IsCorePointer(device);
+#endif
 
xf86FpitConvert(local, 0, 2, x, y, 0, 0, 0, 0, conv_x, 
conv_y);
xf86XInputSetScreen(local, priv-screen_no, conv_x, conv_y);

commit 2823f7c3f3784a1a398b8d5a9157c2e5263b6285
Author: Peter Hutterer [EMAIL PROTECTED]
Date:   Tue Apr 8 16:00:36 2008 +0930

Revert Don't call xf86IsCorePointer.

This reverts commit 9ea880913d5775454311b0257bbaebf773cd4285.

diff --git a/src/xf86Fpit.c b/src/xf86Fpit.c
index 0378e37..531b0bd 100644
--- a/src/xf86Fpit.c
+++ b/src/xf86Fpit.c
@@ -231,6 +231,7 @@ static void xf86FpitReadInput(LocalDevicePtr local)
 {
FpitPrivatePtr priv = (FpitPrivatePtr) local-private;
int len, loop;
+   int is_core_pointer;
int x, y, buttons, prox;
DeviceIntPtr device;
int conv_x, conv_y;
@@ -318,18 +319,15 @@ static void xf86FpitReadInput(LocalDevicePtr local)
prox = (priv-fpitData[loop]  PROXIMITY_BIT) ? 0 : 1;
buttons = (priv-fpitData[loop]  BUTTON_BITS);
device = local-dev;
+   is_core_pointer = xf86IsCorePointer(device);
 
xf86FpitConvert(local, 0, 2, x, y, 0, 0, 0, 0, conv_x, 
conv_y);
xf86XInputSetScreen(local, priv-screen_no, conv_x, conv_y);
 
/* coordinates are ready we can send events */
 
-   if (prox!=priv-fpitOldProximity) { /* proximity changed */
-#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) == 0
-   if (xf86IsCorePointer(device) == 0)
-#endif
-   xf86PostProximityEvent(device, prox, 0, 2, x, y);
-   }
+   if (prox!=priv-fpitOldProximity) /* proximity changed */
+   if (!is_core_pointer) xf86PostProximityEvent(device, 
prox, 0, 2, x, y);
 
if (priv-fpitOldX != x || priv-fpitOldY != y) /* position 
changed */
xf86PostMotionEvent(device, 1, 0, 2, x, y);

commit 164eb7570b10add2087ce293995319798ca3c345
Author: Adam Jackson [EMAIL PROTECTED]
Date:   Thu Mar 20 15:36:01 2008 -0400

fpit 1.2.0

diff --git a/configure.ac b/configure.ac
index 693ad9e..7ba075e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([xf86-input-fpit],
-1.1.0,
+1.2.0,
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 xf86-input-fpit)
 

commit f69bd251763ce59102d999c14ee751d4283a73eb
Author: Matthieu Herrb [EMAIL PROTECTED]
Date:   Sat Mar 8 22:57:19 2008 +0100

Makefile.am: nuke RCS Id

diff --git a/man/Makefile.am b/man/Makefile.am
index bf7ec17..f0eb29b 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -1,4 +1,3 @@
-# $Id$
 #
 # Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
 # 

commit 9ea880913d5775454311b0257bbaebf773cd4285
Author: Paulo Cesar Pereira de Andrade [EMAIL PROTECTED]
Date:   Tue Feb 5 02:45:34 2008 -0200

Don't call 

xserver-xorg-input-fpit: Changes to 'debian-unstable'

2008-05-01 Thread Julien Cristau
 .cvsignore|   19 
 .gitignore|   20 
 ChangeLog |  346 -
 Makefile.in   |  152 ++--
 aclocal.m4|  911 
 config.guess  |   60 +
 config.sub|   66 +
 configure | 1837 ++
 configure.ac  |2 
 debian/changelog  |9 
 debian/control|6 
 debian/xsfbs/xsfbs.mk |   78 --
 depcomp   |   93 ++
 install-sh|  514 +
 ltmain.sh |  277 +--
 man/.cvsignore|2 
 man/.gitignore|2 
 man/Makefile.am   |1 
 man/Makefile.in   |   95 +-
 man/fpit.man  |   25 
 missing   |   61 -
 mkinstalldirs |5 
 readme.txt|   89 +-
 src/.cvsignore|6 
 src/.gitignore|6 
 src/Makefile.in   |  140 ++-
 src/xf86Fpit.c|  261 ---
 27 files changed, 3399 insertions(+), 1684 deletions(-)

New commits:
commit f69ae1445bdcd9f8128a4811041ec18b10129971
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Thu May 1 13:06:53 2008 +0200

Update changelogs for new git pull

diff --git a/ChangeLog b/ChangeLog
index 48b4ca0..e626cd6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,27 @@
+commit 95676d89c7954cc5550ed386b784b470034320cc
+Author: Peter Hutterer [EMAIL PROTECTED]
+Date:   Wed Jan 30 13:30:59 2008 +1030
+
+Set is_core_pointer to 0 by default.
+
+Server 1.4 does not do physical core devices.
+
+commit 01a4da993a2ecd0f017baef49b6e57b82c05316d
+Author: Julien Cristau [EMAIL PROTECTED]
+Date:   Mon Jan 14 10:50:54 2008 +1030
+
+Don't crash with xserver 1.4
+
+xf86IsCorePointer() is gone.
+
+commit 2823f7c3f3784a1a398b8d5a9157c2e5263b6285
+Author: Peter Hutterer [EMAIL PROTECTED]
+Date:   Tue Apr 8 16:00:36 2008 +0930
+
+Revert Don't call xf86IsCorePointer.
+
+This reverts commit 9ea880913d5775454311b0257bbaebf773cd4285.
+
 commit 164eb7570b10add2087ce293995319798ca3c345
 Author: Adam Jackson [EMAIL PROTECTED]
 Date:   Thu Mar 20 15:36:01 2008 -0400
diff --git a/debian/changelog b/debian/changelog
index f6463e1..7c670cf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,6 @@
 xserver-xorg-input-fpit (1:1.2.0-1) UNRELEASED; urgency=low
 
-  * New upstream release.
+  * New upstream release plus some fixes from git
 + fixes crash due to undefined xf86IsCorePointer (closes: #457722)
   * Bump Standards-Version to 3.7.3.
   * Drop the XS- prefix from Vcs-* control fields.

commit d4d6c2760b685bc3eb9f7bb5f6d6eb578aca977c
Author: Julien Cristau [EMAIL PROTECTED]
Date:   Thu May 1 13:05:47 2008 +0200

minor debian/control updates, and changelog fixup

* Bump Standards-Version to 3.7.3.
* Drop the XS- prefix from Vcs-* control fields.

diff --git a/debian/changelog b/debian/changelog
index af150b0..f6463e1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,9 @@
 xserver-xorg-input-fpit (1:1.2.0-1) UNRELEASED; urgency=low
 
   * New upstream release.
-+ should fix crash due to undefined xf86IsCorePointer (closes: #457722)
++ fixes crash due to undefined xf86IsCorePointer (closes: #457722)
+  * Bump Standards-Version to 3.7.3.
+  * Drop the XS- prefix from Vcs-* control fields.
 
  -- Julien Cristau [EMAIL PROTECTED]  Fri, 21 Mar 2008 19:20:00 +0100
 
diff --git a/debian/control b/debian/control
index b0ea824..b53fb31 100644
--- a/debian/control
+++ b/debian/control
@@ -4,9 +4,9 @@ Priority: optional
 Maintainer: Debian X Strike Force debian-x@lists.debian.org
 Uploaders: David Nusinow [EMAIL PROTECTED], Julien Cristau [EMAIL 
PROTECTED]
 Build-Depends: debhelper (= 5), pkg-config, xserver-xorg-dev (= 2:1.4), 
x11proto-core-dev, x11proto-randr-dev, x11proto-input-dev
-Standards-Version: 3.7.2
-XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-input-fpit
-XS-Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-fpit.git
+Standards-Version: 3.7.3
+Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-input-fpit
+Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-fpit.git
 
 Package: xserver-xorg-input-fpit
 Architecture: any

commit 95676d89c7954cc5550ed386b784b470034320cc
Author: Peter Hutterer [EMAIL PROTECTED]
Date:   Wed Jan 30 13:30:59 2008 +1030

Set is_core_pointer to 0 by default.

Server 1.4 does not do physical core devices.

diff --git a/src/xf86Fpit.c b/src/xf86Fpit.c
index 81d70a1..5b1d060 100644
--- a/src/xf86Fpit.c
+++ b/src/xf86Fpit.c
@@ -231,7 +231,7 @@ static void xf86FpitReadInput(LocalDevicePtr local)
 {
FpitPrivatePtr priv = (FpitPrivatePtr) local-private;
int len, loop;
-   int is_core_pointer = 1;
+   int is_core_pointer = 0;
int x, y, buttons, prox;
DeviceIntPtr device;
int conv_x, conv_y;

commit 01a4da993a2ecd0f017baef49b6e57b82c05316d
Author: Julien Cristau 

Bug#457722: setting package to xserver-xorg-input-fpit, tagging 457722

2008-05-01 Thread Julien Cristau
# Automatically generated email from bts, devscripts version 2.10.26
#
# xserver-xorg-input-fpit (1:1.2.0-1) UNRELEASED; urgency=low
#
#  * New upstream release plus some fixes from git
#+ fixes crash due to undefined xf86IsCorePointer (closes: #457722)
#

package xserver-xorg-input-fpit
tags 457722 + pending




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: setting package to xserver-xorg-input-fpit, tagging 457722

2008-05-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.26
 #
 # xserver-xorg-input-fpit (1:1.2.0-1) UNRELEASED; urgency=low
 #
 #  * New upstream release plus some fixes from git
 #+ fixes crash due to undefined xf86IsCorePointer (closes: #457722)
 #
 package xserver-xorg-input-fpit
Ignoring bugs not assigned to: xserver-xorg-input-fpit

 tags 457722 + pending
Bug#457722: xserver-xorg-input-fpit: using touchscreen kills x
There were no tags set.
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#478836: whole memory occupied if screensaver interaggreagate is started within compiz

2008-05-01 Thread Juergen Kosel
Package: compiz
Version: 0.6.3~git20080115.0ea58487-1
Severity: critical
Justification: breaks the whole system

Hello,

when /usr/lib/xscreensaver/interaggregate was started,
the local console with gnome session became unusable.
From a remote ssh session I saw, that all memory (1 GB RAM + 1.4 GB swap)
were occupied.
Also all of the CPU time were in use (mostly by xorg and compiz.real).
So the computer was very busy with swapping and therefore it was
difficult and timeconsuming to kill the interaggregate process.

On the first view I thought that this is a problem of interaggregate,
and reported it as bug #478813.
But then I have started interaggreagate to reproduce the problem again.
It seems to me that it is related to compiz: If compiz doesn't run,
everything is fine.

But with compiz there are also other screensavers which cause the
problem, e.g. whirlwindwarp.

Next point: It doesn't seem to help always to kill the screensaver process,
but killing compiz.real leads to a usable system again.


Greetings
Juergen

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.24-1-amd64 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages compiz depends on:
ii  compiz-core 0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana
ii  compiz-gnom 0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana
ii  compiz-gtk  0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana
ii  compiz-plug 0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana

compiz recommends no packages.

-- no debconf information

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#463373: xkb-data: Patch resolving the issue

2008-05-01 Thread Itaï BEN YAACOV
Package: xkb-data
Version: 1.2~cvs.20080501.1-1
Followup-For: Bug #463373


I attach a patch with which alts_toggle works again.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- no debconf information
Index: xkb-data/symbols/group
===
--- xkb-data.orig/symbols/group 2007-09-26 13:43:48.0 +0200
+++ xkb-data/symbols/group  2008-04-08 23:34:40.0 +0200
@@ -232,12 +232,12 @@
 xkb_symbols ctrls_toggle {
   virtual_modifiers LControl, RControl;
 key LCTL {
-   type[Group1]=PC_RCONTROL_LEVEL2,
+   type[Group1]=PC_CONTROL_LEVEL2,
symbols[Group1]= [ NoSymbol,ISO_Prev_Group ],
virtualMods= LControl
 };
 key RCTL {
-   type[Group1]=PC_LCONTROL_LEVEL2,
+   type[Group1]=PC_CONTROL_LEVEL2,
symbols[Group1]= [ NoSymbol,ISO_Next_Group ],
virtualMods= RControl
 };
@@ -248,12 +248,12 @@
 xkb_symbols alts_toggle {
   virtual_modifiers LAlt, RAlt;
 key LALT {
-   type[Group1]=PC_RALT_LEVEL2,
+   type[Group1]=PC_ALT_LEVEL2,
symbols[Group1]= [ NoSymbol,ISO_Prev_Group ],
virtualMods= LAlt
 };
 key RALT {
-   type[Group1]=PC_LALT_LEVEL2,
+   type[Group1]=PC_ALT_LEVEL2,
symbols[Group1]= [ NoSymbol,ISO_Next_Group ],
virtualMods= RAlt
 };


Bug#478893: libgl1-mesa-dri: stalls or crashes on GLX

2008-05-01 Thread Yaroslav Halchenko
Package: libgl1-mesa-dri
Version: 7.0.3-1
Severity: normal


I was trying to run freesurfer (1GB monster download which is not in
Debian unfortunately) on some dataset on my laptop. 
When GL window appears system freezes (doesn't response to Ctrl-Alt-BS),
and in xorg.log.old (after SysRq forced reboot) I find:

,---
| (II) intel(0): Modeline 1280x1024x59.9  109.00  1280 1368 1496 1712  1024 
1027 1034 1063 -hsync +vsync (63.7 kHz)
| (II) intel(0): EDID vendor LEN, prod id 16389
|
| Backtrace:
| 0: /usr/bin/X(xf86SigHandler+0x6a) [0x4755da]
| 1: /lib/libc.so.6 [0x2b1aee99c240]
| 2: /usr/lib/dri/i965_dri.so [0x2b1b019a1ceb]
| 3: /usr/lib/dri/i965_dri.so(brw_upload_vertices+0x20a) [0x2b1b019a222a]
| 4: /usr/lib/dri/i965_dri.so [0x2b1b019a1769]
| 5: /usr/lib/dri/i965_dri.so(brw_draw_prims+0xb0) [0x2b1b019a1a00]
| 6: /usr/lib/dri/i965_dri.so [0x2b1b01a378eb]
| 7: /usr/lib/xorg/modules/extensions//libglx.so [0x2b1aefa83295]
| 8: /usr/lib/xorg/modules/extensions//libglx.so(DoRenderLarge+0x356) 
[0x2b1aefa64da6]
| 9: /usr/lib/xorg/modules/extensions//libglx.so [0x2b1aefa6872c]
| 10: /usr/bin/X(Dispatch+0x2e0) [0x44e300]
| 11: /usr/bin/X(main+0x47d) [0x436add]
| 12: /lib/libc.so.6(__libc_start_main+0xf4) [0x2b1aee9891c4]
| 13: /usr/bin/X(FontFileCompleteXLFD+0x281) [0x435e19]
|
| Fatal server error:
| Caught signal 11.  Server aborting
|
| (II) AIGLX: Suspending AIGLX clients for VT switch
`---
Full log is at: 
http://www.onerussian.com/Linux/bugs/xorg.crash/Xorg.0.log.stalled_at_12:29:40

Looking at #473551, I've decided to enable 
Option NoTrapSignals  True
and then system doesn't halt but it restarts X. Corresponding xorg.0.log is at
http://www.onerussian.com/Linux/bugs/xorg.crash/Xorg.0.log.justrestarted

My xorg.conf can be found at
http://www.onerussian.com/Linux/bugs/xorg.crash/xorg.conf
and dmesg
http://www.onerussian.com/Linux/bugs/xorg.crash/dmesg

Please let me know what other troubleshooting I should do to come closer to 
help to pin down the problem?

Thanks in advance

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (600, 'unstable'), (300, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.24-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libgl1-mesa-dri depends on:
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libdrm2   2.3.0-4Userspace interface to kernel DRM 
ii  libexpat1 1.95.8-4   XML parsing C library - runtime li
ii  libgl1-mesa-glx   7.0.3-1A free implementation of the OpenG

libgl1-mesa-dri recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: retitle 478893 to libgl1-mesa-dri: [i965] stalls or crashes on GLX

2008-05-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.26
 retitle 478893 libgl1-mesa-dri: [i965] stalls or crashes on GLX
Bug#478893: libgl1-mesa-dri: stalls or crashes on GLX
Changed Bug title to `libgl1-mesa-dri: [i965] stalls or crashes on GLX' from 
`libgl1-mesa-dri: stalls or crashes on GLX'.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#433331: xserver-xorg-core: enabling this option also will fix iceweasel 3.0beta

2008-05-01 Thread Eugene V. Lyubimkin
Package: xserver-xorg-core
Version: 2:1.4.1~git20080131-4
Followup-For: Bug #41

See https://bugzilla.mozilla.org/show_bug.cgi?id=411831


-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 2007-10-14 14:13 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1831520 2008-04-29 22:38 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
01:05.0 VGA compatible controller: ATI Technologies Inc RS485 [Radeon Xpress 
1100 IGP]

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 2465 2008-05-02 01:52 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section Files
FontPath/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
FontPath/usr/share/fonts/X11/misc:unscaled
FontPath/usr/share/fonts/X11/100dpi/:unscaled
FontPath/usr/share/fonts/X11/75dpi/:unscaled
FontPath/usr/share/fonts/X11/Type1
FontPath/usr/share/fonts/X11/100dpi
FontPath/usr/share/fonts/X11/75dpi
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc104
Option  XkbLayout us,ru,ua
Option  XkbVariant,winkeys,winkeys
Option  XkbOptionsgrp:ctrl_shift_toggle,grp_led:scroll
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device/dev/input/mice
Option  Protocol  ImPS/2
Option  Emulate3Buttons   true
EndSection

Section InputDevice
Identifier  Synaptics Touchpad
Driver  synaptics
Option  SendCoreEventstrue
Option  Device/dev/psaux
Option  Protocol  auto-dev
Option  HorizScrollDelta  0
EndSection

Section Module
Loaddrm
Loaddri
Loadglx
EndSection

Section Device
Identifier  Generic Video Card
Driver  ati
BusID   PCI:1:5:0

Option  DRI   true
Option  XAANoOffscreenPixmaps
EndSection

Section Monitor
Identifier  Generic Monitor
Option  DPMS
HorizSync   28-64
VertRefresh 43-60
EndSection

Section Screen
Identifier  Default Screen
Device  Generic Video Card
Monitor Generic Monitor
DefaultDepth24
SubSection Display
Modes   1280x800 1024x768 800x600 640x480
EndSubSection
EndSection

Section ServerLayout
Identifier  Default Layout
Screen  Default Screen
InputDevice Generic Keyboard
InputDevice Configured Mouse
InputDevice Synaptics Touchpad
EndSection

Section DRI
Mode0666
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 40872 2008-02-25 22:22 /var/log/Xorg.20.log
-rw-r--r-- 1 root root 46178 2008-05-02 01:53 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the xorg product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.

X.Org X Server 1.4.0.90
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.1~git20080131-4)
Current Operating System: Linux 1501-debian 2.6.25-1-amd64 #1 SMP Fri Apr 25 
14:38:55 UTC 2008 x86_64
Build Date: 29 April 2008  07:24:27PM
 
Before reporting problems, check http://wiki.x.org
to make sure that you have the 

Re: [Xcb] [RFC PATCHv2] New XCB socket handoff mechanism for Xlib/XCB and other libraries

2008-05-01 Thread James Cloos
 Julien == Julien Cristau [EMAIL PROTECTED] writes:

Julien Why would you need to rebuild anything?  This change doesn't
Julien affect the Xlib ABI, so this shouldn't affect anything beyond
Julien libxcb and libX11 afaict (unless you're installing .la files,
Julien but then you've already lost anyway).

A lot of other binaries on my box needed rebuilding as they directly
referenced libxcb-xlib.so.0.  An example I have yet to rebuild:

,[ readelf -d /usr/bin/autotrace|grep xcb-xlib ]
|  0x0001 (NEEDED)Shared library: [libxcb-xlib.so.0]
`

That may also be so for Mandriva.

OTOH, now that you mention it, going back to the current git master of
libxcb and libX11 shouldn't require rebuilding everything yet again, yes?

-JimC
-- 
James Cloos [EMAIL PROTECTED] OpenPGP: 1024D/ED7DAEA6


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: [Xcb] [RFC PATCHv2] New XCB socket handoff mechanism for Xlib/XCB and other libraries

2008-05-01 Thread Mikhail Gusarov
Twas brillig at 20:48:56 01.05.2008 UTC-04 when James Cloos did gyre and gimble:

 JC A lot of other binaries on my box needed rebuilding as they directly
 JC referenced libxcb-xlib.so.0.

It is bug in packaging, called 'overlinking' and usually caused by
installing libtool .la files. Here is one spectacular example:
http://lists.debian.org/debian-devel-announce/2005/11/msg00016.html

-- 


pgpVtEMlT5k5B.pgp
Description: PGP signature