Unsubscribe

2012-02-19 Thread Andrei Ivushkin

Good bye Andrei Ivushkin aivush...@gmail.com :-(
You are now unsubscribed


--
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe


Re: Pico Bus error with OpenGL on Mac

2009-06-17 Thread Andrei Ivushkin

Try other way: enable core dumps
ulimit -c unlimited

then run gltst, bus error will produce core file.
Inspect it with gdb

gdb program core

If program's command line specified is wrong, gdb will tell you the right one 
read from core file.


Randall Dow написав(ла):

Hi Alex, Jon,

I just installed the current testing picoLisp (now: 17.6.09) and the
gl libraries.
I get exactly your described behavior, Jon, gltst.l immediately
produces a bus error signal.

I then started it with gdb - and it runs fine - no buserror core dump.  Hmmm.

No more time right now.

Cheers,
- Rand

On Tue, Jun 16, 2009 at 11:51 AM, Randall Dow randall@gmail.com wrote:

I'll get everything installed, and let you know if I can reproduce the problem.

--
UNSUBSCRIBE: mailto:picol...@software-lab.de?subject=unsubscribe


Re: behavior of +Need

2008-10-04 Thread Andrei Ivushkin
Yes, there is some trouble with it, IMHO. I'm afraid this constraint
isn't implemented yet.

I've investigated that lib/db.l contains class +Need that has the only
method mis
that shows in some way (don't know yet how) 'Input required'. Many
other classes have the same method, so it seems to be some way of
validating. Unfortunately, neither source nor docs have any comments
on this. Maybe the Author can explain.
-- 
UNSUBSCRIBE: mailto:[EMAIL PROTECTED]


Re: (mime)

2008-08-01 Thread Andrei Ivushkin

Yes, it works now like this:

(load lib/http.l lib/xhtml.l lib/form.l)
(mime svg image/svg+xml 1)

(de start ()
(html NIL SVG test lib.css NIL
(prinl object data=\test.svg\ width=\400\ height=\400\/) ) )

(server 8080 @start)

Many thanks!!!
--
UNSUBSCRIBE: mailto:[EMAIL PROTECTED]