Your message dated Fri, 15 Mar 2013 11:07:58 -0400 with message-id <caaajcmatdkv-mf02c7mggqmk22b9shdbuc_kn4guk4jhvkh...@mail.gmail.com> and subject line Re: Don't use -xshm for remote displays has caused the Debian Bug report #692587, regarding Don't use -xshm for remote displays 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.) -- 692587: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692587 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: scratch Version: 1.4.0.6~dfsg1-2 Severity: normal Hi, scratch doesn't work with LTSP thin clients because -xshm is forced. Here's a patch that works around the problem: === modified file 'debian/bin/scratch' --- debian/bin/scratch 2012-07-02 14:58:46 +0000 +++ debian/bin/scratch 2012-11-07 16:48:23 +0000 @@ -7,7 +7,8 @@ VM_VERSION=`find /usr/lib/squeak/ -name "squeakvm" -type f|cut -f5 -d"/"` SQ_DIR=/usr/lib/squeak/$VM_VERSION VM="$SQ_DIR/squeakvm" -VMOPTIONS="-encoding UTF-8 -vm-display-x11 -xshm -plugins /usr/lib/scratch/plugins/:$SQ_DIR/" +test -z "${DISPLAY%:*}" && XSHM="-xshm" +VMOPTIONS="-encoding UTF-8 -vm-display-x11 $XSHM -plugins /usr/lib/scratch/plugins/:$SQ_DIR/" IMAGE="/usr/share/scratch/Scratch.image" IMOPTIONS="" DOCUMENT=""
--- End Message ---
--- Begin Message ---Version: 1.4.0.6~dfsg1-3 -xshm causes other problems so it's been disabled: scratch (1.4.0.6~dfsg1-3) unstable; urgency=low [ Miriam Ruiz ] * Added support for help in starting script. Thanks to Alec Clews. * Changed my email to [email protected] [ Amos Blanton ] * Prefer pulse plugin if pulse is present, because pulse ALSA emulation fails when user records sounds. * Remove -xshm switch to squeakvm to prevent Ubuntu Bug 1025013.
--- End Message ---

