Bug#45291: Have a nice day
Hiya, Your application has been pre-approved on Tuesday, November 2nd 2004. Your Mrg. process is all set for rates starting @ 2.75%fixed. Please use our secure-site to complete your application. http://rara-avis.info/azbme Cordially yours, Erin Cole http://rara-avis.info
X Strike Force XFree86 SVN commit: r2006 - in trunk/debian: . scripts
Author: fabbione Date: 2004-11-03 08:04:09 -0500 (Wed, 03 Nov 2004) New Revision: 2006 Modified: trunk/debian/CHANGESETS trunk/debian/changelog trunk/debian/scripts/validate-posix-sh Log: Add exit codes to validate-posix-sh, so that it will always run the full test suite before failing. This change is required to effectively run valide-posix-sh within debian/rules. (Branden: usual $boilerplate) Modified: trunk/debian/CHANGESETS === --- trunk/debian/CHANGESETS 2004-11-03 05:33:19 UTC (rev 2005) +++ trunk/debian/CHANGESETS 2004-11-03 13:04:09 UTC (rev 2006) @@ -225,4 +225,9 @@ slightly increase verbosity of validate-posix-sh warnings. 2004, 2005 +Add exit codes to validate-posix-sh, so that it will always run the full test +suite before failing. This change is required to effectively run +valide-posix-sh within debian/rules. +2006 + vim:set ai et sts=4 sw=4 tw=80: Modified: trunk/debian/changelog === --- trunk/debian/changelog 2004-11-03 05:33:19 UTC (rev 2005) +++ trunk/debian/changelog 2004-11-03 13:04:09 UTC (rev 2006) @@ -189,6 +189,10 @@ * Add simple sanity check on generated maintainer scripts at buildtime and slightly increase verbosity of validate-posix-sh warnings. + * Add exit codes to validate-posix-sh, so that it will always run the full +test suite before failing. This change is required to effectively run +valide-posix-sh within debian/rules. + -- Branden Robinson <[EMAIL PROTECTED]> Sun, 31 Oct 2004 02:22:48 -0500 xfree86 (4.3.0.dfsg.1-8) unstable; urgency=high Modified: trunk/debian/scripts/validate-posix-sh === --- trunk/debian/scripts/validate-posix-sh 2004-11-03 05:33:19 UTC (rev 2005) +++ trunk/debian/scripts/validate-posix-sh 2004-11-03 13:04:09 UTC (rev 2006) @@ -11,6 +11,7 @@ DASH="dash -n" KSH="ksh -n" POSH="posh -n" +error="" usage () { cat &1; then if ! $SH $1; then echo "$PROGNAME: \"$1\" failed syntax check with $CMD" +error="yes" fi else warn "cannot verify correctness of \"$1\" with $CMD; shell not available" @@ -52,4 +54,10 @@ shift done +if [ -n "$error" ]; then + exit 1 +fi + +exit 0 + # vim:set ai et sts=4 sw=4 tw=80:
X Strike Force XFree86 SVN commit: r2007 - in trunk/debian: . scripts
Author: branden Date: 2004-11-03 11:43:37 -0500 (Wed, 03 Nov 2004) New Revision: 2007 Modified: trunk/debian/CHANGESETS trunk/debian/changelog trunk/debian/rules trunk/debian/scripts/validate-posix-sh Log: Tidy up shell and make style, and tweak wording of change descriptions. Modified: trunk/debian/CHANGESETS === --- trunk/debian/CHANGESETS 2004-11-03 13:04:09 UTC (rev 2006) +++ trunk/debian/CHANGESETS 2004-11-03 16:43:37 UTC (rev 2007) @@ -221,13 +221,10 @@ Tidy up and make consistent all Debian-specific manpages. 1964, 2002 -Add simple sanity check on generated maintainer scripts at buildtime and -slightly increase verbosity of validate-posix-sh warnings. -2004, 2005 +Use validate-posix-sh add build time to perform syntax check generated +maintainer scripts. Increase verbosity of validate-posix-sh warnings. Stop +immediately exiting upon encountering the first shell interpeter that fails on +the script; instead, attempt all the interpreters and report all that fail. +2004, 2005, 2006, 2007 -Add exit codes to validate-posix-sh, so that it will always run the full test -suite before failing. This change is required to effectively run -valide-posix-sh within debian/rules. -2006 - vim:set ai et sts=4 sw=4 tw=80: Modified: trunk/debian/changelog === --- trunk/debian/changelog 2004-11-03 13:04:09 UTC (rev 2006) +++ trunk/debian/changelog 2004-11-03 16:43:37 UTC (rev 2007) @@ -186,12 +186,12 @@ * Fix nl_BE locale alias information. - * Add simple sanity check on generated maintainer scripts at buildtime and -slightly increase verbosity of validate-posix-sh warnings. + * Use validate-posix-sh add build time to perform syntax check generated +maintainer scripts. - * Add exit codes to validate-posix-sh, so that it will always run the full -test suite before failing. This change is required to effectively run -valide-posix-sh within debian/rules. + * Increase verbosity of validate-posix-sh warnings. Stop immediately +exiting upon encountering the first shell interpeter that fails on the +script; instead, attempt all the interpreters and report all that fail. -- Branden Robinson <[EMAIL PROTECTED]> Sun, 31 Oct 2004 02:22:48 -0500 Modified: trunk/debian/rules === --- trunk/debian/rules 2004-11-03 13:04:09 UTC (rev 2006) +++ trunk/debian/rules 2004-11-03 16:43:37 UTC (rev 2007) @@ -185,8 +185,9 @@ cp debian/xserver-xfree86.templates \ debian/xserver-xfree86-dbg.templates - # perform simple sanity check on generated maintainer scripts. - sh debian/scripts/validate-posix-sh debian/*.config debian/*.postinst debian/*.postrm debian/*.preinst debian/*.prerm + # Validate syntax of generated shell scripts. + sh debian/scripts/validate-posix-sh debian/*.config debian/*.postinst \ + debian/*.postrm debian/*.preinst debian/*.prerm touch $@ Modified: trunk/debian/scripts/validate-posix-sh === --- trunk/debian/scripts/validate-posix-sh 2004-11-03 13:04:09 UTC (rev 2006) +++ trunk/debian/scripts/validate-posix-sh 2004-11-03 16:43:37 UTC (rev 2007) @@ -11,7 +11,7 @@ DASH="dash -n" KSH="ksh -n" POSH="posh -n" -error="" +ERROR="" usage () { cat &1; then -if ! $SH $1; then +if ! $SH "$1"; then echo "$PROGNAME: \"$1\" failed syntax check with $CMD" error="yes" fi else -warn "cannot verify correctness of \"$1\" with $CMD; shell not available" +warn "cannot verify correctness of \"$1\" with $CMD; shell not" \ + "available" fi done shift done -if [ -n "$error" ]; then +if [ -n "$ERROR" ]; then exit 1 fi
X Strike Force XFree86 SVN property change: propchange - r2004 svn:log
Author: branden Revision: 2004 Property Name: svn:log New Property Value: Use validate-posix-sh at build time to perform syntax check on generated maintainer scripts.
X Strike Force XFree86 SVN commit: r2008 - trunk/debian
Author: branden Date: 2004-11-03 11:48:25 -0500 (Wed, 03 Nov 2004) New Revision: 2008 Modified: trunk/debian/CHANGESETS trunk/debian/changelog Log: (cosmetic) Fix moronic typos. Modified: trunk/debian/CHANGESETS === --- trunk/debian/CHANGESETS 2004-11-03 16:43:37 UTC (rev 2007) +++ trunk/debian/CHANGESETS 2004-11-03 16:48:25 UTC (rev 2008) @@ -9,7 +9,7 @@ files anywhere.) Miscellaneous cosmetic fixes. -1915, 1916, 1919, 1920, 1932, 1934, 1940, 1951, 1960 +1915, 1916, 1919, 1920, 1932, 1934, 1940, 1951, 1960, 2008 Update Danish debconf template translations (thanks, Claus Hindsgaul). (Closes: #274101) @@ -221,7 +221,7 @@ Tidy up and make consistent all Debian-specific manpages. 1964, 2002 -Use validate-posix-sh add build time to perform syntax check generated +Use validate-posix-sh at build time to perform syntax check on generated maintainer scripts. Increase verbosity of validate-posix-sh warnings. Stop immediately exiting upon encountering the first shell interpeter that fails on the script; instead, attempt all the interpreters and report all that fail. Modified: trunk/debian/changelog === --- trunk/debian/changelog 2004-11-03 16:43:37 UTC (rev 2007) +++ trunk/debian/changelog 2004-11-03 16:48:25 UTC (rev 2008) @@ -186,7 +186,7 @@ * Fix nl_BE locale alias information. - * Use validate-posix-sh add build time to perform syntax check generated + * Use validate-posix-sh at build time to perform syntax check on generated maintainer scripts. * Increase verbosity of validate-posix-sh warnings. Stop immediately
X Strike Force XFree86 SVN property change: propchange - r2005 svn:log
Author: branden Revision: 2005 Property Name: svn:log New Property Value: Use validate-posix-sh instead of sh to perform syntax checks. Call validate-posix-sh via sh to avoid failures in the event the script hasn't been made executable yet. Increase verbosity of validate-posix-sh warnings. Stop immediately exiting upon encountering the first shell interpeter that fails on the script; instead, attempt all the interpreters and report all that fail.
X Strike Force XFree86 SVN property change: propchange - r2005 svn:log
Author: branden Revision: 2005 Property Name: svn:log New Property Value: Use validate-posix-sh instead of sh to perform syntax checks. Call validate-posix-sh via sh to avoid failures in the event the script hasn't been made executable yet. Increase verbosity of validate-posix-sh warnings.
X Strike Force XFree86 SVN property change: propchange - r2006 svn:log
Author: branden Revision: 2006 Property Name: svn:log New Property Value: Modify validate-posix-sh to stop immediately exiting upon encountering the first shell interpeter that fails on the script; instead, attempt all the interpreters and report all that fail.
X Strike Force XFree86 SVN commit: r2009 - trunk/debian
Author: branden Date: 2004-11-03 12:51:05 -0500 (Wed, 03 Nov 2004) New Revision: 2009 Modified: trunk/debian/CHANGESETS trunk/debian/changelog trunk/debian/control Log: Update package descriptions to replace the term "pseudopackage" (which apparently only the xfree86 source package uses) with "dummy package" in the short description, and "transitional package" in the extended description, per section 6.7.7 of the Debian Developers' Reference. Modified: trunk/debian/CHANGESETS === --- trunk/debian/CHANGESETS 2004-11-03 16:48:25 UTC (rev 2008) +++ trunk/debian/CHANGESETS 2004-11-03 17:51:05 UTC (rev 2009) @@ -227,4 +227,10 @@ the script; instead, attempt all the interpreters and report all that fail. 2004, 2005, 2006, 2007 +Update package descriptions to replace the term "pseudopackage" (which +apparently only the xfree86 source package uses) with "dummy package" in +the short description, and "transitional package" in the extended +description, per section 6.7.7 of the Debian Developers' Reference. +2009 + vim:set ai et sts=4 sw=4 tw=80: Modified: trunk/debian/changelog === --- trunk/debian/changelog 2004-11-03 16:48:25 UTC (rev 2008) +++ trunk/debian/changelog 2004-11-03 17:51:05 UTC (rev 2009) @@ -111,6 +111,11 @@ * Tidy up and make consistent all Debian-specific manpages. + * Update package descriptions to replace the term "pseudopackage" (which +apparently only the xfree86 source package uses) with "dummy package" in +the short description, and "transitional package" in the extended +description, per section 6.7.7 of the Debian Developers' Reference. + Changes by Denis Barbier and Fabio M. Di Nitto: * Edit xc/programs/xkbcomp/symbols/pc/Imakefile so that the new pc/us_intl @@ -193,7 +198,7 @@ exiting upon encountering the first shell interpeter that fails on the script; instead, attempt all the interpreters and report all that fail. - -- Branden Robinson <[EMAIL PROTECTED]> Sun, 31 Oct 2004 02:22:48 -0500 + -- Branden Robinson <[EMAIL PROTECTED]> Wed, 3 Nov 2004 12:47:55 -0500 xfree86 (4.3.0.dfsg.1-8) unstable; urgency=high Modified: trunk/debian/control === --- trunk/debian/control2004-11-03 16:48:25 UTC (rev 2008) +++ trunk/debian/control2004-11-03 17:51:05 UTC (rev 2009) @@ -1870,10 +1870,10 @@ Section: oldlibs Architecture: any Depends: ${F:Xlibmesa-gl-Special-Depends}xlibmesa-gl, xlibmesa-glu -Description: XFree86 Mesa libraries pseudopackage +Description: XFree86 Mesa libraries dummy package This package smooths upgrades from Debian 3.0 by depending on xlibmesa-gl and - xlibmesa-glu. This pseudopackage is only depended upon by packages that - haven't yet been compiled against the newer Mesa libraries provided by + xlibmesa-glu. This transitional package is only depended upon by packages + that haven't yet been compiled against the newer Mesa libraries provided by XFree86. . This package also depends on xlibmesa-dri, if that package is available for @@ -1884,54 +1884,55 @@ Priority: extra Architecture: all Depends: xlibmesa-gl-dbg, xlibmesa-glu-dbg -Description: XFree86 Mesa unstripped libraries pseudopackage - This package smooths upgrades from Debian 3.0 by depending on - xlibmesa-gl-dbg and xlibmesa-glu-dbg. This pseudopackage should not be - depended upon by any Debian packages; report bugs with the Debian Bug - Tracking System if you encounter any that do so. +Description: XFree86 Mesa unstripped libraries dummy package + This package smooths upgrades from Debian 3.0 by depending on xlibmesa-gl-dbg + and xlibmesa-glu-dbg. This transitional package should not be depended upon + by any Debian packages; report bugs with the Debian Bug Tracking System if + you encounter any that do so. Package: xlibmesa-dev Section: oldlibs Architecture: all Depends: xlibmesa-gl-dev, xlibmesa-glu-dev -Description: XFree86 Mesa development libraries pseudopackage +Description: XFree86 Mesa development libraries dummy package This package smooths upgrades from Debian 3.0 by depending on xlibmesa-gl-dev - and xlibmesa-glu-dev. This pseudopackage is only depended upon by packages - that haven't yet corrected their dependencies to reflect the new library - arrangement. + and xlibmesa-glu-dev. This transitional package is only depended upon by + packages that haven't yet corrected their dependencies to reflect the new + library arrangement. Package: xlibs-dbg Section: oldlibs Priority: extra Architecture: all Depends: libice6-dbg, libsm6-dbg, libx11-6-dbg, libxext6-dbg, libxft1-dbg, libxi6-dbg, libxmu6-dbg, libxmuu1-dbg, libxp6-dbg, libxpm4-dbg, libxrandr2-dbg, libxt6-dbg, libxtrap6-dbg, libxtst6-dbg -Description: X Window System unstripped client libraries pseudopackage +Description: X W
Processed: Re: Bug#278417: libxt6 4.3.0.dfsg.1-8 pre-installation script fails
Processing commands for [EMAIL PROTECTED]: > reassign 278417 debconf Bug#278417: libxt6 4.3.0.dfsg.1-8 pre-installation script fails Bug reassigned from package `libxt6' to `debconf'. > retitle 278417 debconf: loading Text::Iconv lazily can cause failures on > upgrades from woody Bug#278417: libxt6 4.3.0.dfsg.1-8 pre-installation script fails Changed Bug title. > # Justification: can break upgrades from woody to sarge > severity 278417 serious Bug#278417: debconf: loading Text::Iconv lazily can cause failures on upgrades from woody Severity set to `serious'. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database)
Bug#270640: xlibs: Missing macintosh be keyboard symbol file
Hello Branden, Package: xlibs Version: 4.3.0.dfsg.1-4 Severity: important Tags: patch There is no suitable symbol file for a belgian apple keyboard. This is a wishlist item, not an important bug. Wishlist item if you want, I don't know the exact taxonomy of bugs in the system. I used important because this made my system unusable with my particular hardware. I've found one here made by a Gentoo developper: http://dev.gentoo.org/~sejo/ Forbidden You don't have permission to access /~sejo/ on this server. Apache Server at dev.gentoo.org Port 80 Can you please get us this patch via some other means? It seems the page is now again available at the same url. Antoine.
Re: ATTENTION BRANDEN ROBINSON
On Mon, Nov 01, 2004 at 08:44:23AM -0800, Daniel Stone wrote: > Branden, > I would like to talk to you about security issues, but unfortunately > your mail server is slandering me as a spammer; I find this > unacceptable, as I have never been involved in spam. I have never > profited from it or aided others in profiting in it, and I find it > simply despicable. I suggest disabling these so-called 'anti-spam' > strategies, since they often unfairly target innocent victims, such as > myself. > > Regards, > Daniel > > [EMAIL PROTECTED] > SMTP error from remote mailer after RCPT TO:<[EMAIL PROTECTED]>: > host necrotic.deadbeast.net [216.37.46.189]: 554 <[EMAIL PROTECTED]>: > Sender address rejected: Access denied This accuses you of nothing. Nothing in the above message makes any reference to spam or an anti-spam blacklist. It simply says that "access" to my SMTP server is "denied". I confirm that this configuration is deliberate. You can read into that whatever you like, but if you care to hold opinions that aren't at wide variance with reality, then you should be advised that the reason has nothing to do with spam, and everything to do with the extremely abusive tone you take with me in private communications (both in email[2] and IRC[3]). You may instead direct your rhetoric to public forums, where your approach to teamwork can be judged by your peers. You can communicate information to me about embargoed security issues in packages I maintain via the Debian Security Team[1]. Additionally, when such matters relate to XFree86 or any other package maintained by the X Strike Force, you can also communicate such information to me via Fabio or another person in the Uploaders: field of the package in question. [1] pub 1024R/363CCD95 1998-11-24 Debian Security Contact <[EMAIL PROTECTED]> [2] One recent example: "Fuck the code of conduct." Message-ID: <[EMAIL PROTECTED]> In-Reply-To: <[EMAIL PROTECTED]> [3] An example from IRC yesterday: "fix your fucking mail server". In response to that, I have configured my IRC client to ignore messages from you. -- G. Branden Robinson|One man's theology is another man's Debian GNU/Linux |belly laugh. [EMAIL PROTECTED] |-- Robert Heinlein http://people.debian.org/~branden/ | signature.asc Description: Digital signature
X Strike Force XFree86 SVN commit: r2010 - trunk/debian
Author: branden Date: 2004-11-03 14:05:41 -0500 (Wed, 03 Nov 2004) New Revision: 2010 Modified: trunk/debian/TODO Log: Add items. (Fabio: $BOILERPLATE :) ) Modified: trunk/debian/TODO === --- trunk/debian/TODO 2004-11-03 17:51:05 UTC (rev 2009) +++ trunk/debian/TODO 2004-11-03 19:05:41 UTC (rev 2010) @@ -55,6 +55,9 @@ because validlocale is a Perl utility provided by base-config.) * #277699: apply NX kernel support to stop AMD64 kernel users from getting SEGVs from the XFree86 X server's ELF object loader [patch; BR] +* #278654: apply Dan Jacobowitz's patch fixing a bad assumption in his previous + patch correcting the Rage 128 engine reset logic [patch; BR] +* #279436: apply David Mosberger's PCI domain fix [patch; BR] 4.3.0.dfsg.1-10 --
Re: Debian's evdev patches and evdev's /tmp/.X11-unix/evdev0
On Mon, 1 Nov 2004, Robert Hardy wrote: I'm evaluating Debian's evdev patches to xorg-x11 (or perhaps Gentoo's adapation of Mr. Hull's original patches it isn't clear.) I'm trying to figure out if they can be made to work in other distributions and if they can be generalized to the point where they have a better chance of gaining wide spread acceptance. At very least I would like to add more info to a howto wrt/ how to get them working with a USB switch. Never mind, I figured it out from the source. I'm sure you don't care but I now have a working evdev patched xorg-x11 Fedora Core 2/3 rpm. Regards, Rob -- -"Happiness is understanding."-- Robert Hardy, B.Eng Computer Systems C.E.O. Webcon Inc. rhardy webcon caGPG Key available (613) 276-7327
Bug#272059: [#272059] xserver-xfree86: [i810] Fatal server error: lockup
*** Please type your report below this line *** I'm seeing this error on i855GM chipset as well. This crash is reproducable by 1. running a movie in Xine, exit 2. suspend (APM) 3. run the movie again (x server crashes before the video starts playing) -- Package-specific info: Contents of /var/lib/xfree86/X.roster: xserver-xfree86 /etc/X11/X target unchanged from checksum in /var/lib/xfree86/X.md5sum. X server symlink status: lrwxrwxrwx 1 root root 20 Apr 21 2004 /etc/X11/X -> /usr/bin/X11/XFree86 -rwxr-xr-x 1 root root 1745484 Sep 28 15:09 /usr/bin/X11/XFree86 Contents of /var/lib/xfree86/XF86Config-4.roster: xserver-xfree86 VGA-compatible devices on PCI bus: :00:02.0 VGA compatible controller: Intel Corp. 82852/855GM Integrated Graphics Device (rev 02) /etc/X11/XF86Config-4 does not match checksum in /var/lib/xfree86/XF86Config-4.md5sum. XFree86 X server configuration file status: -rw-r--r-- 1 root root 3218 Sep 15 21:12 /etc/X11/XF86Config-4 Contents of /etc/X11/XF86Config-4: # XF86Config-4 (XFree86 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 XF86Config-4 manual page. # (Type "man XF86Config-4" at the shell prompt.) # # This file is automatically updated on xserver-xfree86 package upgrades *only* # if it has not been modified since the last upgrade of the xserver-xfree86 # package. # # If you have edited this file but would like it to be automatically updated # again, run the following commands as root: # # cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom # md5sum /etc/X11/XF86Config-4 > /var/lib/xfree86/XF86Config-4.md5sum # dpkg-reconfigure xserver-xfree86 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/truetype" FontPath"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" FontPath"/usr/lib/X11/fonts/misc" FontPath"/usr/lib/X11/fonts/cyrillic" FontPath"/usr/lib/X11/fonts/100dpi/:unscaled" FontPath"/usr/lib/X11/fonts/75dpi/:unscaled" FontPath"/usr/lib/X11/fonts/Type1" FontPath"/usr/lib/X11/fonts/CID" FontPath"/usr/lib/X11/fonts/Speedo" FontPath"/usr/lib/X11/fonts/100dpi" FontPath"/usr/lib/X11/fonts/75dpi" EndSection Section "Module" Load"GLcore" Load"bitmap" Load"dbe" Load"ddc" #Load "dri" Load"extmod" Load"freetype" Load"glx" Load"int10" Load"record" Load"speedo" Load"type1" Load"vbe" EndSection Section "InputDevice" Identifier "Generic Keyboard" Driver "keyboard" Option "CoreKeyboard" Option "XkbRules" "xfree86" Option "XkbModel" "pc105" Option "XkbLayout" "fi" EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device""/dev/input/mice" Option "Protocol" "ImPS/2" Option "Emulate3Buttons" "true" Option "ZAxisMapping" "4 5" EndSection Section "InputDevice" Identifier "Generic Mouse" Driver "mouse" Option "SendCoreEvents""true" Option "Device""/dev/input/mice" Option "Protocol" "ImPS/2" Option "Emulate3Buttons" "true" Option "ZAxisMapping" "4 5" EndSection Section "Device" Identifier "Generic Video Card" Driver "i810" VideoRam16384 EndSection Section "Monitor" Identifier "Generic Monitor" HorizSync 30-60 VertRefresh 50-75 Option "DPMS" EndSection Section "Screen" Identifier "Default Screen" Device "Generic Video Card" Monitor "Generic Monitor" DefaultDepth16 SubSection "Display" Depth 1 Modes "1024x768" EndSubSection SubSection "Display" Depth 4 Modes "1024x768" EndSubSection SubSection "Display" Depth 8 Modes "1024x768" EndSubSection SubSection "Display" Depth 15 Modes "1024x768" EndSubSection SubSection "Display"
Bug#279597: xserver-xfree86: [mga] SEVG when using Mozilla on MGA400 rev 04
Package: xserver-xfree86 Version: 4.3.0.dfsg.1-8 Severity: important I was just browsing the web with Mozilla 1.7.3 (the version in testing) and when I middle-clicked a link the xserver received a Signal 11 and died. I use fluxbox as my window manager. At the moment of the crash, I had grip ripping an audio CD, fluxbox running, mozilla (the suite) browsing some pages and some rxvt windows with misc things (bash, mutt, fetchmail etc). It's been quite a while since I last saw the X server crash and it is quite frightening to do so, as it is part of the infra-structure of most of the systems that I use. Oh, this is on ix86. I don't know how many other relevant details I can provide, but feel free to ask me whatever is important to help diagnose this bug. My card is a Matrox G400 monohead AGP with 16MB of RAM. The computer has an Asus A7V board with KT133 Via chipset (not KT133A). It has a Duron 600MHz processor and I've been stably running testing here for a long time. The only modification that I did to the X packages was to include us_intl back (since the last upgrade broke my layout and I type texts mostly in Portuguese in a keyboard with US layout). I'm attaching the log after the crash (I don't know if it will be helpful or not). I'm also attaching my configuration file. Thanks for any help that you can provide and, again, please feel free to ask any questions regarding my system that may lead to a solution. Thanks, Rogério. -- Package-specific info: -- System Information: Debian Release: 3.1 APT prefers testing APT policy: (990, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.9-ac6-1 Locale: LANG=C, LC_CTYPE=pt_BR Versions of packages xserver-xfree86 depends on: ii debconf [debconf-2.0] 1.4.30.8 Debian configuration management sy ii libc6 2.3.2.ds1-18 GNU C Library: Shared libraries an ii libgcc1 1:3.4.2-2 GCC support library ii xserver-common4.3.0.dfsg.1-8 files and utilities common to all ii zlib1g1:1.2.2-1 compression library - runtime -- debconf information: xserver-xfree86/config/monitor/screen-size: 17 inches (430 mm) xserver-xfree86/config/device/use_fbdev: * xserver-xfree86/config/monitor/selection-method: Advanced xserver-xfree86/config/doublequote_in_string_error: * xserver-xfree86/config/device/bus_id: * xserver-xfree86/config/device/video_ram: * xserver-xfree86/config/monitor/lcd: false xserver-xfree86/config/inputdevice/keyboard/internal: * xserver-xfree86/config/device/driver: mga * xserver-xfree86/config/monitor/vert-refresh: 50-120 * xserver-xfree86/config/display/default_depth: 24 * xserver-xfree86/config/display/modes: 1280x1024, 1280x960, 1152x864, 1024x768, 800x600, 640x480 * xserver-xfree86/config/modules: GLcore, bitmap, dbe, ddc, dri, extmod, freetype, glx, int10, record, speedo, type1, vbe xserver-xfree86/config/monitor/range_input_error: * xserver-xfree86/autodetect_video_card: true * xserver-xfree86/config/inputdevice/keyboard/variant: * xserver-xfree86/config/inputdevice/mouse/port: /dev/input/mice * xserver-xfree86/config/write_files_section: true * xserver-xfree86/autodetect_monitor: true * xserver-xfree86/config/device/identifier: Matrox Graphics, Inc. Millennium G400 shared/default-x-server: xserver-xfree86 * xserver-xfree86/config/inputdevice/mouse/emulate3buttons: true * xserver-xfree86/config/inputdevice/keyboard/layout: us_intl * xserver-xfree86/config/monitor/horiz-sync: 28-70 * xserver-xfree86/config/monitor/identifier: KDS:e605 shared/no_known_x-server: xserver-xfree86/autodetect_mouse: true xserver-xfree86/config/monitor/mode-list: 1280x960 @ 60Hz * xserver-xfree86/config/inputdevice/keyboard/rules: xfree86 xserver-xfree86/multiple_possible_x-drivers: * xserver-xfree86/config/inputdevice/keyboard/model: pc104 * xserver-xfree86/config/write_dri_section: true * xserver-xfree86/config/inputdevice/mouse/zaxismapping: true xserver-xfree86/config/device/bus_id_error: * xserver-xfree86/config/inputdevice/keyboard/options: xserver-xfree86/config/nonnumeric_string_error: * xserver-xfree86/config/inputdevice/mouse/protocol: ImPS/2 shared/multiple_possible_x-servers: xserver-xfree86/config/null_string_error: -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Rogério Brito - [EMAIL PROTECTED] - http://www.ime.usp.br/~rbrito =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= # XF86Config-4 (XFree86 X server configuration file) generated by dexconf, the # Debian X Configuration tool, using values from the debconf database. # # Edit this file with caution, and see the XF86Config-4 manual page. # (Type "man XF86Config-4" at the shell prompt.) # # This file is automatically updated on xserver-xfree86 package upgrades *only* # if it has not been modified since the last upgrade of the xserver-xfree86 # package. # # If you have edited this file but would like it to be automatically updated