Bug#50859: xfs Bug #50859: use start-stop-daemon --chuid ?

2008-05-17 Thread Sven Joachim
On 2008-05-16 23:43 +0200, Petter Reinholdtsen wrote:

> [Sven Joachim]
>> Not at all, good catch.  I just didn't know it even has a log file.
>> How about compiling with -DUSE_SYSLOG?
>
> I must admit, I would prefer xfs logging to syslog.  When debugging
> the segfault in #148650, the first place I looked was /var/log/syslog.
> When Nothing showed up there, I started searching for the logs and
> discovered /var/log/xfs.log.  So I would be less surprised if it used
> syslog. :)

Actually, in the default /etc/X11/fs/config there are the following
lines:

,
| # log errors using syslog
| use-syslog = on
`

which could be useful if only xfs were compiled with syslog support. :-)
But we need to deal with the error-file anyway, since that setting is
not mandatory.

Sven



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



Bug#478696: [libpciaccess-dev] unable to parse vendor/device information from pci.ids.gz

2008-05-17 Thread Aníbal Monsalve Salazar
On Thu, May 15, 2008 at 07:36:04PM +1000, Anibal Monsalve Salazar wrote:
>I'll recommend to do so. Once etch is released, I'll revert the
>changes done in pciutils 1:3.0.0-4 to how it was in the previous
>version.

s/etch/lenny


signature.asc
Description: Digital signature


Bug#467263: [xserver-xorg-video-ati] bug reported to freedesktop n. 15954

2008-05-17 Thread Emanuele Zamprogno
Package: xserver-xorg-video-ati
Version: 1:6.8.0-1

--- Please enter the report below this line. ---
i have reported bug to freedesktop bugzilla,

Bye!

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.25.3

Debian Release: lenny/sid
  500 testing www.debian-multimedia.org
  500 testing localhost

--- Package information. ---
Depends(Version) | Installed
-+-===
libc6 (>= 2.7-1) | 2.7-10
xserver-xorg-core (>= 2:1.4) | 2:1.4.1~git20080131-4


-- 
Emanuele Zamprogno
Student of Medical School, University of Padua.
Debian GNU/Linux Sid user



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



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

2008-05-17 Thread Brice Goglin
 configure.ac   |2 -
 man/Makefile.am|1 
 man/joystick.man   |   66 +++--
 src/StrKeysym.h|   22 
 src/backend_bsd.c  |2 -
 src/backend_bsd.h  |2 -
 src/backend_evdev.c|8 ++---
 src/backend_evdev.h|2 -
 src/backend_joystick.c |2 -
 src/backend_joystick.h |2 -
 src/jstk.c |   11 +---
 src/jstk.h |4 +-
 src/jstk_axis.c|2 -
 src/jstk_axis.h|2 -
 src/jstk_key.c |   11 +---
 src/jstk_key.h |2 -
 src/jstk_options.c |9 --
 src/jstk_options.h |2 -
 18 files changed, 102 insertions(+), 50 deletions(-)

New commits:
commit 0961ffa84825f3f32d9c973f054400ab9d2b7c08
Author: Sascha Hlusiak <[EMAIL PROTECTED]>
Date:   Sun Apr 27 19:16:29 2008 +0200

Bumped to version 1.3.2

diff --git a/configure.ac b/configure.ac
index a4b9e4a..ba7fa58 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([xf86-input-joystick],
-1.3.1,
+1.3.2,
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 xf86-input-joystick)
 

commit c3e3fb8795c19a292ca37ab4d67b308fbb20911b
Author: Sascha Hlusiak <[EMAIL PROTECTED]>
Date:   Wed Apr 9 15:09:46 2008 +0200

Display evdev bus/vendor/product/version in separate line

diff --git a/src/backend_evdev.c b/src/backend_evdev.c
index 5f34394..231bc2d 100644
--- a/src/backend_evdev.c
+++ b/src/backend_evdev.c
@@ -176,9 +176,9 @@ jstkOpenDevice_evdev(JoystickDevPtr joystick)
 if (ioctl(joystick->fd, EVIOCGUNIQ(sizeof(uniq)), uniq) == -1)
 strcpy(uniq, "No name");
 
-xf86Msg(X_INFO, "Joystick: %s. %d axes, %d buttons.\n", name, axes, 
buttons);
-xf86Msg(X_INFO, "Joystick: bus 0x%x vendor 0x%x product 0x%x version 
0x%x\n",
-id.bustype, id.vendor, id.product, id.version);
+xf86Msg(X_INFO, "Joystick: %s. bus 0x%x vendor 0x%x product 0x%x version 
0x%x\n",
+   name, id.bustype, id.vendor, id.product, id.version);
+xf86Msg(X_INFO, "Joystick: found %d axes, %d buttons\n", axes, buttons);
 
 joystick->read_proc = jstkReadData_evdev;
 joystick->close_proc = jstkCloseDevice_evdev;

commit edcc8c26dfa3f89672a66c47665d89c7c9200b13
Author: Sascha Hlusiak <[EMAIL PROTECTED]>
Date:   Sun Mar 30 13:21:22 2008 +0200

Fixed keymap size to 8-256 to prevent crash

Newer xservers don't like keymaps that are smaller than 248 keys.

diff --git a/src/jstk.h b/src/jstk.h
index e6c22c0..c2cef9d 100644
--- a/src/jstk.h
+++ b/src/jstk.h
@@ -127,7 +127,7 @@ typedef struct _JoystickDevRec {
 } buttonmap;
 struct _KEYMAP {
 int size;
-KeySym map[MAP_LENGTH];
+KeySym map[256-MIN_KEYCODE];
 } keymap;
 
 AXIS axis[MAXAXES];   /* Configuration per axis */
diff --git a/src/jstk_key.c b/src/jstk_key.c
index 42492c4..a9a6e0d 100644
--- a/src/jstk_key.c
+++ b/src/jstk_key.c
@@ -70,8 +70,12 @@ jstkInitKeys(DeviceIntPtr pJstk, JoystickDevPtr priv)
 
 DBG(1, xf86Msg(X_CONFIG, "Initializing Keyboard with %d keys\n",
priv->keymap.size));
+for (i = 0; i < priv->keymap.size; i++)
+{
+   DBG(6, xf86Msg(X_CONFIG, "Keymap [%d]: 0x%08X\n", 
MIN_KEYCODE+i,priv->keymap.map[i]));
+}
 
-memset(modMap, 0, sizeof modMap);
+memset(modMap, 0, sizeof(modMap));
 
 for (i = 0; i < priv->keymap.size; i++) {
 sym = priv->keymap.map[i];
@@ -84,7 +88,8 @@ jstkInitKeys(DeviceIntPtr pJstk, JoystickDevPtr priv)
 keySyms.map= priv->keymap.map;
 keySyms.mapWidth   = 1;
 keySyms.minKeyCode = MIN_KEYCODE;
-keySyms.maxKeyCode = MIN_KEYCODE + priv->keymap.size - 1;
+/*keySyms.maxKeyCode = MIN_KEYCODE + priv->keymap.size - 1; */
+keySyms.maxKeyCode = MIN_KEYCODE + 
sizeof(priv->keymap.map)/sizeof(priv->keymap.map[0]) - 1;
 
 for (i = 0; i < priv->keymap.size; i++) {
 sym = priv->keymap.map[i];
diff --git a/src/jstk_options.c b/src/jstk_options.c
index 24912b5..510c160 100644
--- a/src/jstk_options.c
+++ b/src/jstk_options.c
@@ -83,7 +83,7 @@ jstkGetKeyNumberInMap(JoystickDevPtr priv,
 for (j=0; jkeymap.size; j++)
 if (priv->keymap.map[j] == keysym)
 break;
-if (j > MAP_LENGTH+1) return 0;
+if (j >= sizeof(priv->keymap.map)/sizeof(priv->keymap.map[0])) return 0;
 priv->keymap.map[j] = keysym;
 if (j + 1 > priv->keymap.size) priv->keymap.size = j + 1;
 return j;

commit fac2c42a01cf030a05d2305a01700f3677f6a8dc
Author: Sascha Hlusiak <[EMAIL PROTECTED]>
Date:   Sun Mar 30 13:05:35 2008 +0200

Clear complete keymap instead of only the first element

diff --git a/src/jstk.c b/src/jstk.c
index 73d41b4..a77f0ae 100644
--- a/src/jstk.c
+++ b/src/jstk.c
@@ -481,7 +481,7 @@ jstkCorePreInit(InputDriverPtr drv, IDevPtr dev, int flags)
 priv->amplify = 1.0f;
 priv->buttonmap.size = 0;
 priv->keymap.size = 1;

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

2008-05-17 Thread Brice Goglin
 ChangeLog  |   80 +
 Makefile.in|   49 +--
 aclocal.m4 |  265 +++-
 config.guess   |   32 +-
 config.sub |   44 ++
 configure  |  770 -
 configure.ac   |2 
 debian/changelog   |   10 
 debian/control |2 
 debian/rules   |2 
 depcomp|   33 +-
 install-sh |  228 +++---
 ltmain.sh  |   58 ++-
 man/Makefile.am|1 
 man/Makefile.in|7 
 man/joystick.man   |   66 ++--
 src/Makefile.in|   29 -
 src/StrKeysym.h|   22 +
 src/backend_bsd.c  |2 
 src/backend_bsd.h  |2 
 src/backend_evdev.c|8 
 src/backend_evdev.h|2 
 src/backend_joystick.c |2 
 src/backend_joystick.h |2 
 src/jstk.c |   11 
 src/jstk.h |4 
 src/jstk_axis.c|2 
 src/jstk_axis.h|2 
 src/jstk_key.c |   11 
 src/jstk_key.h |2 
 src/jstk_options.c |9 
 src/jstk_options.h |2 
 32 files changed, 1230 insertions(+), 531 deletions(-)

New commits:
commit 81af02e3ffda04079c77a09492bb598923bb4675
Author: Brice Goglin <[EMAIL PROTECTED]>
Date:   Sat May 17 12:09:37 2008 +0200

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index 34b9b12..12d99fa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-joystick (1:1.3.2-1) UNRELEASED; urgency=low
+xserver-xorg-input-joystick (1:1.3.2-1) unstable; urgency=low
 
   * New upstream release.
   * Run dpkg-shlibdeps with --warnings=6.  Drivers reference symbols from
@@ -6,7 +6,7 @@ xserver-xorg-input-joystick (1:1.3.2-1) UNRELEASED; urgency=low
 dpkg-shlibdeps to shut up about symbols it can't find.
 + Build-depend on dpkg-dev >= 1.14.17.
 
- -- Brice Goglin <[EMAIL PROTECTED]>  Sat, 17 May 2008 11:39:00 +0200
+ -- Brice Goglin <[EMAIL PROTECTED]>  Sat, 17 May 2008 12:09:11 +0200
 
 xserver-xorg-input-joystick (1:1.3.1-1) unstable; urgency=low
 

commit c3298c023a529a1ca74512c848d98d281f4529cd
Author: Brice Goglin <[EMAIL PROTECTED]>
Date:   Sat May 17 12:09:08 2008 +0200

Run dpkg-shlibdeps with --warnings=6.

Drivers reference symbols from /usr/bin/Xorg and other modules,
and that's not a bug, so we want dpkg-shlibdeps to shut up about
symbols it can't find.

Build-depend on dpkg-dev >= 1.14.17.

diff --git a/debian/changelog b/debian/changelog
index d75b754..34b9b12 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,12 @@
 xserver-xorg-input-joystick (1:1.3.2-1) UNRELEASED; urgency=low
 
   * New upstream release.
+  * Run dpkg-shlibdeps with --warnings=6.  Drivers reference symbols from
+/usr/bin/Xorg and other modules, and that's not a bug, so we want
+dpkg-shlibdeps to shut up about symbols it can't find.
++ Build-depend on dpkg-dev >= 1.14.17.
 
- -- Brice Goglin <[EMAIL PROTECTED]>  Sat, 17 May 2008 11:26:00 +0200
+ -- Brice Goglin <[EMAIL PROTECTED]>  Sat, 17 May 2008 11:39:00 +0200
 
 xserver-xorg-input-joystick (1:1.3.1-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 5971bfd..b423018 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
 Uploaders: David Nusinow <[EMAIL PROTECTED]>, Drew Parsons <[EMAIL 
PROTECTED]>, Brice Goglin <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 5), quilt, pkg-config, xserver-xorg-dev (>= 
2:1.4), x11proto-input-dev, x11proto-core-dev, x11proto-randr-dev, 
x11proto-kb-dev
+Build-Depends: debhelper (>= 5), quilt, pkg-config, xserver-xorg-dev (>= 
2:1.4), x11proto-input-dev, x11proto-core-dev, x11proto-randr-dev, 
x11proto-kb-dev, dpkg-dev (>= 1.14.17)
 Standards-Version: 3.7.2
 XS-Vcs-Git: 
git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-input-joystick
 XS-Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-input-joystick.git
diff --git a/debian/rules b/debian/rules
index 4a3dbde..99b0cbe 100755
--- a/debian/rules
+++ b/debian/rules
@@ -79,7 +79,7 @@ binary-arch: build install serverabi
dh_compress
dh_fixperms
dh_installdeb
-   dh_shlibdeps
+   dh_shlibdeps -- --warnings=6
dh_gencontrol
dh_md5sums
dh_builddeb

commit ad76c8f475a19c98b8dbd46b98e4676ca0b55e58
Author: Brice Goglin <[EMAIL PROTECTED]>
Date:   Sat May 17 11:25:43 2008 +0200

New upstream release

diff --git a/ChangeLog b/ChangeLog
index e0b3d27..481004d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,83 @@
+commit 0961ffa84825f3f32d9c973f054400ab9d2b7c08
+Author: Sascha Hlusiak <[EMAIL PROTECTED]>
+Date:   Sun Apr 27 19:16:29 2008 +0200
+
+Bumped to version 1.3.2
+
+commit c3e3fb8795c19a292ca37ab4d67b308fbb20911b
+Author: Sascha Hlusiak <[EMAIL PROTECTED]>
+Date:   Wed Apr 9 15:09:46 2008 +0200
+
+Display e

xserver-xorg-input-joystick: Changes to 'refs/tags/xserver-xorg-input-joystick-1_1.3.2-1'

2008-05-17 Thread Brice Goglin
Tag 'xserver-xorg-input-joystick-1_1.3.2-1' created by Brice Goglin <[EMAIL 
PROTECTED]> at 2008-05-17 10:30 +

Tagging upload of xserver-xorg-input-joystick 1:1.3.2-1 to unstable.

Changes since xserver-xorg-input-joystick-1_1.3.1-1:
Brice Goglin (4):
  Merge tag 'xf86-input-joystick-1.3.2' into debian-unstable
  New upstream release
  Run dpkg-shlibdeps with --warnings=6.
  Prepare changelog for upload

Matthieu Herrb (1):
  Makefile.am: nuke RCS Id

Sascha Hlusiak (11):
  Typo in man page
  Increased default deadzone from 1000 to 5000
  Changed default deadzone in manpage from 1000 to 5000
  Changed copyrights to include year 2008
  Added "StartMouseEnabled" and "StartKeysEnabled" options
  Allow '+' as separator for key mapping as in "key=Alt_L+Tab"
  Fixed off-by-one in keymap generation code
  Clear complete keymap instead of only the first element
  Fixed keymap size to 8-256 to prevent crash
  Display evdev bus/vendor/product/version in separate line
  Bumped to version 1.3.2

---
 ChangeLog  |   80 +
 Makefile.in|   49 +--
 aclocal.m4 |  265 +++-
 config.guess   |   32 +-
 config.sub |   44 ++
 configure  |  770 -
 configure.ac   |2 
 debian/changelog   |   10 
 debian/control |2 
 debian/rules   |2 
 depcomp|   33 +-
 install-sh |  228 +++---
 ltmain.sh  |   58 ++-
 man/Makefile.am|1 
 man/Makefile.in|7 
 man/joystick.man   |   66 ++--
 src/Makefile.in|   29 -
 src/StrKeysym.h|   22 +
 src/backend_bsd.c  |2 
 src/backend_bsd.h  |2 
 src/backend_evdev.c|8 
 src/backend_evdev.h|2 
 src/backend_joystick.c |2 
 src/backend_joystick.h |2 
 src/jstk.c |   11 
 src/jstk.h |4 
 src/jstk_axis.c|2 
 src/jstk_axis.h|2 
 src/jstk_key.c |   11 
 src/jstk_key.h |2 
 src/jstk_options.c |9 
 src/jstk_options.h |2 
 32 files changed, 1230 insertions(+), 531 deletions(-)
---


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



Processing of xserver-xorg-input-joystick_1.3.2-1_i386.changes

2008-05-17 Thread Archive Administrator
xserver-xorg-input-joystick_1.3.2-1_i386.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-input-joystick_1.3.2-1.dsc
  xserver-xorg-input-joystick_1.3.2.orig.tar.gz
  xserver-xorg-input-joystick_1.3.2-1.diff.gz
  xserver-xorg-input-joystick_1.3.2-1_i386.deb

Greetings,

Your Debian queue daemon


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



Bug#467263: [xserver-xorg-video-ati] bug reported to freedesktop n. 15954

2008-05-17 Thread Brice Goglin
Emanuele Zamprogno wrote:
> i have reported bug to freedesktop bugzilla,
>   

Thanks a lot, I already marked the debian bug as forwarded upstream, and
I am following the discussion there.

Brice




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



Processed: reassign 478880 to libgl1-mesa-dri, user [EMAIL PROTECTED], usertagging 478880

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

> # Automatically generated email from bts, devscripts version 2.10.27
> reassign 478880 libgl1-mesa-dri
Bug#478880: mayavi2: Opacity == 1.0, but still slightly transparent
Bug#478960: mayavi2: interpolation produces fake transparency effects
Bug reassigned from package `xserver-xorg-video-intel' to `libgl1-mesa-dri'.

> user [EMAIL PROTECTED]
Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]).
> usertags 478880 i965
Bug#478880: mayavi2: Opacity == 1.0, but still slightly transparent
There were no usertags set.
Usertags are now: i965.
>
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]



xserver-xorg-input-joystick_1.3.2-1_i386.changes ACCEPTED

2008-05-17 Thread Debian Installer

Accepted:
xserver-xorg-input-joystick_1.3.2-1.diff.gz
  to 
pool/main/x/xserver-xorg-input-joystick/xserver-xorg-input-joystick_1.3.2-1.diff.gz
xserver-xorg-input-joystick_1.3.2-1.dsc
  to 
pool/main/x/xserver-xorg-input-joystick/xserver-xorg-input-joystick_1.3.2-1.dsc
xserver-xorg-input-joystick_1.3.2-1_i386.deb
  to 
pool/main/x/xserver-xorg-input-joystick/xserver-xorg-input-joystick_1.3.2-1_i386.deb
xserver-xorg-input-joystick_1.3.2.orig.tar.gz
  to 
pool/main/x/xserver-xorg-input-joystick/xserver-xorg-input-joystick_1.3.2.orig.tar.gz


Override entries for your package:
xserver-xorg-input-joystick_1.3.2-1.dsc - source x11
xserver-xorg-input-joystick_1.3.2-1_i386.deb - optional x11

Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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



reassign 478880 to libgl1-mesa-dri, user [EMAIL PROTECTED], usertagging 478880

2008-05-17 Thread Julien Cristau
# Automatically generated email from bts, devscripts version 2.10.27
reassign 478880 libgl1-mesa-dri 
user [EMAIL PROTECTED]
usertags 478880 i965


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



Bug#467058: This issue seems fixed in 2:1.4.1~git20080131-3

2008-05-17 Thread Harald Braumann
On Fri, 04 Apr 2008 22:20:06 +0200
Julien BLACHE <[EMAIL PROTECTED]> wrote:

> Brice Goglin <[EMAIL PROTECTED]> wrote:
> 
> > Well, it has been in unstable for a while :)
> 
> I mistook that for the version of the radeonhd package.
> 
> Anyway, it's not fixed.
It seems to be fixed in 2:1.4.1~git20080131-4. At least it doesn't
happen anymore here.

