pp_free () from /usr/X11R6/lib/modules/dri/r600_dri.so

2013-10-31 Thread Alf Schlichting
Hello, I get crashes like the one below when quiting fullscreen opengl apps like quake engines. Example is from the FodQuake engine. http://www.fodquake.net (For anyone interested, it comes with a sndio driver in the 0.4 dev releases). Same root of crash (pp_free) with quakespasm.

Re: pp_free () from /usr/X11R6/lib/modules/dri/r600_dri.so

2013-10-31 Thread Mark Kettenis
Alf, it's probably a good idea to send this bug report upstream. See: http://www.mesa3d.org/bugs.html for instructions.

Re: pp_free () from /usr/X11R6/lib/modules/dri/r600_dri.so

2013-10-31 Thread Alf Schlichting
Ok! On Thu, Oct 31, 2013 at 11:20:58AM +0100, Mark Kettenis wrote: Alf, it's probably a good idea to send this bug report upstream. See: http://www.mesa3d.org/bugs.html for instructions.

Re: pp_free () from /usr/X11R6/lib/modules/dri/r600_dri.so

2013-10-31 Thread Alf Schlichting
On Thu, Oct 31, 2013 at 11:20:58AM +0100, Mark Kettenis wrote: Alf, it's probably a good idea to send this bug report upstream. See: http://www.mesa3d.org/bugs.html for instructions. https://bugs.freedesktop.org/show_bug.cgi?id=71090

weird shell behaviour with case pattern

2013-10-31 Thread Han Boetes
I ran into weird behaviour which was triggered by a recent version of the emacs build system. This small scriplet is the minimal case which triggers it as well. You can replace the 5 with any other letter or number. The funny thing is the -~ which I wouldn't expect to match. #!/bin/sh

Re: weird shell behaviour with case pattern

2013-10-31 Thread Han Boetes
Otto Moerbeek wrote: case foobar in *[5-~]*) echo Why do I match now? ;; esac What is going on here? You specify the range 5 ... ~, which includes all letters. See ascii(5). Ah, silly me, it's a range! OK, this brings me to the real problem: This comes from a recent version of

Re: weird shell behaviour with case pattern

2013-10-31 Thread Han Boetes
Hi Otto, I figured it out. For portability one should use ! and not ^ It's a bug in bash and zsh to allow non POSIX syntax. # Han

Re: weird shell behaviour with case pattern

2013-10-31 Thread Jérémie Courrèges-Anglas
Han Boetes h...@boetes.org writes: Otto Moerbeek wrote: case foobar in *[5-~]*) echo Why do I match now? ;; esac What is going on here? You specify the range 5 ... ~, which includes all letters. See ascii(5). Ah, silly me, it's a range! OK, this brings me to the real problem:

Re: weird shell behaviour with case pattern

2013-10-31 Thread Jérémie Courrèges-Anglas
Han Boetes h...@boetes.org writes: Hi Otto, I figured it out. For portability one should use ! and not ^ It's a bug in bash and zsh to allow non POSIX syntax. I wouldn't word it like that. File: autoconf.info, Node: Shell Pattern Matching, Next: Shell Substitutions, Prev: File System