Page 1 of 1

release update newLISP v.9.4.3

Posted: Sun Jul 13, 2008 8:29 pm
by Lutz
• this is a bug fix release update for the 9.4 release

for files and release notes see:

http://www.newlisp.org/index.cgi?page=Downloads


* Edited it..(norman)

Posted: Mon Jul 14, 2008 5:49 am
by m i c h a e l
Lutz,

Your link is missing the h in http :-)

m i c h a e l

Posted: Fri Jul 18, 2008 7:20 am
by newdep
Hi Lutz...

The normal make linux_readline works.. but the make linux_lib fails..

Linux Slackware 11 (kernel 2.4.33)



$ make linux_lib
make -f makefile_linux_lib
make[1]: Entering directory `/newlisp-9.4.3'
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY newlisp.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY nl-symbol.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY nl-math.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY nl-list.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY nl-liststr.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY nl-string.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY nl-filesys.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY nl-sock.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY nl-import.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY nl-xml.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY nl-web.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY nl-matrix.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY nl-debug.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY pcre.c
gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -DLINUX -DLIBRARY unix-lib.c
unix-lib.c: In function `newlispEvalStr':
unix-lib.c:76: error: too few arguments to function `executeSymbol'
make[1]: *** [unix-lib.o] Error 1
make[1]: Leaving directory `/newlisp-9.4.3'
make: *** [linux_lib] Error 2

Posted: Fri Jul 18, 2008 5:47 pm
by Lutz
In file unix-lib.c line 76 change:

Code: Select all

executeSymbol(errorEvent, NULL);
to

Code: Select all

executeSymbol(errorEvent, NULL, NULL);