Package: cecilia
Version: 2.0.5-2
Severity: important

Cecilia hangs when loading for the first time with the new csound5
version. This is caused by an error in the version checking regex of
cecilia: csound 4 said "Version 4.x", csound 5 says "version 5.x", and
the regex is case sensitive.

This patch appears to fix the issue:

--- prefs.tcl   2008-04-15 13:50:40.000000000 -0400
+++ /usr/share/cecilia/lib/prefs.tcl    2008-04-15 13:52:27.000000000 -0400
@@ -186,7 +186,7 @@
        set f [open /tmp/csvers r]
        while ![eof $f] {
            set l [gets $f ]
-           if [regexp Version $l] { break }
+           if [regexp -nocase version $l] { break }
        }       
        
        close $f

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

Kernel: Linux 2.6.24-1-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/dash

Versions of packages cecilia depends on:
ii  csound                  1:5.08.0.dfsg2-1 powerful and versatile sound synth
ii  tk8.4                   8.4.18-1         Tk toolkit for Tcl and X11, v8.4 -

cecilia recommends no packages.

-- no debconf information



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

Reply via email to