harry

> 
> JB.
> 


signature.asc
Description: PGP signature


Bug#481275: xserver-xorg: xrandr works with RightOf but not LeftOf

2008-05-17 Thread Brice Goglin
Antony Gelberg wrote:
> Package: xserver-xorg
> Version: 1:7.3+10
> Severity: important
>
> Hi,
>
> As you can see, I specify Virtual 2960 1050 in my xorg config.  I have a
> 1680x1050 Philips monitor on the left, and a 1280x1024 Benq on the
> right.  The issues were:
> 1) xrandr reported:
> Screen 0: minimum 320 x 200, current 2560 x 1050, maximum 2960 x 1050
> i.e. current screen size < maximum by 400 pixels.
> 2) My right monitor worked well.  My left monitor was in the right 
> resolution, but the right, ooh let's say 400 pixels ;) was just a 
> replica of what was on my right monitor.
>
> This causes headaches as well as not giving me the screen I wanted.  
>
> I ran xrandr --fb 2960x1050, and xrandr then output:
> Screen 0: minimum 320 x 200, current 2960 x 1050, maximum 2960 x 1050,  
> but still what I was seeing on the screen was no better.
>
> In desperation, I changed LeftOf to RightOf, and it worked 
> perfectly (subject to me swapping the monitors round).  This is surely a 
> bug, as the user shouldn't have to guess a monitor order that might 
> work.
>   

Before I report this bug upstream, I'd like to know whether Y LeftOf X
causes the same problem than X RightOf Y (as opposed to X LeftOf Y which
works fine for you). See what I mean?

thanks,
Brice




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



Bug#481345: xserver-xorg-video-intel: Xserver locks up when google earth is run

2008-05-17 Thread Sam Morris
On Thu, 2008-05-15 at 15:16 +0200, Brice Goglin wrote:
> Sam Morris wrote:
> > Package: xserver-xorg-video-intel
> > Version: 2:2.3.1-1
> > Severity: important
> >
> > On an amd64 system, the server crashes when I run google earth.
> >
> > The screen freezes, and then the screen goes black for a second. When it
> > comes back, some colours on the screen are different (like someone
> > picked a random colour in a painting program and then clicked on a few
> > random places using the Fill tool).
> >
> > It is possible to switch to tty1 and hit ctrl+alt+del to reboot, or even
> > log in blind and run some programs, all while the screen remains frozen.
> >   
> 
> If X is actually crashing, there should be a backtrace at the end of
> /var/log/Xorg.0.log (or log.old if X already restarted since then).

There isn't, so it look like it's not actaully crashing, just getting
stuck somewhere...

> It would be even better if you catch a backtrace with gdb after
> installing xserver-xorg-core-dbg and libgl1-mesa-dri-dbg. Since your
> machine seems to be alive after the problem, logging through ssh and
> attaching gdb should be easy.

I'll try this next time I can reproduce the problem. Having failed every
single time I tried to run google earth so far, now I can't get it to
freeze at all! Computers, eh? :)

> 
> 
> > (WW) intel(0): ESR is 0x0001
> > (WW) intel(0): PRB0_CTL (0x0001f001) indicates ring buffer enabled
> > (WW) intel(0): PRB0_HEAD (0x468145b8) and PRB0_TAIL (0x00014710) indicate 
> > ring buffer not flushed
> > (WW) intel(0): Existing errors found in hardware state.
> >   
> 
> Beware of this. Assuming this is th X log after a soft reboot after the
> crash, it may mean that the hardware didn't get properly cleaned,
> causing some possible problems later. A hard reboot after the crash may
> help.

This is actually the log of the crashed X, as obtained by rebooting and
examining /var/log/Xorg.0.log.old.

> 
> Brice
> 
-- 
Sam Morris
http://robots.org.uk/

PGP key id 1024D/5EA01078
3412 EA18 1277 354B 991B  C869 B219 7FDB 5EA0 1078


signature.asc
Description: This is a digitally signed message part


Bug#481529: xserver-xorg: Unusable after last upgrade (maybe wrong refresh rates?)

2008-05-17 Thread Dimitri Chausson
Hi Brice,

thanks a lot for replying so fast; I use a Viewsonic VP930 via DVI. I tried 
using a plain VGA cable (it also has a VGA input) but the output is the same.
I also modified the xorg.conf file using the lines you specified, it was 
unfortunately the same problem..
In the end, I tried the xrandr utility, but without success:
> xrandr -display  :0.0
> Xlib: connection to ":0.0" refused by server
> Xlib: No protocol specified

> Can't open display :0.0

What else could I try ? Thanks,

Dimitri

-- 
249 Spiele für nur 1 Preis. Die GMX Spieleflatrate schon ab 9,90 Euro.
Neu: Asterix bei den Olympischen Spielen: http://flat.games.gmx.de



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



Bug#467058: This issue seems fixed in 2:1.4.1~git20080131-3

2008-05-17 Thread Julien BLACHE
Harald Braumann <[EMAIL PROTECTED]> wrote:

Hi,

> It seems to be fixed in 2:1.4.1~git20080131-4. At least it doesn't
> happen anymore here.

Yes, it's fixed.

JB.

-- 
 Julien BLACHE <[EMAIL PROTECTED]>  |  Debian, because code matters more 
 Debian & GNU/Linux Developer|   
 Public key available on  - KeyID: F5D6 5169 
 GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169 



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



Bug#467058: marked as done (xserver-xorg-video-radeonhd: crash with openoffice.org 2.4.0~rc1-2)

2008-05-17 Thread Debian Bug Tracking System

Your message dated Sat, 17 May 2008 16:31:47 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#467058: This issue seems fixed in 2:1.4.1~git20080131-3
has caused the Debian Bug report #467058,
regarding xserver-xorg-video-radeonhd: crash with openoffice.org 2.4.0~rc1-2
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
467058: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=467058
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: xserver-xorg-video-radeonhd
Version: 1.1.0-1
Severity: important

Hi,

I have what appears to be a reproducible crash when running OpenOffice.org
2.4.0~rc1-2:

Backtrace:
0: /usr/bin/X11/X(xf86SigHandler+0x6a) [0x47568a]
1: /lib/libc.so.6 [0x2b0926f49240]
2: /lib/libc.so.6(strlen+0x10) [0x2b0926f8e0b0]
3: /lib/libc.so.6(_IO_vfprintf+0x36ec) [0x2b0926f5dddc]
4: /lib/libc.so.6(_IO_fprintf+0x88) [0x2b0926f63968]
5: /usr/bin/X11/X(XkbWriteXKBGeometry+0x6f8) [0x5523c8]
6: /usr/bin/X11/X(XkbWriteXKBKeymapForNames+0x506) [0x551516]
7: /usr/bin/X11/X(XkbDDXLoadKeymapByNames+0x192) [0x55aae2]
8: /usr/bin/X11/X(ProcXkbGetKbdByName+0x322) [0x535152]
9: /usr/bin/X11/X(Dispatch+0x2e0) [0x44e3b0]
10: /usr/bin/X11/X(main+0x47d) [0x436b8d]
11: /lib/libc.so.6(__libc_start_main+0xf4) [0x2b0926f361c4]
12: /usr/bin/X11/X(FontFileCompleteXLFD+0x279) [0x435ec9]

Fatal server error:
Caught signal 11.  Server aborting


The crash happens in oowriter, with a single page word document loaded, when
I click on the File menu.

JB.

-- 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 Nov 11  2006 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1831520 Feb  1 06:08 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: ATI Technologies Inc M56P [Radeon Mobility 
X1600]

/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 3760 Feb  8 19:54 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# /etc/X11/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 /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/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"/usr/share/fonts/X11/misc"
#   FontPath"/usr/share/fonts/X11/cyrillic"
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"
# path to defoma fonts
FontPath"/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
FontPath"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load"i2c"
Load"bitmap"
Load"ddc"
Load"dri"
Load"extmod"
Load"freetype"
Load"glx"
Load"int10"
#   Load"type1"
Load"vbe"
Load"synaptics"
EndSection

Section "InputDevice"
Identifier  "MacBook Keyboard"
Driver  "kbd"
Option  "CoreKeyboard"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "macbook79"
Option  "XkbLayout" "fr"
#   Option  "XkbOptions""apple:badmap"
EndSection

Section "InputDevice"
Identifier  "Appletouch Trackpad"
Driver  "synaptics"
Option  "CorePointer"
Option  "Protocol"  "auto-dev"
Option  "Emulate3Buttons"   "false"
Option  "ZAxisMapping"  "4 5"
Option  "MinSpeed"  "1.0"
Option  "MaxSpeed"  "1.0"
Option  "FingerLow" "10"
Option  "FingerHigh""15"
Option  "TapButton1"   

Bug#468802: marked as done (xorg crashes when openoffice dropdown menus are pulled)

2008-05-17 Thread Debian Bug Tracking System

Your message dated Sat, 17 May 2008 16:31:47 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#467058: This issue seems fixed in 2:1.4.1~git20080131-3
has caused the Debian Bug report #467058,
regarding xorg crashes when openoffice dropdown menus are pulled
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
467058: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=467058
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: xserver-xorg
Version: 1:7.3+10
Severity: normal

--- Please enter the report below this line. ---
I've a MacBook with an intel video card

 00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 
943/940GML Express Integrated Graphics Controller (rev 03) (prog-if 00 [VGA 
controller])
Subsystem: Intel Corporation Unknown device 7270
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel modules: intelfb
 
and the following xorg.conf (not sure it matters, the bug is there even with no 
xorg.conf at all)

  Section "Files"
FontPath"/usr/share/fonts/X11/misc"
FontPath"/usr/X11R6/lib/X11/fonts/misc"
FontPath"/usr/share/fonts/X11/cyrillic"
FontPath"/usr/X11R6/lib/X11/fonts/cyrillic"
FontPath"/usr/share/fonts/X11/100dpi/:unscaled"
FontPath"/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath"/usr/share/fonts/X11/75dpi/:unscaled"
FontPath"/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath"/usr/share/fonts/X11/Type1"
FontPath"/usr/X11R6/lib/X11/fonts/Type1"
FontPath"/usr/share/fonts/X11/100dpi"
FontPath"/usr/X11R6/lib/X11/fonts/100dpi"
FontPath"/usr/share/fonts/X11/75dpi"
FontPath"/usr/X11R6/lib/X11/fonts/75dpi"
# path to defoma fonts
FontPath"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  EndSection
  
  Section "Module"
Load"bitmap"
Load"ddc"
Load"dri"
Load"extmod"
Load"freetype"
Load"glx"
Load"int10"
Load"v4l"
Load"vbe"
  EndSection
  
  Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "CoreKeyboard"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "macbook79"
Option  "XkbLayout" "us"
Option  "XkbOptions""compose:rwin,eurosign:e,apple:goodmap"
  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  "SendCoreEvents""true"
Option  "Device""/dev/input/mouse1"
Option  "Protocol"  "auto-dev"
# from http://gentoo-wiki.com/HARDWARE_Apple_MacBook#Touchpad_in_X11
Option "LeftEdge""100" 
Option "RightEdge"   "1120" 
Option "TopEdge" "50" 
Option "BottomEdge"  "310" 
Option "FingerLow"   "25" 
Option "FingerHigh"  "30" 
Option "MaxTapTime"  "180" 
Option "MaxTapMove"  "220" 
Option "MaxDoubleTapTime""180" 
Option "VertScrollDelta" "20" 
Option "HorizScrollDelta""50" 
Option "MinSpeed""0.79" 
Option "MaxSpeed""0.88" 
Option "AccelFactor" "0.0015" 
Option "SHMConfig"   "on"
Option "TapButton2"  "3" 
Option "TapButton3"  "2"
  EndSection
  
  Section "Device"
Identifier  "VGA0"
Driver  "intel"
BusID   "PCI:0:2:0"
Option  "DevicePresence" "on"
  EndSection
  
  Section "Monitor"
Identifier  "BUILTIN LCD"
Option  "DPMS"
  EndSection
  
  Section "Screen"
Identifier  "LCD"
Device  "VGA0"
Monitor "BUILTIN LCD"
DefaultDepth24
SubSection "Display"
   

Bug#470904: marked as done (openoffice.org: Accessing menu in OpenOffice crashes Xorg server)

2008-05-17 Thread Debian Bug Tracking System

Your message dated Sat, 17 May 2008 16:31:47 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#467058: This issue seems fixed in 2:1.4.1~git20080131-3
has caused the Debian Bug report #467058,
regarding openoffice.org: Accessing menu in OpenOffice crashes Xorg server
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
467058: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=467058
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---

Package: openoffice.org
Version: 1:2.4.0~rc4-1
Severity: critical
Justification: causes serious data loss

Attempt to access a menu item in OpenOffice (in particular, "File" menu item in 
OOo Impress) causes a crash of the whole Xorg server with the following backtrace (from 
Xorg.0.log):

Backtrace:
0: /usr/bin/X(xf86SigHandler+0x7e) [0x80c675e]
1: [0xe420]
2: /usr/bin/X(XkbWriteXKBKeymapForNames+0x582) [0x819f6d2]
3: /usr/bin/X(XkbDDXLoadKeymapByNames+0x1aa) [0x81a9e2a]
4: /usr/bin/X(ProcXkbGetKbdByName+0x301) [0x8181351]
5: /usr/bin/X [0x818939a]
6: /usr/bin/X [0x814d86e]
7: /usr/bin/X(Dispatch+0x2bf) [0x808d1ef]
8: /usr/bin/X(main+0x48b) [0x807470b]
9: /lib/i686/cmov/libc.so.6(__libc_start_main+0xe6) [0xb7d20456]
10: /usr/bin/X(FontFileCompleteXLFD+0x205) [0x8073a81]

Fatal server error:
Caught signal 11.  Server aborting

Never seen this problem with other applications. Only recent versions of 
OpenOffice causes such a crash.

Please let me know if you need any further info.

Regards,
Max

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

Kernel: Linux 2.6.24.3
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)
Shell: /bin/sh linked to /bin/bash

Versions of packages openoffice.org depends on:
ii  openoffice.org-base1:2.4.0~rc4-1 OpenOffice.org office suite - data
ii  openoffice.org-calc1:2.4.0~rc4-1 OpenOffice.org office suite - spre
ii  openoffice.org-core1:2.4.0~rc4-1 OpenOffice.org office suite archit
ii  openoffice.org-draw1:2.4.0~rc4-1 OpenOffice.org office suite - draw
ii  openoffice.org-filter-binf 1:2.4.0~rc4-1 Legacy filters (e.g. StarOffice 5.
ii  openoffice.org-filter-mobi 1:2.4.0~rc4-1 Mobile Devices Filters for OpenOff
ii  openoffice.org-impress 1:2.4.0~rc4-1 OpenOffice.org office suite - pres
ii  openoffice.org-java-common 1:2.4.0~rc4-1 OpenOffice.org office suite Java s
ii  openoffice.org-math1:2.4.0~rc4-1 OpenOffice.org office suite - equa
ii  openoffice.org-officebean  1:2.4.0~rc4-1 OpenOffice.org Office Bean
ii  openoffice.org-writer  1:2.4.0~rc4-1 OpenOffice.org office suite - word
ii  openoffice.org-writer2late 0.5-6 Writer/Calc to LaTeX/XHTML convert

openoffice.org recommends no packages.

Versions of packages openoffice.org-core depends on:
ii  fontconfig 2.5.0-2   generic font configuration library
ii  libc6  2.7-9 GNU C Library: Shared libraries
ii  libcairo2  1.4.14-1  The Cairo 2D vector graphics libra
ii  libcurl3   7.18.0-1  Multi-protocol file transfer libra
ii  libdb4.6   4.6.21-6  Berkeley v4.6 Database Libraries [
ii  libexpat1  1.95.8-4  XML parsing C library - runtime li
ii  libfreetype6   2.3.5-1+b1FreeType 2 font engine, shared lib
ii  libgcc11:4.3.0-1 GCC support library
ii  libglib2.0-0   2.16.1-1  The GLib library of C routines
ii  libgstreamer-plugins-b 0.10.17-3 GStreamer libraries from the "base
ii  libgstreamer0.10-0 0.10.17-2 Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.9-2  The GTK+ graphical user interface
ii  libhyphen0 2.3.1-1   ALTLinux hyphenation library - sha
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libicu38   3.8.1-1   International Components for Unico
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG
ii  libldap-2.4-2  2.4.7-6.1 OpenLDAP libraries
ii  libneon27  0.27.2-1  An HTTP and WebDAV client library
ii  libnspr4-0d4.7.0-2   NetScape Portable Runtime Library
ii  libnss3-1d 3.12.0~beta2-1Network Security Service libraries
ii  libpam0g   0.99.7.1-5Pluggable Authentication Modules l
ii  libpango1.0-0  1.20.0-1  Layout and rendering of internatio
ii  libsm6 2:

Bug#463222: marked as done (ATI driver and OOo cause X segfault)

2008-05-17 Thread Debian Bug Tracking System

Your message dated Sat, 17 May 2008 16:31:47 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#467058: This issue seems fixed in 2:1.4.1~git20080131-3
has caused the Debian Bug report #467058,
regarding ATI driver and OOo cause X segfault
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
467058: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=467058
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: xserver-xorg-video-ati
Version: 1:6.7.197-1
Severity: important

I tried with two different ATI boards, X crashes and display freezes
just clicking on any menu item in the top menu bar of OOo. 
So OOo is unusable in current sid on ATI.


-- 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 Apr 13  2006 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1673916 Jan 18 22:59 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M6 LY

/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 1316 Dec 13 17:58 /etc/X11/xorg.conf

Contents of /etc/X11/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  manual page.
# (Type "man " at the shell prompt.)
#
# This file is automatically updated on  package upgrades *only*
# if it has not been modified since the last upgrade of the 
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh 

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "thinkpad"
Option  "XkbLayout" "us"
Option  "XkbOptions""grp:switch,compose:ralt"
EndSection

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

Section "Device"
Identifier  "ATI Technologies, Inc. Radeon Mobility M6 LY"
Driver  "radeon"
BusID   "PCI:1:0:0"
Option  "MonitorLayout" "LVDS,CRT" 
Option  "BiosHotKeys" "on"
EndSection

Section "Monitor"
Identifier  "Configured Monitor"
Option  "DPMS"
HorizSync   28-49
VertRefresh 43-72
EndSection

Section "Screen"
Identifier  "Default Screen"
Monitor "Configured Monitor"
DefaultDepth24
SubSection "Display"
Modes   "1024x768"
EndSubSection
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 41136 Jan 30 12:11 /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~git20080118-1)
Current Operating System: Linux mithrandir 2.6.23-1-686 #1 SMP Fri Dec 21 
13:57:07 UTC 2007 i686
Build Date: 18 January 2008  09:38:43PM
 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Wed Jan 30 12:10:04 2008
(==) Using config file: "/etc/X11/xorg.conf"
(==) No Layout section.  Using the first Screen section.
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Configured Monitor"
(==) No device specified for screen "Default Screen".
Using the first device section listed.
(**) |   |-->Device "ATI Technologies, Inc. Rade

Bug#468278: marked as done (xserver-xorg-core: XkbGeometry "thinkpad(us)" locks up machine)

2008-05-17 Thread Debian Bug Tracking System

Your message dated Sat, 17 May 2008 16:31:47 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#467058: This issue seems fixed in 2:1.4.1~git20080131-3
has caused the Debian Bug report #467058,
regarding xserver-xorg-core: XkbGeometry "thinkpad(us)" locks up machine
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
467058: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=467058
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: xserver-xorg-core
Version: 2:1.4.1~git20080131-1
Severity: important

Hello,

If I put

Option  "XkbGeometry"   "thinkpad(us)"

instead of

Option  "XkbGeometry"   "pc(pc104)"

in /etc/X11/xorg.conf, and start X (even just by typing "X" at the
console), then I can reliably crash X by either quitting X (for example
by hitting Ctrl-Alt-Backspace) or changing xkb settings (for example by
running "setxkbmap -option").  The bottom half or so of my screen then
shows vertical stripes on black, and my system locks up (but the magic
SysRq key still works).  Some other actions trigger this crash as well,
such as opening some documents in OpenOffice.

Thanks,
Ken

-- 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 Oct  5  2006 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1673980 Jan 31 23:06 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 
943/940GML Express Integrated Graphics Controller (rev 03)

/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 3525 Feb 27 22:01 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# /etc/X11/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 /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/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"/usr/share/fonts/X11/misc"
FontPath"/usr/X11R6/lib/X11/fonts/misc"
FontPath"/usr/share/fonts/X11/cyrillic"
FontPath"/usr/X11R6/lib/X11/fonts/cyrillic"
FontPath"/usr/share/fonts/X11/75dpi/:unscaled"
FontPath"/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath"/usr/share/fonts/X11/100dpi/:unscaled"
FontPath"/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath"/usr/share/fonts/X11/Type1"
FontPath"/usr/X11R6/lib/X11/fonts/Type1"
FontPath"/usr/share/fonts/X11/75dpi"
FontPath"/usr/X11R6/lib/X11/fonts/75dpi"
FontPath"/usr/share/fonts/X11/100dpi"
FontPath"/usr/X11R6/lib/X11/fonts/100dpi"
# path to defoma fonts
FontPath"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load"i2c"
Load"bitmap"
Load"ddc"
Load"dri"
Load"extmod"
Load"freetype"
Load"glx"
Load"int10"
Load"type1"
# Load  "vbe"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "CoreKeyboard"
# Option"XkbRules"  "xorg"
# Option"XkbModel"  "thinkpad"
# Option"XkbLayout" "us"
# Option"XkbOptions"
"altwin:alt_super_win,altwin:super_win"
Option  "XkbKeycodes"   "xfree86+aliases(qwerty)"
Option  "XkbTypes"  "complete"
Option  "XkbSymbols""pc+us"
# +inet(thinkpad)+altwin(alt_super_win)+altwin(super_win)"
Option  "XkbGeometry"   "pc(pc104)"
# thinkpad(us)"
Option  "XkbCompat" "complete"
EndSection

Section "InputDevice"
Identifier  "

Bug#467388: marked as done (xserver-xorg: X is crashing with "Fatal server error: Caught signal 11. Server aborting")

2008-05-17 Thread Debian Bug Tracking System

Your message dated Sat, 17 May 2008 16:31:47 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#467058: This issue seems fixed in 2:1.4.1~git20080131-3
has caused the Debian Bug report #467058,
regarding xserver-xorg: X is crashing with "Fatal server error: Caught signal 
11. Server aborting"
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
467058: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=467058
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: xserver-xorg
Version: 1:7.3+10
Severity: important

Hi!

There is already some time that X is crashing here, with no apparent
motive.
I can reproduce it by opening OpenOffice and clicking on the "File"
menu. It crashs X instantly, then it restarts X and GDM.
If I press CTRL+ALT+F1 then it crashs X hard (I can't get back to GDM
nor can use console; the system keeps functional).

It also crashes with Wine and StarCraft.
And also crashs if I press my laptop power button, to turn off the
computer.

Well, "normal" Xorg.0.log is available at
http://people.debian.org/~naoliv/misc/xorg/before-crash.txt
After the crash, you can see
http://people.debian.org/~naoliv/misc/xorg/after-crash.txt

This is what is show at the end of the log file:

Backtrace:
0: /usr/bin/X(xf86SigHandler+0x7e) [0x80c675e]
1: [0xa7f23420]
2: /usr/bin/X(XkbWriteXKBKeymapForNames+0x582) [0x819f6d2]
3: /usr/bin/X(XkbDDXLoadKeymapByNames+0x1aa) [0x81a9e2a]
4: /usr/bin/X(ProcXkbGetKbdByName+0x301) [0x8181351]
5: /usr/bin/X [0x818939a]
6: /usr/bin/X [0x814d86e]
7: /usr/bin/X(Dispatch+0x2bf) [0x808d1ef]
8: /usr/bin/X(main+0x48b) [0x807470b]
9: /lib/i686/cmov/libc.so.6(__libc_start_main+0xe0) [0xa7cb4450]
10: /usr/bin/X(FontFileCompleteXLFD+0x205) [0x8073a81]

Fatal server error:
Caught signal 11.  Server aborting

And there is also another line that appears on the log:

(WW) intel(0): Existing errors found in hardware state.

My xorg.conf is available at
http://people.debian.org/~naoliv/misc/xorg/xorg.conf

Is something else that I can do to help, please?

Thank you very much!

Best regards,
Nelson

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

Kernel: Linux 2.6.24-naoliv1 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xserver-xorg depends on:
ii  debconf [debconf-2 1.5.19Debian configuration management sy
ii  x11-common 1:7.3+10  X Window System (X.Org) infrastruc
ii  x11-xkb-utils  7.3+1 X11 XKB utilities
ii  xkb-data   1.1~cvs.20080104.1-1  X Keyboard Extension (XKB) configu
ii  xserver-xorg-core  2:1.4.1~git20080131-1 Xorg X server - core server
ii  xserver-xorg-input 1:1.2.2-3 X.Org X server -- keyboard input d
ii  xserver-xorg-input 1:1.2.3-2 X.Org X server -- mouse input driv
ii  xserver-xorg-input 0.14.7~git20070706-2  Synaptics TouchPad driver for X.Or
ii  xserver-xorg-video 2:2.2.1-1 X.Org X server -- Intel i8xx, i9xx
ii  xserver-xorg-video 1:1.3.0-4 X.Org X server -- VESA display dri

Versions of packages xserver-xorg recommends:
ii  dmidecode2.9-1   Dump Desktop Management Interface 
ii  libgl1-mesa-dri  7.0.3~rc2-1 A free implementation of the OpenG
ii  udev 0.114-2 /dev/ and hotplug management daemo

-- debconf information excluded


--- End Message ---
--- Begin Message ---
Version: 2:1.4.1~git20080131-4


Julien BLACHE wrote:
>> It seems to be fixed in 2:1.4.1~git20080131-4. At least it doesn't
>> happen anymore here.
>> 
>
> Yes, it's fixed.
>   

Good news, thanks, closing.

Brice


--- End Message ---


[bts-link] source package x11-apps

2008-05-17 Thread bts-link-upstream
#
# bts-link upstream status pull for source package x11-apps
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user [EMAIL PROTECTED]

# remote status report for #443227
#  * https://bugs.freedesktop.org/show_bug.cgi?id=15903
#  * remote status changed: (?) -> RESOLVED
#  * remote resolution changed: (?) -> WORKSFORME
usertags 443227 + status-RESOLVED resolution-WORKSFORME

thanks


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



Processed: [bts-link] source package xorg-server

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

> #
> # bts-link upstream status pull for source package xorg-server
> # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
> #
> user [EMAIL PROTECTED]
Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]).
> # remote status report for #472313
> #  * https://bugs.freedesktop.org/show_bug.cgi?id=15150
> #  * remote status changed: NEW -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 472313 + fixed-upstream
Bug#472313: gnome-control-center: numeric pad lost after upgrade
There were no tags set.
Bug#463363: xserver-xorg: MouseKeys randomly cuts out
Tags added: fixed-upstream

> usertags 472313 - status-NEW
Bug#472313: gnome-control-center: numeric pad lost after upgrade
Usertags were: status-NEW.
Usertags are now: .
> usertags 472313 + status-RESOLVED resolution-FIXED
Bug#472313: gnome-control-center: numeric pad lost after upgrade
There were no usertags set.
Usertags are now: status-RESOLVED resolution-FIXED.
> # remote status report for #472313
> #  * https://bugs.freedesktop.org/show_bug.cgi?id=15150
> #  * remote status changed: NEW -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 472313 + fixed-upstream
Bug#472313: gnome-control-center: numeric pad lost after upgrade
Tags were: fixed-upstream
Bug#463363: xserver-xorg: MouseKeys randomly cuts out
Tags added: fixed-upstream

> usertags 472313 - status-NEW
Bug#472313: gnome-control-center: numeric pad lost after upgrade
Usertags were: status-RESOLVED resolution-FIXED.
Usertags are now: status-RESOLVED resolution-FIXED.
> usertags 472313 + status-RESOLVED resolution-FIXED
Bug#472313: gnome-control-center: numeric pad lost after upgrade
Usertags were: status-RESOLVED resolution-FIXED.
Usertags are now: status-RESOLVED resolution-FIXED.
> thanks
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]



xorg-server: Changes to 'upstream-unstable'

2008-05-17 Thread Julien Cristau
 Xext/dpms.c|7 +--
 composite/compwindow.c |4 ++--
 config/hal.c   |8 +---
 configure.ac   |2 +-
 exa/exa.c  |2 +-
 exa/exa_render.c   |1 +
 hw/dmx/Makefile.am |1 +
 hw/dmx/dmxinput.c  |   11 +++
 hw/kdrive/ephyr/Makefile.am|1 +
 hw/kdrive/src/kdrive.c |6 --
 hw/xfree86/common/xf86AutoConfig.c |9 +++--
 hw/xfree86/common/xf86Priv.h   |2 +-
 hw/xfree86/modes/xf86Cursors.c |3 ++-
 hw/xprint/Makefile.am  |2 +-
 hw/xprint/ddxInit.c|   11 +++
 xkb/ddxLoad.c  |2 +-
 xkb/xkbUtils.c |   23 +++
 17 files changed, 66 insertions(+), 29 deletions(-)

New commits:
commit ddcca23a81abf5215f906a7ad097f1ed088ed92b
Author: Peter Hutterer <[EMAIL PROTECTED]>
Date:   Thu Feb 7 15:48:04 2008 +1030

xkb: when copying the keymap, make sure the structs default to 0/NULL.

