Re: [Bug-apl] Macintosh compile errors and warnings SVN 581

2015-03-31 Thread Juergen Sauermann
Hi Peter, thanks, should be fixed in SVN 582. /// Jürgen On 03/30/2015 07:35 PM, Peter Teeson wrote: Hi Jürgen: Congratulation on the 1.5 release…. So to keep you busy here are some issues on Mac OS X 10.8.5 respect

Re: [Bug-apl] incompatible workspace 1.4 vs 1.5

2015-03-31 Thread Juergen Sauermann
Hi Fausto, the bug should be fixed in SVN 582. It was an old ⎕-function (⎕PT) that was removed in the meantime. /// Jürgen On 03/31/2015 11:22 AM, Fausto Saporito wrote: Hello Jürgen, thanks for the clarificati

Re: [Bug-apl] gnu apl svn version on Mac OS X

2015-03-31 Thread Juergen Sauermann
Hi Fausto, thanks, fixed in SVN 582. /// Jürgen On 03/31/2015 11:36 AM, Fausto Saporito wrote: Hi Jürgen, that file is in /usr/include/sys on my system... weird... :) I checked-out the rev 581 but in src/native/file

Re: [Bug-apl] Macintosh compile errors and warnings SVN 582

2015-03-31 Thread Peter Teeson
Hi Jürgen: Almost fixed… but some new errors & warnings…:-} Peter On 2015-03-31, at 10:10 AM, Juergen Sauermann wrote: > Hi Peter, > > thanks, should be fixed in SVN 582. > > /// Jürgen SVN 582 GNUAPL Group Shell Script Invocation Error Group /Volumes/Data/Development/MyProjects/GNUAPL/apl-s

[Bug-apl] SVN 582 and CLANG ... error in PrintBuffer.cc

2015-03-31 Thread Fausto Saporito
Hello, I trying to compile again the latest version with CLANG. The previous errors has been fixed, but now I have this new: PrintBuffer.cc:128:9: error: variable length array of non-POD element type 'PrintBuffer' DynArray(PrintBuffer, pcols, cols); ^ ./APL_types.hh:465:46: not

Re: [Bug-apl] incompatible workspace 1.4 vs 1.5

2015-03-31 Thread Fausto Saporito
Thanks Jürgen. 2015-03-31 16:18 GMT+02:00 Juergen Sauermann : > Hi Fausto, > > the bug should be fixed in SVN 582. It was an old ⎕-function (⎕PT) that was > removed in the meantime. > > /// Jürgen > > > On 03/31/2015 11:22 AM, Fausto Saporito wrote: > > Hello Jürgen, > > thanks for the clarificat

[Bug-apl] planning of future features

2015-03-31 Thread Fausto Saporito
Hello, I'm trying to convert an old workspace (designed I suppose for Dyalog APL) related to multi precision arithmetic operation. It uses these non standard feature: 1) quad-D 2) quad-FMT 3) quad-SIGNAL The first one is quite trivial, the other two are more complex. Is there any way to replica

Re: [Bug-apl] Macintosh compile errors and warnings SVN 582

2015-03-31 Thread Juergen Sauermann
Hi Peter and Fausto, thanks. I have tried to catch this in ./configure. SVN 583. /// Jürgen On 03/31/2015 04:27 PM, Peter Teeson wrote: Hi Jürgen: Almost fixed… but some new errors & warnings…:-}

Re: [Bug-apl] Macintosh compile errors and warnings SVN 583

2015-03-31 Thread Peter Teeson
GNUAPL Group Shell Script Invocation Error Group /Volumes/Data/Development/MyProjects/GNUAPL/apl-svn/src/TempFileWrapper.cc:45:5: No matching function for call to 'strcpy' /Volumes/Data/Development/MyProjects/GNUAPL/apl-svn/src/TempFileWrapper.cc:47:10: No matching function for call to 'mkstemp'

Re: [Bug-apl] planning of future features

2015-03-31 Thread Juergen Sauermann
Hi Fausto, Dyalog ⎕SIGNAL seems to be ⎕ES in IBM APL2 and in GNU APL. Dyalog ⎕FMT is a little too FORTRANish for my taste. However dyadic ⍕ ("Format by example") in IBM APL2 and in GNU APL provide similar functionality (Dyalog also seems

Re: [Bug-apl] Macintosh compile errors and warnings SVN 583

2015-03-31 Thread Juergen Sauermann
Hi Peter, Elias, I have created something that MAY compile. However: man mkstemp says:     mkstemps(): unstandardized, but appears on several other systems. man tmpnam (the one I used instead) says:    Never use this functi

[Bug-apl] SVN 585 clean build

2015-03-31 Thread David Lamkins
I did a clean checkout of SVN 585 followed by configure and make. The file src/buildtag.hh is neither present nor created, which causes the build to fail. -- "The secret to creativity is knowing how to hide your sources." Albert Einstein http://soundcloud.com/davidlamkins http://reverbnatio

Re: [Bug-apl] Macintosh compile errors and warnings SVN 583

2015-03-31 Thread Peter Teeson
Hi Jürgen: On 2015-03-31, at 12:53 PM, Juergen Sauermann wrote: > Peter: Chances are that on your box mkstemp is declared in > /usr/include/unistd.h instead of > /usr/include/stdlib.h. If that is so then please let me know and I will > revert the code and #include it. You are correct….. The

[Bug-apl] The ' 2 ⎕TF ' bug

2015-03-31 Thread Christian Robert
var←'kelvin' (,'v') 'some text' D var ┌3───┐ │┌6─┐ ┌→┐ ┌9┐│ ││kelvin│ │v│ │some text││ │└──┘ └─┘ └─┘│ └∊───┘ 2 ⎕tf 'var' var←'kelvin' 'v' 'some text' ⍎2 ⎕tf 'var' D var ┌3─┐ │┌6─┐

[Bug-apl] The ' 2 ⎕TF ' bug, more info

2015-03-31 Thread Christian Robert
var←'kelvin' (,'v') 'some text' D var ┌3───┐ │┌6─┐ ┌→┐ ┌9┐│ ││kelvin│ │v│ │some text││ │└──┘ └─┘ └─┘│ └∊───┘ 2 ⎕tf 'var' var←'kelvin' 'v' 'some text' ⍎2 ⎕tf 'var' D var ┌3─┐ │┌6─┐

Re: [Bug-apl] Macintosh compile errors and warnings SVN 583

2015-03-31 Thread Elias Mårtenson
I would much rather completely eliminate the use of the temporary file here. The reason it's used is so that I can use InputFile::files_todo.insert() on it. Is there an alternative method by which I can queue a bunch of input lines to be read by the interpreter? Regards, Elias On 1 April 2015 at