From bil at ccrma.Stanford.EDU Sun May 10 08:35:58 2015 From: bil at ccrma.Stanford.EDU (Bill Schottstaedt) Date: Sun, 10 May 2015 08:35:58 -0700 Subject: [CM] Snd 15.6 Message-ID: <20150510153521.M84869@ccrma.Stanford.EDU> Snd 15.6: add int-vector? int-vector make-int-vector changed s7_copy arg interpretation (it's now a normal s7_function). checked: gtk 3.16.1|2 3.17.1, FC 22 (gcc 5), Ruby 2.2, sbcl 1.2.11 Thanks!: Tito Latini (found and fixed many bugs), Donny Ward (MS Visual Studio 2013) From stefaan.himpe at gmail.com Mon May 25 02:04:27 2015 From: stefaan.himpe at gmail.com (Stefaan Himpe) Date: Mon, 25 May 2015 11:04:27 +0200 Subject: [CM] cannot save files from Grace? Message-ID: Hello list, I'm hitting an annoying problem while experimenting with grace freshly compiled from cm-3.9.0 using premake4.4beta5 Whenever I try to save a file from grace, it bails out with an error. (link to screenshot further in the mail). Since grace is the only program on my computer that behaves like this I assume it's a problem with grace somehow (despite the error pointing to something samba? Not sure why samba would be even used as I do not have anything related to microsoft windows on this computer.) I'm running grace under kde on arch linux, kernel: Linux name 4.0.4-2-ARCH #1 SMP PREEMPT Fri May 22 03:05:23 UTC 2015 x86_64 GNU/Linux A screenshot of the error can be found here: http://i.imgur.com/ApchGhm.png My workaround is to copy/paste everything to a different editor for now but as you can imagine this is not a lot of fun :) Any ideas how to go about making this work? Best regards, Stefaan. -------------- next part -------------- An HTML attachment was scrubbed... URL: From tito.01beta at gmail.com Mon May 25 15:13:42 2015 From: tito.01beta at gmail.com (Tito Latini) Date: Tue, 26 May 2015 00:13:42 +0200 Subject: [CM] cannot save files from Grace? In-Reply-To: References: Message-ID: <20150525221342.GA1695@rhk.homenet.telecomitalia.it> On Mon, May 25, 2015 at 11:04:27AM +0200, Stefaan Himpe wrote: > Hello list, > > I'm hitting an annoying problem while experimenting with grace > freshly compiled from cm-3.9.0 using premake4.4beta5 > > Whenever I try to save a file from grace, it bails out with an error. > (link to screenshot further in the mail). > > Since grace is the only program on my computer that behaves like > this I assume it's a problem with grace somehow (despite the error pointing > to something samba? Not sure why samba would be even used as I do not > have anything related to microsoft windows on this computer.) > > I'm running grace under kde on arch linux, kernel: > > Linux name 4.0.4-2-ARCH #1 SMP PREEMPT Fri May 22 03:05:23 UTC 2015 x86_64 > GNU/Linux > > A screenshot of the error can be found here: > > http://i.imgur.com/ApchGhm.png > > My workaround is to copy/paste everything to a different editor for now > but as you can imagine this is not a lot of fun :) > Any ideas how to go about making this work? The standard error of kdialog is not redirected because the flag in if (child.start (args, ChildProcess::wantStdOut)) is ignored (juce_gui_basics/native/juce_linux_FileChooser.cpp). It means that the filename is all the kdialog output (stdout + stderr). Probably you are using old JUCE's code with a bug in juce/modules/juce_core/native/juce/posix/SharedCode.h You can update JUCE or change the lines (the second `if' is your problem): if ((streamFlags | wantStdOut) != 0) [...] if ((streamFlags | wantStdErr) != 0) with if ((streamFlags & wantStdOut) != 0) [...] if ((streamFlags & wantStdErr) != 0) From stefaan.himpe at gmail.com Tue May 26 04:30:24 2015 From: stefaan.himpe at gmail.com (Stefaan Himpe) Date: Tue, 26 May 2015 13:30:24 +0200 Subject: [CM] cannot save files from Grace? In-Reply-To: <20150525221342.GA1695@rhk.homenet.telecomitalia.it> References: <20150525221342.GA1695@rhk.homenet.telecomitalia.it> Message-ID: Resending because I replied privately by accident... Thanks, your suggestions solve my problem! Best regards, Stefaan. On Tue, May 26, 2015 at 12:13 AM, Tito Latini wrote: > On Mon, May 25, 2015 at 11:04:27AM +0200, Stefaan Himpe wrote: > > Hello list, > > > > I'm hitting an annoying problem while experimenting with grace > > freshly compiled from cm-3.9.0 using premake4.4beta5 > > > > Whenever I try to save a file from grace, it bails out with an error. > > (link to screenshot further in the mail). > > > > Since grace is the only program on my computer that behaves like > > this I assume it's a problem with grace somehow (despite the error > pointing > > to something samba? Not sure why samba would be even used as I do not > > have anything related to microsoft windows on this computer.) > > > > I'm running grace under kde on arch linux, kernel: > > > > Linux name 4.0.4-2-ARCH #1 SMP PREEMPT Fri May 22 03:05:23 UTC 2015 > x86_64 > > GNU/Linux > > > > A screenshot of the error can be found here: > > > > http://i.imgur.com/ApchGhm.png > > > > My workaround is to copy/paste everything to a different editor for now > > but as you can imagine this is not a lot of fun :) > > Any ideas how to go about making this work? > > The standard error of kdialog is not redirected because the flag in > > if (child.start (args, ChildProcess::wantStdOut)) > > is ignored (juce_gui_basics/native/juce_linux_FileChooser.cpp). > > It means that the filename is all the kdialog output (stdout + stderr). > Probably you are using old JUCE's code with a bug in > > juce/modules/juce_core/native/juce/posix/SharedCode.h > > You can update JUCE or change the lines (the second `if' is your problem): > > if ((streamFlags | wantStdOut) != 0) > [...] > if ((streamFlags | wantStdErr) != 0) > > with > > if ((streamFlags & wantStdOut) != 0) > [...] > if ((streamFlags & wantStdErr) != 0) > -------------- next part -------------- An HTML attachment was scrubbed... URL: From taube at illinois.edu Tue May 26 04:42:52 2015 From: taube at illinois.edu (Rick Taube) Date: Tue, 26 May 2015 06:42:52 -0500 Subject: [CM] cannot save files from Grace? In-Reply-To: References: <20150525221342.GA1695@rhk.homenet.telecomitalia.it> Message-ID: <5C54D4B1-C5CD-4B7D-ADEE-630771EE3C68@illinois.edu> Ok so is the issue that I need to update the juce version to fix a juce bug? (im going to make another release later this summer and will update the codebase then) On May 26, 2015, at 6:30 AM, Stefaan Himpe wrote: > Resending because I replied privately by accident... > > Thanks, your suggestions solve my problem! > > Best regards, > Stefaan. > > > > On Tue, May 26, 2015 at 12:13 AM, Tito Latini wrote: > On Mon, May 25, 2015 at 11:04:27AM +0200, Stefaan Himpe wrote: > > Hello list, > > > > I'm hitting an annoying problem while experimenting with grace > > freshly compiled from cm-3.9.0 using premake4.4beta5 > > > > Whenever I try to save a file from grace, it bails out with an error. > > (link to screenshot further in the mail). > > > > Since grace is the only program on my computer that behaves like > > this I assume it's a problem with grace somehow (despite the error pointing > > to something samba? Not sure why samba would be even used as I do not > > have anything related to microsoft windows on this computer.) > > > > I'm running grace under kde on arch linux, kernel: > > > > Linux name 4.0.4-2-ARCH #1 SMP PREEMPT Fri May 22 03:05:23 UTC 2015 x86_64 > > GNU/Linux > > > > A screenshot of the error can be found here: > > > > http://i.imgur.com/ApchGhm.png > > > > My workaround is to copy/paste everything to a different editor for now > > but as you can imagine this is not a lot of fun :) > > Any ideas how to go about making this work? > > The standard error of kdialog is not redirected because the flag in > > if (child.start (args, ChildProcess::wantStdOut)) > > is ignored (juce_gui_basics/native/juce_linux_FileChooser.cpp). > > It means that the filename is all the kdialog output (stdout + stderr). > Probably you are using old JUCE's code with a bug in > > juce/modules/juce_core/native/juce/posix/SharedCode.h > > You can update JUCE or change the lines (the second `if' is your problem): > > if ((streamFlags | wantStdOut) != 0) > [...] > if ((streamFlags | wantStdErr) != 0) > > with > > if ((streamFlags & wantStdOut) != 0) > [...] > if ((streamFlags & wantStdErr) != 0) > > _______________________________________________ > Cmdist mailing list > Cmdist at ccrma.stanford.edu > http://ccrma-mail.stanford.edu/mailman/listinfo/cmdist -------------- next part -------------- An HTML attachment was scrubbed... URL: From stefaan.himpe at gmail.com Tue May 26 04:45:41 2015 From: stefaan.himpe at gmail.com (Stefaan Himpe) Date: Tue, 26 May 2015 13:45:41 +0200 Subject: [CM] cannot save files from Grace? In-Reply-To: <5C54D4B1-C5CD-4B7D-ADEE-630771EE3C68@illinois.edu> References: <20150525221342.GA1695@rhk.homenet.telecomitalia.it> <5C54D4B1-C5CD-4B7D-ADEE-630771EE3C68@illinois.edu> Message-ID: Hi, To be honest I just replaced the error checking in the source code as suggested by Tito Latini. I didn't try to update to a newer Juce. Best regards, Stefaan. On Tue, May 26, 2015 at 1:42 PM, Rick Taube wrote: > Ok so is the issue that I need to update the juce version to fix a juce > bug? (im going to make another release later this summer and will update > the codebase then) > > On May 26, 2015, at 6:30 AM, Stefaan Himpe > wrote: > > Resending because I replied privately by accident... > > Thanks, your suggestions solve my problem! > > Best regards, > Stefaan. > > > > On Tue, May 26, 2015 at 12:13 AM, Tito Latini > wrote: > >> On Mon, May 25, 2015 at 11:04:27AM +0200, Stefaan Himpe wrote: >> > Hello list, >> > >> > I'm hitting an annoying problem while experimenting with grace >> > freshly compiled from cm-3.9.0 using premake4.4beta5 >> > >> > Whenever I try to save a file from grace, it bails out with an error. >> > (link to screenshot further in the mail). >> > >> > Since grace is the only program on my computer that behaves like >> > this I assume it's a problem with grace somehow (despite the error >> pointing >> > to something samba? Not sure why samba would be even used as I do not >> > have anything related to microsoft windows on this computer.) >> > >> > I'm running grace under kde on arch linux, kernel: >> > >> > Linux name 4.0.4-2-ARCH #1 SMP PREEMPT Fri May 22 03:05:23 UTC 2015 >> x86_64 >> > GNU/Linux >> > >> > A screenshot of the error can be found here: >> > >> > http://i.imgur.com/ApchGhm.png >> >> > >> > My workaround is to copy/paste everything to a different editor for now >> > but as you can imagine this is not a lot of fun :) >> > Any ideas how to go about making this work? >> >> The standard error of kdialog is not redirected because the flag in >> >> if (child.start (args, ChildProcess::wantStdOut)) >> >> is ignored (juce_gui_basics/native/juce_linux_FileChooser.cpp). >> >> It means that the filename is all the kdialog output (stdout + stderr). >> Probably you are using old JUCE's code with a bug in >> >> juce/modules/juce_core/native/juce/posix/SharedCode.h >> >> You can update JUCE or change the lines (the second `if' is your problem): >> >> if ((streamFlags | wantStdOut) != 0) >> [...] >> if ((streamFlags | wantStdErr) != 0) >> >> with >> >> if ((streamFlags & wantStdOut) != 0) >> [...] >> if ((streamFlags & wantStdErr) != 0) >> > > _______________________________________________ > Cmdist mailing list > Cmdist at ccrma.stanford.edu > http://ccrma-mail.stanford.edu/mailman/listinfo/cmdist > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: