Bug#433161: compiz: messes up xfce workspaces
Michael Gilbert wrote: > Package: compiz > Version: 0.2.2-1 > Severity: normal > > when compiz is started on a system running xfce, the number of > workspaces will forced to one. even after compiz is stopped, there is > still only one workspace. it should be expected that compiz would not > alter xfce's number of workspaces. > Does compiz 0.5 help? It's in testing and unstable. Brice -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#433144: xserver-xorg: VESA driver fails to load with: ILLEGAL EXTENDED X86 OPCODE!
reassign 433144 xserver-xorg-core forcermerge 404885 433144 thank you ian wrote: > Package: xserver-xorg > Version: 1:7.2-5 > Severity: important > > Xorg was working with the VESA driver @ 800x600 res with 24 bit colour. After > an upgrade the server stopped loading. The VGA driver still works. > Looks similar to #404885. I will forward this bug upstream at bugzilla.freedesktop.org next week. Brice -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: Re: Bug#433167: compiz: fullscreen opengl games end up showing only a black screen
Processing commands for [EMAIL PROTECTED]: > reassign 433167 libgl1-mesa-dri Bug#433167: compiz: fullscreen opengl games end up showing only a black screen Bug reassigned from package `compiz' to `libgl1-mesa-dri'. > forcemerge 411141 433167 Bug#411141: need Direct Rendering to Redirected windows Bug#433167: compiz: fullscreen opengl games end up showing only a black screen Forcibly Merged 411141 433167. > thank you 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#433167: compiz: fullscreen opengl games end up showing only a black screen
reassign 433167 libgl1-mesa-dri forcemerge 411141 433167 thank you Michael Gilbert wrote: > Package: compiz > Version: 0.2.2-1 > Severity: important > > when compiz is running, fullscreen opengl games become unplayable. > instead of the game rendering, there is just a completely black screen. > when compiz is not running, the game works just fine. > > to test this out, start up openarena and set it on windowed mode (you > can verify that both fullscreen and windowed mode work fine at this > point without compiz running). then start up compiz. the game works > fine here in windowed mode. now go to the menu and switch to > fullscreen. the screen will go all black, and the game and compiz will > both need to be killed to get the system working again. > That's probably expected. See #411141. About #415227, does changing /apps/compiz/general/screen0/options/unredirect_fullscreen_windows in gconf help? Brice -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: tagging 433131
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.6 > tags 433131 + pending Bug#433131: xserver-xorg-core: patch to fix a hang in openoffice when opening menus Tags were: fixed-upstream 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]
xorg-server: Changes to 'debian-unstable'
debian/changelog|7 debian/patches/51_xkb-and-loathing.diff | 46 debian/patches/series |1 3 files changed, 54 insertions(+) New commits: commit 858ca265f9b3a95409d1c4c54b7af8d7b6c4e1e7 Author: Brice Goglin <[EMAIL PROTECTED]> Date: Sun Jul 15 09:43:44 2007 +0200 Add 51_xkb-and-loathing.diff to fix a hang in OpenOffice.org when opening menus diff --git a/debian/changelog b/debian/changelog index 8426a7e..590e7c7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +xorg-server (2:1.3.0.0.dfsg-12) UNRELEASED; urgency=low + + * Add 51_xkb-and-loathing.diff to fix a hang in OpenOffice.org +when opening menus, closes: #433131. + + -- Brice Goglin <[EMAIL PROTECTED]> Sun, 15 Jul 2007 09:37:20 +0200 + xorg-server (2:1.3.0.0.dfsg-11) unstable; urgency=low * Yet another alpha build fix: also remove the asm/pci.h include from diff --git a/debian/patches/51_xkb-and-loathing.diff b/debian/patches/51_xkb-and-loathing.diff new file mode 100644 index 000..704062a --- /dev/null +++ b/debian/patches/51_xkb-and-loathing.diff @@ -0,0 +1,46 @@ +* Mon Apr 30 2007 Adam Jackson <[EMAIL PROTECTED]> 1.3.0.0-3 +- xserver-1.3.0-xkb-and-loathing.patch: Ignore (not just block) SIGALRM + around calls to Popen()/Pclose(). Fixes a hang in openoffice when + opening menus. + +http://cvs.fedora.redhat.com/viewcvs/devel/xorg-x11-server/xserver-1.3.0-xkb-and-loathing.patch?view=markup +https://bugs.freedesktop.org/show_bug.cgi?id=10525 + +Fixes #433131 + +--- xorg-server-1.3.0.0/os/utils.c.jx 2007-04-25 13:28:05.0 -0400 xorg-server-1.3.0.0/os/utils.c 2007-04-30 14:33:04.0 -0400 +@@ -1726,6 +1726,8 @@ + int pid; + } *pidlist; + ++static sighandler_t old_alarm = NULL; /* XXX horrible awful hack */ ++ + pointer + Popen(char *command, char *type) + { +@@ -1747,11 +1749,15 @@ + return NULL; + } + ++/* Ignore the smart scheduler while this is going on */ ++old_alarm = signal(SIGALRM, SIG_IGN); ++ + switch (pid = fork()) { + case -1: /* error */ + close(pdes[0]); + close(pdes[1]); + xfree(cur); ++ signal(SIGALRM, old_alarm); + return NULL; + case 0: /* child */ + if (setgid(getgid()) == -1) +@@ -1927,6 +1933,8 @@ + /* allow EINTR again */ + OsReleaseSignals (); + ++signal(SIGALRM, old_alarm); ++ + return pid == -1 ? -1 : pstat; + } + diff --git a/debian/patches/series b/debian/patches/series index 2a475cb..c9aa121 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -28,6 +28,7 @@ 48_disable_type1.diff 49_map_keyboard_driver_to_kbd.diff -p0 50_alpha_no_include_asm_pci.h.diff +51_xkb-and-loathing.diff 91_ttf2pt1 91_ttf2pt1_updates 92_xprint-security-holes-fix.patch -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#399162: marked as done (xorg: undefined colors)
Your message dated Sun, 15 Jul 2007 10:06:51 +0200 with message-id <[EMAIL PROTECTED]> and subject line ping timeout, closing has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xorg Version: 7.1.0-5 Severity: important I've recently upgraded from xorg 7.0.22 to 7.1.0-5 for etch and shortly afterward, started receiving errors related to colors. Examples include, but are most likely not limited to: xterm-- Warning: Color name "black" is not defined Warning: Color name "gray60" is not defined Warning: Cannot convert arguments to displayList function "foreground" Warning: Cannot convert string "foreground gray90;lines 1,-1,-1,-1,-1,1;foreground gray60;lines -1,0,0,0,0,-1" to type XawDisplayList ((If I launch an xterm with the dropdown menu, it _will_ launch but is unusable and my cursor disappears on mouseover.)) mrxvt-- mrxvt: can't determine colour: Black mrxvt: Could not alloc foreground color of profile 0 emacs21-- Undefined color: "black" (('emacs -nw' works fine--it's just the gui that doesn't work.)) Conky-- Conky: can't parse X color 'grey' ((It doesn't even display anymore.)) I tried downgrading to 7.0.22 for xorg and x11-common without altered results. Thanks Michael -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing'), (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.17-2-686 Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) (ignored: LC_ALL set to en_US) --- End Message --- --- Begin Message --- Closing this bug since I didn't get any reply from the submitter (or repliers) after my ping about a month ago. If anybody ever reproduces this problem, feel free to reopen. Brice --- End Message ---
Bug#392470: marked as done (xfree86: dexconf and xfs should use x-ttcidfont-conf font paths by default)
Your message dated Sun, 15 Jul 2007 10:06:51 +0200 with message-id <[EMAIL PROTECTED]> and subject line ping timeout, closing has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Subject: dexconf and xfs should include the fontpaths by x-ttcidfont-conf Package: xfree86 Severity: wishlist Dexconf should add to XF86Config(-4) the standard fontpaths for TrueType (for X-servers version >=4) and CID fonts (for all X-servers). /etc/X11/fs/config should also include these paths. Two patches to fix this are attached. Anton Zinoviev --- dexconf.old 2003-06-07 23:35:34.0 +0300 +++ dexconf.new 2003-06-07 23:39:10.0 +0300 @@ -199,6 +199,7 @@ FontPath"unix/:7100"# local font server # if the local font server has problems, we can fall back on these FontPath"/usr/lib/X11/fonts/Type1" + FontPath"/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID" FontPath"/usr/lib/X11/fonts/CID" FontPath"/usr/lib/X11/fonts/Speedo" FontPath"/usr/lib/X11/fonts/misc" @@ -218,6 +219,8 @@ FontPath"unix/:7100"# local font server # if the local font server has problems, we can fall back on these FontPath"/usr/lib/X11/fonts/Type1" + FontPath"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" + FontPath"/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID" FontPath"/usr/lib/X11/fonts/CID" FontPath"/usr/lib/X11/fonts/Speedo" FontPath"/usr/lib/X11/fonts/misc" --- config.old 2003-02-26 02:51:07.0 +0200 +++ config.new 2003-06-08 14:47:18.0 +0300 @@ -12,7 +12,7 @@ # turn off TCP port listening (Unix domain connections are still permitted) no-listen = tcp # paths to search for fonts -catalogue = /usr/lib/X11/fonts/Type1/,/usr/lib/X11/fonts/CID/,/usr/lib/X11/fonts/Speedo/,/usr/lib/X11/fonts/misc/,/usr/lib/X11/fonts/cyrillic/,/usr/lib/X11/fonts/100dpi/,/usr/lib/X11/fonts/75dpi/ +catalogue = /usr/lib/X11/fonts/Type1/,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID,/usr/lib/X11/fonts/CID/,/usr/lib/X11/fonts/Speedo/,/usr/lib/X11/fonts/misc/,/usr/lib/X11/fonts/cyrillic/,/usr/lib/X11/fonts/100dpi/,/usr/lib/X11/fonts/75dpi/ # in decipoints default-point-size = 120 # x1,y1,x2,y2,... --- End Message --- --- Begin Message --- Closing this bug since I didn't get any reply from the submitter (or repliers) after my ping about a month ago. If anybody ever reproduces this problem, feel free to reopen. Brice --- End Message ---
Bug#368016: marked as done (Warning: Color name "..." is not defined)
Your message dated Sun, 15 Jul 2007 10:06:51 +0200 with message-id <[EMAIL PROTECTED]> and subject line ping timeout, closing has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: x11-common Version: 1:7.0.18 Severity: normal When starting for example xterm of gv, I get error messages like: Warning: Color name "black" is not defined Warning: Color name "AntiqueWhite3" is not defined Warning: Color name "AntiqueWhite2" is not defined Warning: Color name "AntiqueWhite4" is not defined Warning: Color name "gray65" is not defined Warning: Color name "gray90" is not defined Warning: Color name "gray40" is not defined Warning: Color name "gray78" is not defined Warning: Color name "gray85" is not defined Warning: Color name "red" is not defined Warning: Color name "White" is not defined Warning: Color name "white" is not defined Warning: Color name "gray58" is not defined because these colors are defined in rgb.txt, which is part of x11-common, I figured this is a X11-common bug. Arnout -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-1-k7 Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to en_GB.UTF-8) Versions of packages x11-common depends on: ii debconf [debconf-2.0] 1.5.1 Debian configuration management sy ii debianutils 2.16 Miscellaneous utilities specific t ii lsb-base 3.1-5 Linux Standard Base 3.1 init scrip x11-common recommends no packages. -- debconf information: x11-common/xwrapper/nice_value: 0 x11-common/xwrapper/allowed_users: Console Users Only x11-common/xwrapper/actual_allowed_users: console x11-common/xwrapper/nice_value/error: --- End Message --- --- Begin Message --- Closing this bug since I didn't get any reply from the submitter (or repliers) after my ping about a month ago. If anybody ever reproduces this problem, feel free to reopen. Brice --- End Message ---
Bug#378917: marked as done (x11-common: Some X programs fail if xfs is not installed)
Your message dated Sun, 15 Jul 2007 10:06:51 +0200 with message-id <[EMAIL PROTECTED]> and subject line ping timeout, closing has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: x11-common Version: 1:7.0.20 Severity: normal When the xfs package is not installed, certain programs, such as xfd and emacs, generate the error message "Unable to load any usable ISO8859 font". Others, such as xterm, rxvt, and Firefox, work fine even if xfs is not installed. I don't think that X programs should rely on the presence of a font server, but if they do, the error message should be changed to something along the line of "Unable to connect to font server" or "xfs not running." The "files" section of /etc/X11/xorg.conf on my system is: Section "Files" FontPath"unix/:7100"# local font server # if the local font server has problems, we can fall back on these FontPath"/usr/share/fonts/X11/Type1" FontPath"/usr/lib/X11/fonts/Type1" FontPath"/usr/share/fonts/X11/CID" FontPath"/usr/lib/X11/fonts/CID" FontPath"/usr/lib/X11/fonts/Speedo" FontPath"/usr/share/fonts/X11/misc" FontPath"/usr/lib/X11/fonts/misc" FontPath"/usr/share/fonts/X11/cyrillic" FontPath"/usr/lib/X11/fonts/cyrillic" FontPath"/usr/share/fonts/X11/100dpi" FontPath"/usr/lib/X11/fonts/100dpi" FontPath"/usr/share/fonts/X11/75dpi" FontPath"/usr/lib/X11/fonts/75dpi" EndSection -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing'), (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.4.29 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages x11-common depends on: ii debconf [debconf-2.0] 1.5.1 Debian configuration management sy ii debianutils 2.15.2 Miscellaneous utilities specific t ii lsb-base 3.0-12 Linux Standard Base 3.0 init scrip x11-common recommends no packages. -- debconf information excluded --- End Message --- --- Begin Message --- Closing this bug since I didn't get any reply from the submitter (or repliers) after my ping about a month ago. If anybody ever reproduces this problem, feel free to reopen. Brice --- End Message ---
Bug#431098: Blender crash with 6.5.3 version
I have the same problem with mesa 6.5.2 (https://bugs.freedesktop.org/show_bug.cgi?id=10726). So, I Installed 6.5.3 from experimental but blender crash : guessing 'blender-bin' == '/usr/bin/blender-bin' Compiled with Python version 2.4.4. Checking for installed Python... got it! /usr/bin/blender: line 46: 10592 Erreur de segmentation blender-bin "$@" -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: tagging 433131
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.6 > tags 433131 - fixed-upstream Bug#433131: xserver-xorg-core: patch to fix a hang in openoffice when opening menus Tags were: pending fixed-upstream Tags removed: fixed-upstream > 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#348873: regression: r128 on laptop ignores supplied modeline for external display, picking LCD panel pixel dimensions
On Sat, 23 Jun 2007, Tim Connors wrote: > On Sat, 23 Jun 2007, Brice Goglin wrote: > > > Tim Connors wrote: > > > and then Xorg.0.log goes on to claim it knows nothing about the IBM > > > modelines: > > > (II) R128(0): Not using mode "IBM_mode_1" (no mode of this name) > > > (II) R128(0): Not using mode "IBM_mode_2" (no mode of this name) > > > (II) R128(0): Not using mode "IBM_mode_3" (no mode of this name) > > > > > > Then I end up with cruddy 1024x768: > > > (**) R128(0): *Mode "[EMAIL PROTECTED]": 65.0 MHz (scaled from 83.9 MHz), > > > 60.1 kHz, 74.4 Hz > > > (which I find odd, because if it truly was using the flat panel's > > > settings, should it not have picked up the 60Hz rate the flat panel > > > requires? It works on both displays when I cycle through the > > > laptop's external/interal settings) > > > > > > > Could you try with xserver-xorg-video-ati 1:6.6.192-1 currently in > > experimental in case it helps? > > Same result with 1:6.6.192-1. > > > Or you feel more adventurous, you could try the randr-1.2 branch of the > > upstream git repository since it should be better at discovering > > modes/resolutions/... automatically without the need for anything in > > xorg.conf. I have some packages of this somewhere if you want to try it. > > The latter certainly will be a problem -- I have good reason for wanting > to supply my own modelines -- I have a fixed frequency external monitor. > I don't need better discovery -- this all used to work, and I've already > worked out which modelines will work on my monitor, and X will not do a > better job than me at detecting necessary modelines from a monitor that > doesn't do DDC. This used to work prior to 6.9 -- I haven't changed > anything to do with my carefully crafted modelines, so those should > continue to be working. A mandrake user has discovered a workaround, and I have just submitted more info upstream to https://bugs.freedesktop.org/show_bug.cgi?id=5832 Bad assumptions seem to be made about the presense of flat panel registers implying that a flat panel is being used. I have proposed a more robust workaround rather than the complete disabling of the valid-modelines-for-a-flat-panel check, but wouldn't know how to actually put this into action. Hopefully someone knows enough about the driver to be able to check this. -- TimC "I give up," said Pierre de Fermat's friend. "How DO you keep a mathematician busy for 350 years?" -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#415227: Bug#433167: compiz: fullscreen opengl games end up showing only a black screen
On 7/15/07, Brice Goglin wrote: About #415227, does changing /apps/compiz/general/screen0/options/unredirect_fullscreen_windows in gconf help? this option doesn't make any difference. all i get is a black screen instead of the screensaver. mike -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#433161: marked as done (compiz: messes up xfce workspaces)
Your message dated Sun, 15 Jul 2007 13:59:02 -0400 with message-id <[EMAIL PROTECTED]> and subject line Bug#433161: compiz: messes up xfce workspaces has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: compiz Version: 0.2.2-1 Severity: normal when compiz is started on a system running xfce, the number of workspaces will forced to one. even after compiz is stopped, there is still only one workspace. it should be expected that compiz would not alter xfce's number of workspaces. thanks for the hard work. mike -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500, 'testing'), (400, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.21-2-686 (SMP w/1 CPU core) 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 depends on: ii compiz-core 0.2.2-1OpenGL window and compositing mana ii compiz-gnome 0.2.2-1OpenGL window and compositing mana ii compiz-gtk0.2.2-1OpenGL window and compositing mana ii compiz-plugins0.2.2-1OpenGL window and compositing mana compiz recommends no packages. -- no debconf information --- End Message --- --- Begin Message --- On 7/15/07, Brice Goglin wrote: Does compiz 0.5 help? It's in testing and unstable. yep, just tried out compiz 0.5, and the problem is fixed, so i'm closing this bug report. thanks! mike --- End Message ---
Bug#415227: Bug#433167: compiz: fullscreen opengl games end up showing only a black screen
i just tested with compiz 0.5. enabling unredirect_fullscreen_windows does make the screensaver work correctly (although it runs very slowly). also when using unredirect_fullscreen_windows, fullscreen opengl games will run (after a black screen is shown for about 2 minutes) but they will be very slow. and now windowed opengl games also run very very slow. note that without using unredirect_fullscreen_windows, windowed opengl games run fine and fullscreen opengl games result in a black screen. mike -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#433230: xserver-xorg-video-ati: xor error in Gimp 2.3
Package: xserver-xorg-video-ati Version: 1:6.6.3-2 Severity: important I'm using Gimp 2.3 on two different computers, both with the same Debian Sid system. One has an ATI RV370 X300SE video card and a Dell1280x1024 screen. The other has an ATI RV100 7000/VE video card and an Acer 1680x1050 screen. On this one, and only with the 2.3.18 version of Gimp, I get an Xor error which can be seen on this image: http://pierredelune.i3s.unice.fr/bizarre.png With all the tracing tools that use a brush, but only with them, as soon as the pointer is in the image window, there appears a series of images otf he current brush, ligth green. They don't modify the image itself, as simply redrawing it makes the images to disappear. This is does not occur with version 2.2 of Gimp, and one of the developers told me that the drawing color changed between the versions, as well as the way Gdk implements the draw. I'm using the ati Xorg driver. Changing to radeon had no effect. I tried using the proprietary fglrx driver, but the X server does not start, telling me it cannot find a device. -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.21-1-686 (SMP w/1 CPU core) Locale: LANG=fr_FR, LC_CTYPE=fr_FR (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/bash Versions of packages xserver-xorg-video-ati depends on: ii libc6 2.6-2 GNU C Library: Shared libraries ii xserver-xorg-core 2:1.3.0.0.dfsg-11 X.Org X server -- core server xserver-xorg-video-ati recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: gnome-control-center: U.S. English keyboard options are confusing
reassign 347149 xkb-data thanks Upstream pointed out that these strings belong in xkeyboard-config and not any gnome module. -- Cheers, Sven Arvidsson http://www.whiz.se PGP Key ID 760BDD22 signature.asc Description: This is a digitally signed message part
Processed: Re: gnome-control-center: U.S. English keyboard options are confusing
Processing commands for [EMAIL PROTECTED]: > reassign 347149 xkb-data Bug#347149: gnome-control-center: U.S. English keyboard options are confusing Bug reassigned from package `gnome-control-center' to `xkb-data'. > 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]
Bug#151780: Haven't heard from you
Documents are enclosed. These are intended for the mailbox of [EMAIL PROTECTED] All our private messages are in pdf format. Best Regards; Courtney message-id371.pdf Description: Adobe PDF document
Bug#202923: Current Status
Documents are enclosed. These are intended for the mailbox of [EMAIL PROTECTED] All our private messages are in pdf format. Best Regards; Yael message-id675.pdf Description: Adobe PDF document
Bug#204363: You still interested?
Documents are enclosed. These are intended for the mailbox of [EMAIL PROTECTED] All our private messages are in pdf format. Best Regards; Deane message-id849.pdf Description: Adobe PDF document
Bug#289584: Haven't heard from you
Documents are enclosed. These are intended for the mailbox of [EMAIL PROTECTED] All our private messages are in pdf format. Best Regards; Debra Document69.pdf Description: Adobe PDF document