It actually does help if a pointer is NULL rather than pointing to nirvana
when you're trying to free it lateron. Who would have thought?
(cherry picked from commit 7a97ca667405a42d008265c3a870210cc1da97dd)
(cherry picked from commit 0b0a09797302ac2171db5df20fc5110aafc8efbb)

diff --git a/xkb/xkbUtils.c b/xkb/xkbUtils.c
index e90df0d..ce4df4c 100644
--- a/xkb/xkbUtils.c
+++ b/xkb/xkbUtils.c
@@ -1707,9 +1707,8 @@ XkbCopyKeymap(XkbDescPtr src, XkbDescPtr dst, Bool 
sendNotifies)
 else {
 if (dst->geom->sz_shapes) {
 xfree(dst->geom->shapes);
-dst->geom->shapes = NULL;
 }
-
+dst->geom->shapes = NULL;
 dst->geom->num_shapes = 0;
 dst->geom->sz_shapes = 0;
 }
@@ -1758,6 +1757,7 @@ XkbCopyKeymap(XkbDescPtr src, XkbDescPtr dst, Bool 
sendNotifies)
 }
 
 dst->geom->num_sections = 0;
+dst->geom->sections = NULL;
 }
 
 if (src->geom->num_sections) {
@@ -1769,6 +1769,7 @@ XkbCopyKeymap(XkbDescPtr src, XkbDescPtr dst, Bool 
sendNotifies)
 tmp = xalloc(src->geom->num_sections * sizeof(XkbSectionRec));
 if (!tmp)
 return FALSE;
+memset(tmp, 0, src->geom->num_sections * sizeof(XkbSectionRec));
 dst->geom->sections = tmp;
 dst->geom->num_sections = src->geom->num_sections;
 
@@ -1804,6 +1805,10 @@ XkbCopyKeymap(XkbDescPtr src, XkbDescPtr dst, Bool 
sendNotifies)
 return FALSE;
 dsection->doodads = tmp;
 }
+else {
+dsection->doodads = NULL;
+}
+
 for (k = 0,
   sdoodad = ssection->doodads,
   ddoodad = dsection->doodads;
@@ -1831,9 +1836,9 @@ XkbCopyKeymap(XkbDescPtr src, XkbDescPtr dst, Bool 
sendNotifies)
 else {
 if (dst->geom->sz_sections) {
 xfree(dst->geom->sections);
-dst->geom->sections = NULL;
 }
 
+dst->geom->sections = NULL;
 dst->geom->num_sections = 0;
 dst->geom->sz_sections = 0;
 }
@@ -1862,6 +1867,8 @@ XkbCopyKeymap(XkbDescPtr src, XkbDescPtr dst, Bool 
sendNotifies)
 }
 }
 }
+dst->geom->num_doodads = 0;
+dst->geom->doodads = NULL;
 }
 
 if (src->geom->num_doodads) {
@@ -1874,7 +1881,7 @@ XkbCopyKeymap(XkbDescPtr src, XkbDescPtr dst, Bool 
sendNotifies)
   sizeof(XkbDoodadRec));
 if (!tmp)
 return FALSE;
-bzero(tmp, src->geom->num_doodads * sizeof(XkbDoodadRec));
+memset(tmp, 0, src->geom->num_doodads * sizeof(XkbDoodadRec));
 dst->geom->doodads = tmp;
 
 dst->geom->sz_doodads = src->geom->num_doodads;
@@ -1903,9 +1910,9 @@ XkbCopyKeymap(XkbDescPtr src, XkbDescPtr dst, Bool 
sendNotifies)
 else {
 if (dst->geom->sz_doodads) {
 xfree(dst->geom->doodads);
-dst->geom->doodads = NULL;
 }
 
+dst->geom->doodads = NULL;
 dst->geom->num_doodads = 0;
 dst->geom->sz_doodads = 0;
 }
@@ -1933,10 +1940,10 @@ XkbCopyKeymap(XkbDescPtr src, XkbDescPtr dst, Bool 
sendNotifies)
 dst->geom->num_key_aliases = dst->geom->sz_key_aliases;
 }
 else {
-if (dst->geom->sz_key_aliases && dst->geom->key_aliases) {
+if (dst->geom->key_aliases) {
 xfree(dst->geom->key_aliases);
-dst->geom->key_aliases = NULL;
 }
+dst->geom->key_aliases = NULL;
 dst->geom->num_key_aliases = 0;
 dst->

xorg-server: Changes to 'debian-unstable'

2008-05-17 Thread Julien Cristau
 ChangeLog   |  147 
 aclocal.m4  |   20 ++-
 composite/compwindow.c  |4 
 config/hal.c|8 -
 configure   |  104 ++--
 configure.ac|2 
 debian/changelog|   13 +-
 debian/control  |   98 
 debian/patches/03_auto_load_driver.diff |   26 ++--
 debian/patches/04_auto_load_driver_no_conf.diff |6 
 debian/patches/40_default_dpi_96.patch  |   19 ---
 debian/patches/series   |1 
 debian/rules|2 
 hw/dmx/Makefile.am  |1 
 hw/dmx/Makefile.in  |1 
 hw/dmx/dmxinput.c   |   11 +
 hw/kdrive/ephyr/Makefile.am |1 
 hw/kdrive/ephyr/Makefile.in |1 
 hw/kdrive/src/kdrive.c  |6 
 hw/xfree86/common/xf86AutoConfig.c  |9 +
 hw/xfree86/common/xf86Priv.h|2 
 hw/xfree86/modes/xf86Cursors.c  |3 
 include/do-not-use-config.h.in  |3 
 ltmain.sh   |2 
 xkb/ddxLoad.c   |2 
 25 files changed, 366 insertions(+), 126 deletions(-)

New commits:
commit 8534900d8420b1f3321236f83b23a83da10664ff
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sat May 17 17:50:31 2008 +0200

Document the fact that xprint is now enabled in debian/changelog

diff --git a/debian/changelog b/debian/changelog
index 1762299..b95923a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -20,6 +20,7 @@ xorg-server (2:1.4.1~git20080517-1) UNRELEASED; urgency=low
 2a3d1421e0cc18822ae8f478fcc272e16a9e9340, with removal of
 CONFIG_LIB from configure.ac shifted to 94_xprint_XSERVER_LIBS.
 Closes: #472180.
+  * Enable the xprint DDX, and build the xprint and xprint-common packages.
 
  -- Drew Parsons <[EMAIL PROTECTED]>  Sat, 10 May 2008 03:18:04 +1000
 

commit 732faeda97c84bfa2847f2da5436ff6d72a15b69
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Sat May 17 17:00:45 2008 +0200

Re-enable the dmx DDX, and build the xdmx and xdmx-tools packages

The build is now fixed upstream.

diff --git a/debian/changelog b/debian/changelog
index 497058b..1762299 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,8 @@ xorg-server (2:1.4.1~git20080517-1) UNRELEASED; urgency=low
   * Drop the XS- prefix from Vcs-* control fields.
   * Add x11-common to the Depends field of xnest, xvfb and xserver-xephyr (its
 init script sets up the /tmp/.X11-unix directory).
+  * Re-enable the dmx DDX, and build the xdmx and xdmx-tools packages (the
+build is now fixed upstream); closes: #449254.
 
   [ Drew Parsons ]
   * Patch 95_xprint_disable_dbus disables dbus in Xprint by providing
diff --git a/debian/control b/debian/control
index a327329..19c46cb 100644
--- a/debian/control
+++ b/debian/control
@@ -88,40 +88,40 @@ Description: Xorg X server - development files
  .
  This package is built from the X.org xserver module.
 
-#Package: xdmx
-#Architecture: any
-#Depends: ${shlibs:Depends}, ${misc:Depends}
-#Description: distributed multihead X server
-# Xdmx is a proxy X server that uses one or more other X servers as its
-# display device(s). It provides multi-head X functionality for displays that
-# might be located on different machines. Xdmx functions as a front-end X 
server
-# that acts as a proxy to a set of back-end X servers. All of the visible
-# rendering is passed to the back-end X servers. Clients connect to the Xdmx
-# front-end, and everything appears as it would in a regular multi-head
-# configuration. If Xinerama is enabled (e.g., with +xinerama on the command
-# line), the clients see a single large screen.
-# .
-# More information about X.Org can be found at:
-# http://www.X.org>
-# http://xorg.freedesktop.org>
-# http://lists.freedesktop.org/mailman/listinfo/xorg>
-# .
-# This package is built from the X.org xserver module.
-#
-#Package: xdmx-tools
-#Architecture: any
-#Depends: xdmx, ${shlibs:Depends}, ${misc:Depends}
-#Replaces: xdmx (<= 2:1.1.1-10)
-#Description: Distributed Multihead X tools
-# This package provides a collection of tools used for administration of
-# the Xdmx server; see the xdmx package for more information.
-# .
-# More information about X.Org can be found at:
-# http://www.X.org>
-# http://xorg.freedesktop.org>
-# http://lists.freedesktop.org/mailman/listinfo/xorg>
-# .
-# This package is built from the X.org xserver module.
+Package: xdmx
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: distributed multihead X server
+ Xdmx is a proxy X serv

Processed: [bts-link] source package xserver-xorg-video-intel

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

> #
> # bts-link upstream status pull for source package xserver-xorg-video-intel
> # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
> #
> user [EMAIL PROTECTED]
Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]).
> # remote status report for #467319
> #  * https://bugs.freedesktop.org/show_bug.cgi?id=15057
> #  * remote status changed: NEW -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 467319 + fixed-upstream
Bug#467319: xserver-xorg-video-intel: FatalError [drm:i915_wait_irq] *ERROR* 
i915_wait_irq: EBUSY -- rec: 46388219 emitted: 46388226
There were no tags set.
Tags added: fixed-upstream

> usertags 467319 - status-NEW
Bug#467319: xserver-xorg-video-intel: FatalError [drm:i915_wait_irq] *ERROR* 
i915_wait_irq: EBUSY -- rec: 46388219 emitted: 46388226
Usertags were: status-NEW.
Usertags are now: .
> usertags 467319 + status-RESOLVED resolution-FIXED
Bug#467319: xserver-xorg-video-intel: FatalError [drm:i915_wait_irq] *ERROR* 
i915_wait_irq: EBUSY -- rec: 46388219 emitted: 46388226
There were no usertags set.
Usertags are now: status-RESOLVED resolution-FIXED.
> thanks
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]



