Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - dwilde1

#1
newLISP and the O.S. / which wish on FreeBSD
May 17, 2004, 10:34:42 AM
Actually, it's a little crazier than that. On FreeBSd, now, wish is identified by version. WHen I ran /usr/local/bin/wish newlisp-tk, I go back an error message stating that I needed to choose which wish!
QuoteIn FreeBSD, wish is named with a version number.  This is because

different versions of wish are not compatible with each other and

they can not all be called "wish"!  You may need multiple versions

installed because a given port may depend on a specific version.



On your system, wish is installed under at least the following names:



wish8.2

wish8.3

wishstep8.0


So, I changed the sh-bang to



    #!/usr/local/bin/wish8.3



and it works. [/quote]
#2
newLISP and the O.S. / FreeBSD TK interface
May 15, 2004, 12:34:57 PM
Okay, got TCL 8.4.5 installed and pointed wish to the right place in newlisp-tk, changed #! to /usr/local/bin/wish



I now get this error:



/usr/bin/newlisp-tk: line 145: syntax error near unexpected token `Ide(i'

/usr/bin/newlisp-tk: line 145: `set Ide(imageDir)           "/usr/share/newlisp/newlisp-tk/images"'



It successfully interpreted the first script line, 'set IDEversion... ', but died on the second.
#3
newLISP and the O.S. / FreeBSD compilation
May 15, 2004, 08:09:47 AM
Thanks, Lutz! I think I'll go play a bit... :D[/quote]
#4
newLISP and the O.S. / FreeBSD compilation
May 14, 2004, 02:15:53 PM
on FreeBSD 4.8-STABLE/ 4.9-STABLE w/ gcc 2.95



Here's what I did:



1) use gmake, as in 'gmake bsd'

2) edit makefile_bsd to remove '-pedantic'



The warning was 'ANSI C does not support long long'



However, even though GCC claims to have extensions to support long long,

I seem to get the same 10 signifgicant figures even with the warnings. So, I put -pedantic back in, JIC there's something else that would trip me.