Re: Issues with drop of a scalar argument

2020-04-27 Thread Jay Foad
In Dyalog this is part of a consistent extension whereby you're allowed to use a "short left argument" to Take and Drop (and Squad). For example 3↑mat returns the first 3 rows of mat, and 3↓mat removes the first 3 rows. https://help.dyalog.com/13.0/index.html?page=html%2Frelnotes13.0%2Fv13.0%20tak

Building on openbsd fails

2020-04-27 Thread Otto Diesenbacher-Reinmüller
Hi APLers, see below, building current (revision 1271) gnu-apl fails on OpenBSD (current snapshot - 6.7 GENERIC.MP#155 amd64). Do I miss any dependencies? lobsang ~/install/gnu-apl/trunk$ svn update Updating '.': At revision 1271. lobsang ~/install/gnu-apl/trunk$ gmake gmake all-recursive gmake[

Re: Building on openbsd fails

2020-04-27 Thread Brian Callahan
Hello Otto -- You are trying to build with the in-base g++ (aka gcc-4.2.1). You need to run the configure script as it is written in the README-6-Porting: CC=cc CXX=c++ CPPFLAGS="-I/usr/local/include -I/usr/X11R6/include" LDFLAGS="-L/usr/local/lib -L/usr/X11R6/lib" ./configure This will make s

Re: Building on openbsd fails

2020-04-27 Thread Dr . Jürgen Sauermann
Hi Otto, I believe that I have fixed the errors below (*SVN 1272*). However there could be more coming since the build didn't go through. Please let me know if so. Best Regards, Jürgen On 4/27/20 1:38 PM, Otto Diesenbacher-Reinmüller wrote: > Hi APLers, > > see below, building current (revisi

Re: Building on openbsd fails

2020-04-27 Thread Otto Diesenbacher-Reinmüller
Hi Brian, Brian Callahan writes: > Hello Otto -- > > You are trying to build with the in-base g++ (aka gcc-4.2.1). You >need to run the configure script as it is written in the >README-6-Porting: CC=cc CXX=c++ CPPFLAGS="-I/usr/local/include >-I/usr/X11R6/include" LDFLAGS="-L/usr/local/lib -L/us

Re: Bugs in extended transfer form

2020-04-27 Thread Dr . Jürgen Sauermann
Hi Kacper, I believe this is fixed now, SVN 1273 . All GNU APL users please note the following. The fix for 2 ⎕TF also affects the )IN and )OUT commands (they use 2 ⎕TF internally). I have tried my best to keep everything backward compat

Keyboard layout and fonts for NetBSD-9/X11R7

2020-04-27 Thread Alexander Shendi (Web.DE)
Dear List, I feel seriously intellectually challenged. I have compiled gnu apl under NetBSD (SVN-1271) and all went fine. But I'm just not up to configuring the X Window System to support APL input and output. These are the steps I've taken so far: 1. set the locale to en_US. UTF-8 (by setting

Re: Keyboard layout and fonts for NetBSD-9/X11R7

2020-04-27 Thread Blake McBride
Hi Alexander, I know what you mean. I initially went through too much myself getting it all to work. Eventually, David Lamkins wrote a simple program called AKT. It does all the translation for you. I now use GNU APL on Linux with zero special configuration. It just works. I can't speak for B

Re: Keyboard layout and fonts for NetBSD-9/X11R7

2020-04-27 Thread Xiao-Yong Jin
Below is what I have for FreeBSD. It uses xkeyboard-config. 8< $ cat /usr/local/etc/X11/xorg.conf.d/kbd-layout-dvp-apl.conf Section "InputClass" Identifier "KeyboardDefaults" MatchIsKeyboard "on" Option "XkbLayout" "us,apl" Option "XkbModel" "pc104"