[bts-link] source package xserver-xorg-video-intel

2008-05-17 Thread bts-link-upstream
#
# bts-link upstream status pull for source package xserver-xorg-video-intel
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user [EMAIL PROTECTED]

# remote status report for #467319
#  * https://bugs.freedesktop.org/show_bug.cgi?id=15057
#  * remote status changed: NEW -> RESOLVED
#  * remote resolution changed: (?) -> FIXED
#  * closed upstream
tags 467319 + fixed-upstream
usertags 467319 - status-NEW
usertags 467319 + status-RESOLVED resolution-FIXED

thanks


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



[bts-link] source package xorg-server

2008-05-17 Thread bts-link-upstream
#
# bts-link upstream status pull for source package xorg-server
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user [EMAIL PROTECTED]

# remote status report for #472313
#  * https://bugs.freedesktop.org/show_bug.cgi?id=15150
#  * remote status changed: NEW -> RESOLVED
#  * remote resolution changed: (?) -> FIXED
#  * closed upstream
tags 472313 + fixed-upstream
usertags 472313 - status-NEW
usertags 472313 + status-RESOLVED resolution-FIXED

# remote status report for #472313
#  * https://bugs.freedesktop.org/show_bug.cgi?id=15150
#  * remote status changed: NEW -> RESOLVED
#  * remote resolution changed: (?) -> FIXED
#  * closed upstream
tags 472313 + fixed-upstream
usertags 472313 - status-NEW
usertags 472313 + status-RESOLVED resolution-FIXED

thanks


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



xprint: Changes to 'upstream-unstable'

2008-05-17 Thread Drew Parsons
 Xext/Makefile.am |2 --
 Xext/modinit.h   |8 
 2 files changed, 8 insertions(+), 2 deletions(-)

New commits:
commit c7164e9c393a7e333063ac5af89b130e179c072e
Author: Drew Parsons <[EMAIL PROTECTED]>
Date:   Sun May 18 01:34:40 2008 +1000

Create dummy modinit.h for Xext.

modinit.h had been part of hw/xfree86/dixmods/extmod, enabling
initialisation of extension modules.  Xprint does not implement
extension modules, so the header file is provided as a dummy file
instead, now that the xprint ddx is separated from the xfree86 ddx..

diff --git a/Xext/Makefile.am b/Xext/Makefile.am
index b03feda..2d5f2e9 100644
--- a/Xext/Makefile.am
+++ b/Xext/Makefile.am
@@ -10,8 +10,6 @@ else
 noinst_LTLIBRARIES = libXext.la
 endif
 
-INCLUDES = -I$(top_srcdir)/hw/xfree86/dixmods/extmod
-
 AM_CFLAGS = $(DIX_CFLAGS)
 
 if XORG
diff --git a/Xext/modinit.h b/Xext/modinit.h
new file mode 100644
index 000..87c9d28
--- /dev/null
+++ b/Xext/modinit.h
@@ -0,0 +1,8 @@
+/* Initialisation of Extension Modules is enabled via modinit.
+
+  This was implemented in the Xorg xserver (xfree86 ddx), 
+  see hw/xfree86/dixmods/extmod, but is not implemented for Xprt (xprint ddx)
+
+  This header file, referenced in the Xext extension files, is therefore given
+  as a dummy header file for xprint.
+*/


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



xprint: Changes to 'debian-unstable'

2008-05-17 Thread Drew Parsons
 Xext/Makefile.am|2 
 Xext/modinit.h  |8 
 debian/changelog|   12 
 debian/patches/13_debian_add_xkbpath_env_variable.diff  |   27 --
 debian/patches/21_glx_align_fixes.patch |   57 
 debian/patches/46_reduce_wakeups_from_smart_scheduler.patch |  157 
 debian/patches/93_xprint_fonts_fix  |   12 
 debian/patches/series   |4 
 debian/rules|3 
 9 files changed, 20 insertions(+), 262 deletions(-)

New commits:
commit 1f767c71ec756bbcc0497a2a6850705766830643
Author: Drew Parsons <[EMAIL PROTECTED]>
Date:   Sun May 18 01:39:15 2008 +1000

Disable GLX support temporarily

until Debian packages mesa git master.
Needed to define __GLcoreModule, for instance.

diff --git a/debian/rules b/debian/rules
index 7e7572f..126757e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -62,7 +62,8 @@ confflags += --disable-static \
 --with-os-name="$(shell uname)" \
 --with-os-vendor="$(VENDOR) ($(SOURCE_NAME) $(SOURCE_VERSION))" \
 --with-int10=x86emu \
---disable-type1
+--disable-type1 \
+--disable-glx
 
 build: patch build-stamp
 build-stamp: 

commit eb59ea86ed24ffac6b7494ce44c6ba84bbf3854c
Author: Drew Parsons <[EMAIL PROTECTED]>
Date:   Sat May 17 23:24:58 2008 +1000

Remove deprecrated debian patches

21,46,93 have been incorporated upstream,
13 is not relevant to Xprint.

diff --git a/debian/changelog b/debian/changelog
index c472aec..639a827 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,12 +9,20 @@ xprint (2:1.5~git20080513-1) UNRELEASED; urgency=low
 - disables dbus from xprint. dbus had been causing Xprt's
   Dispatch() loop to spin at 95% cpu. Closes: #472180.
 - configured to build with libs, allowing patch
-  94_xprint_XSERVER_LIBS to be removed. 
+  94_xprint_XSERVER_LIBS to be removed.
+- incorporates patches: 
+  21_glx_align_fixes.patch
+  46_reduce_wakeups_from_smart_scheduler.patch
+  93_xprint_fonts_fix
+  94_xprint_XSERVER_LIBS
+- removes other ddxs, deprecating many others of the debian patches.
   * Adjust debian/control and rules to only build xprint.
+  * Drop 13_debian_add_xkbpath_env_variable.diff (xkb is not relevant
+to Xprint). 
   * Oh yes, like the Night of the Zombies, xprint is Back! 
 Closes: #448970.
 
- -- Drew Parsons <[EMAIL PROTECTED]>  Wed, 14 May 2008 01:28:56 +1000
+ -- Drew Parsons <[EMAIL PROTECTED]>  Sat, 17 May 2008 23:14:11 +1000
 
 xorg-server (2:1.4.1~git20080507-1) unstable; urgency=low
 
diff --git a/debian/patches/13_debian_add_xkbpath_env_variable.diff 
b/debian/patches/13_debian_add_xkbpath_env_variable.diff
deleted file mode 100644
index 0692f46..000
--- a/debian/patches/13_debian_add_xkbpath_env_variable.diff
+++ /dev/null
@@ -1,27 +0,0 @@
 xorg-server.orig/xkb/xkbInit.c
-+++ xorg-server/xkb/xkbInit.c
-@@ -835,6 +835,14 @@
- extern unsigned char  XkbDfltAccessXOptions;
- 
- int
-+xkbInitGlobals()
-+{
-+char * xkbpath= getenv("XKBPATH");
-+if (xkbpath!=NULL)
-+  XkbBaseDirectory= xkbpath;
-+}
-+
-+int
- XkbProcessArguments(int argc,char *argv[],int i)
- {
- if (strcmp(argv[i],"-kb")==0) {
 xorg-server.orig/os/utils.c
-+++ xorg-server/os/utils.c
-@@ -684,6 +684,7 @@
-  */
- void InitGlobals(void)
- {
-+xkbInitGlobals();
- ddxInitGlobals();
- }
- 
diff --git a/debian/patches/21_glx_align_fixes.patch 
b/debian/patches/21_glx_align_fixes.patch
deleted file mode 100644
index e597094..000
--- a/debian/patches/21_glx_align_fixes.patch
+++ /dev/null
@@ -1,57 +0,0 @@
 xorg-server.orig/GL/glx/Makefile.am
-+++ xorg-server/GL/glx/Makefile.am
-@@ -14,7 +14,8 @@
-   [EMAIL PROTECTED]@/src/mesa/glapi \
-   [EMAIL PROTECTED]@/src/mesa/main \
-   -DXFree86Server \
--  @GLX_DEFINES@
-+  @GLX_DEFINES@ \
-+  @GLX_ARCH_DEFINES@
- 
- # none yet
- #sdk_HEADERS =
 xorg-server.orig/configure.ac
-+++ xorg-server/configure.ac
-@@ -287,6 +287,7 @@
-   case $host_os in
-   *netbsd*)   AC_DEFINE(USE_ALPHA_PIO, 1, [NetBSD PIO alpha 
IO]) ;;
-   esac
-+  GLX_ARCH_DEFINES="-D__GLX_ALIGN64 -mieee"
-   ;;
-   arm*)
-   ARM_VIDEO=yes
-@@ -317,6 +318,7 @@
-   xorg_loader_sparcmuldiv="yes"
-   SPARC64_VIDEO=yes
-   BSD_ARCH_SOURCES="sparc64_video.c ioperm_noop.c"
-+  GLX_ARCH_DEFINES="-D__GLX_ALIGN64"
-   ;;
-   x86_64*|amd64*)
-   use_x86_asm="yes"
-@@ -332,8 +334,16 @@
-   SYS_LIBS=-lamd64
-   ;;
-   esac
-+  GLX_ARCH_DEFINES="-D__GLX_ALIGN64"
-+  ;;
-+  ia64*)
-+  GLX_ARCH_DEFINES="-D__GLX_ALIGN64"
-+  

Bug#450851: maybe another effect of the bug

2008-05-17 Thread Mathias L. Baumann

Hi there,

i was affected by this bug and worked around it by disabling DGA in the  
games i play.
However, i recently switched to xinerama, and the following problem showed  
up:
when turning the mouse to fast it seems to move into the other screen.  
this results in a drastical mouselag in the game (i tested 3 games, 2 sdl  
based, DGA was off in all[enabling DGA enabled also the  
mouse-stays-in-the-corner-problem]). i downgraded X to 1.1.1-21etch4 and  
the problem was gone (together with the DGA problem). it did not matter if  
dga was enabled or not then.


--Ano



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



Bug#472313: marked as done (gnome-control-center: numeric pad lost after upgrade)

2008-05-17 Thread Debian Bug Tracking System

Your message dated Sat, 17 May 2008 19:43:20 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#463363: additional information
has caused the Debian Bug report #463363,
regarding gnome-control-center: numeric pad lost after upgrade
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
463363: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=463363
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: gnome-control-center
Version: 1:2.20.3-2
Severity: important

Hi,

After updrade from 2.20.3-2 to 2.33.0-2, I've lost the numeric pad.
I'm not 100% sure it is gnome-control-center itself which is reponsible of
that: reverting it and all its dependancies (libgnomekbd and Co) fixes the
problem.
The keys are normally seen by xev.

Regards

Jean-Luc

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

Kernel: Linux 2.6.25-rc6-git6-k8-1 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnome-control-center depends on:
ii  capplets-data 1:2.20.3-2 configuration applets for GNOME 2 
ii  desktop-file-util 0.15-1 Utilities for .desktop files
ii  gnome-desktop-dat 2.22.0-1   Common files for GNOME 2 desktop a
ii  gnome-icon-theme  2.22.0-1   GNOME Desktop icon theme
ii  gnome-menus   2.22.0-1   an implementation of the freedeskt
ii  libart-2.0-2  2.3.20-1   Library of functions for 2D graphi
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libbonobo2-0  2.22.0-1   Bonobo CORBA interfaces library
ii  libbonoboui2-02.22.0-1   The Bonobo UI library
ii  libc6 2.7-9  GNU C Library: Shared libraries
ii  libcairo2 1.4.14-1   The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.1.20-1   simple interprocess messaging syst
ii  libdbus-glib-1-2  0.74-1 simple interprocess messaging syst
ii  libebook1.2-9 1.12.3-1   Client library for evolution addre
ii  libesd0   0.2.36-3   Enlightened Sound Daemon - Shared 
ii  libfontconfig12.5.0-2generic font configuration library
ii  libfreetype6  2.3.5-1+b1 FreeType 2 font engine, shared lib
ii  libgconf2-4   2.22.0-1   GNOME configuration database syste
ii  libglade2-0   1:2.6.2-1  library to load .glade files at ru
ii  libglib2.0-0  2.16.1-2   The GLib library of C routines
ii  libgnome-desktop- 2.22.0-1   Utility library for loading .deskt
ii  libgnome-menu22.22.0-1   an implementation of the freedeskt
ii  libgnome-window-s 1:2.20.3-2 Utility library for getting window
ii  libgnome2-0   2.20.1.1-1 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0 2.20.1.1-1 A powerful object-oriented display
ii  libgnomekbd1  2.20.0-3   GNOME library to manage keyboard c
ii  libgnomekbdui12.20.0-3   User interface library for libgnom
ii  libgnomeui-0  2.20.1.1-1 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-01:2.22.0-2 GNOME Virtual File System (runtime
ii  libgstreamer-plug 0.10.18-2  GStreamer libraries from the "base
ii  libgstreamer0.10- 0.10.18-1  Core GStreamer libraries and eleme
ii  libgtk2.0-0   2.12.9-2   The GTK+ graphical user interface 
ii  libhal1   0.5.10+git20080301-1   Hardware Abstraction Layer - share
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libmetacity0  1:2.22.0-1 library of lightweight GTK2 based 
ii  libnautilus-exten 2.20.0-3   libraries for nautilus components 
ii  liborbit2 1:2.14.12-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpanel-applet2- 2.22.0-1   library for GNOME Panel applets
ii  libpango1.0-0 1.20.0-1   Layout and rendering of internatio
ii  libpng12-01.2.15~beta5-3 PNG library - runtime
ii  libpopt0  1.10-3 lib for parsing cmdline parameters
ii  libslab0  0.9.8.svn.20070430-1.1 beautification app library file
ii  libsm62:1.0.3-1+b1   X11 Session Management library
ii  libstartup-notifi 0.9-1  library for program launch feedbac
ii  libx

Processed: reassign 467319 to libgl1-mesa-dri

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

> # Automatically generated email from bts, devscripts version 2.10.27
> reassign 467319 libgl1-mesa-dri
Bug#467319: xserver-xorg-video-intel: FatalError [drm:i915_wait_irq] *ERROR* 
i915_wait_irq: EBUSY -- rec: 46388219 emitted: 46388226
Bug reassigned from package `xserver-xorg-video-intel' to `libgl1-mesa-dri'.

>
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]



reassign 467319 to libgl1-mesa-dri

2008-05-17 Thread Brice Goglin
# Automatically generated email from bts, devscripts version 2.10.27
reassign 467319 libgl1-mesa-dri 


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



Bug#480635: Okay, I have a version that definitely is problem-free

2008-05-17 Thread Daniel Dickinson
xserver-xorg-video-ati 1:6.6.2-2 is definitely problem-free.  I ran a
process for about 10 hours that would let glxgears run for five
minutes, killed it, and then restarted glxgears.  If there was going to
be a problem it would have shown up there or when my screensaver kicked
in.  

If I experience a hang with it now, I'm pretty much convinced it would
be a separate issue.  In any event, that info should help you, I hope.

-- 
And that's my crabbing done for the day.  Got it out of the way early, 
now I have the rest of the afternoon to sniff fragrant tea-roses or 
strangle cute bunnies or something.   -- Michael Devore
GnuPG Key Fingerprint 86 F5 81 A5 D4 2E 1F 1C  http://gnupg.org
No more sea shells:  Daniel's Webloghttp://cshore.wordpress.com


signature.asc
Description: PGP signature


Bug#481705: compiz-kde: kde-window-decorator crashes when using mouse wheel on window decoration crystal

2008-05-17 Thread noother
Package: compiz-kde
Version: 0.6.3~git20080115.0ea58487-1
Severity: normal

kde-window-decorator crashes when I use the mouse wheel on the window 
decoration "Crystal" installed by the package 
kwin-style-crystal.
The KDE Crash Handler Backtrace gives the following:

(no debugging symbols found)
(..)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread 0x7f674fc6e6f0 (LWP 23056)]
(no debugging symbols found)
(..)
(no debugging symbols found)
[KCrash handler]
#5  0x7f674e1a2165 in raise () from /lib/libc.so.6
#6  0x7f674e1a3610 in abort () from /lib/libc.so.6
#7  0x7f674e1daedb in ?? () from /lib/libc.so.6
#8  0x7f674e1dffad in ?? () from /lib/libc.so.6
#9  0x7f674e1e1cb6 in free () from /lib/libc.so.6
#10 0x7f674dda74d9 in XFree () from /usr/lib/libX11.so.6
#11 0x7f67499da921 in CrystalClient::ClientWindows ()
   from /usr/lib/kde3/kwin3_crystal.so
#12 0x7f67499dad15 in CrystalClient::mouseWheelEvent ()
   from /usr/lib/kde3/kwin3_crystal.so
#13 0x7f67499de58f in CrystalClient::eventFilter ()
   from /usr/lib/kde3/kwin3_crystal.so
#14 0x7f674d22e972 in QObject::activate_filters ()
   from /usr/lib/libqt-mt.so.3
#15 0x7f674d22e9c7 in QObject::event () from /usr/lib/libqt-mt.so.3
#16 0x7f674d25fdf3 in QWidget::event () from /usr/lib/libqt-mt.so.3
#17 0x7f674d1d9953 in QApplication::internalNotify ()
   from /usr/lib/libqt-mt.so.3
#18 0x7f674d1dacd6 in QApplication::notify () from /usr/lib/libqt-mt.so.3
#19 0x7f674f175ead in KApplication::notify ()
   from /usr/lib/libkdecore.so.4
#20 0x7f674d1768e1 in QETWidget::translateWheelEvent ()
   from /usr/lib/libqt-mt.so.3
#21 0x7f674d18201f in QETWidget::translateMouseEvent ()
   from /usr/lib/libqt-mt.so.3
#22 0x7f674d180b63 in QApplication::x11ProcessEvent ()
   from /usr/lib/libqt-mt.so.3
#23 0x0040eb17 in ?? ()
#24 0x7f674d171a21 in ?? () from /usr/lib/libqt-mt.so.3
#25 0x7f674d180190 in QApplication::x11ProcessEvent ()
   from /usr/lib/libqt-mt.so.3
#26 0x7f674d18fa59 in QEventLoop::processEvents ()
   from /usr/lib/libqt-mt.so.3
#27 0x7f674d1ee001 in QEventLoop::enterLoop () from /usr/lib/libqt-mt.so.3
#28 0x7f674d1edeb2 in QEventLoop::exec () from /usr/lib/libqt-mt.so.3
#29 0x0040cc31 in ?? ()
#30 0x7f674e18f1c4 in __libc_start_main () from /lib/libc.so.6
#31 0x0040bb59 in ?? ()
#32 0x7fff57da08e8 in ?? ()
#33 0x in ?? ()



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

Kernel: Linux 2.6.25-2-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 compiz-kde depends on:
ii  compiz-core 0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana
ii  kdelibs4c2a 4:3.5.9.dfsg.1-4 core libraries and binaries for al
ii  kwin4:3.5.9.dfsg.1-2+b1  the KDE window manager
ii  libc6   2.7-11   GNU C Library: Shared libraries
ii  libdbus-1-3 1.2.1-2  simple interprocess messaging syst
ii  libdbus-qt- 0.62.git.20060814-2  simple interprocess messaging syst
ii  libdecorati 0.6.3~git20080115.0ea58487-1 Compiz window decoration library
ii  libgcc1 1:4.3.0-4GCC support library
ii  libqt3-mt   3:3.3.8b-5   Qt GUI Library (Threaded runtime v
ii  libstdc++6  4.3.0-4  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcomposi 1:0.4.0-1X11 Composite extension library
ii  libxdamage1 1:1.1.1-3X11 damaged region extension libra
ii  libxext62:1.0.4-1X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra

compiz-kde recommends no packages.

-- no debconf information



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