Re: Small URL problem at Cloud9

2013-05-24 Thread Jon Kleiser
Hi again, There are still problems with my 'default' script. One is the use of "@lib.css" (2nd line under "(html NIL"); it seems to make my browser look for "http://localhost:8080/@lib.css";. For some reason my browser is also looking for "http://localhost:8080/@lib/form.js";, but not always.

Re: Quick try at building 64-bit on OSX 10.8.3

2013-05-24 Thread Alexander Burger
Hi Jorge, > A quick question, what's the status of the *FPic variant on Linux? Is it > working? If you mean the 64-bit version: Sorry, not at all ;-) > If it works properly, I guess I could get it running on OSX as well when I > find some spare time...-- That would be great! I must say that

Re: Small URL problem at Cloud9

2013-05-24 Thread Alexander Burger
Hi Jon, > "@lib.css" (2nd line under "(html NIL"); it seems to make my browser > look for "http://localhost:8080/@lib.css";. For some reason my > browser is also looking for "http://localhost:8080/@lib/form.js";, Why is this a problem? That is the intended behavior: The browser requests some "@li

Re: Small URL problem at Cloud9

2013-05-24 Thread Jon Kleiser
Hi Alex, On 24-05-13 10:54 , Alexander Burger wrote: Hi Jon, "@lib.css" (2nd line under "(html NIL"); it seems to make my browser look for "http://localhost:8080/@lib.css";. For some reason my browser is also looking for "http://localhost:8080/@lib/form.js";, Why is this a problem? That is th

Re: Small URL problem at Cloud9

2013-05-24 Thread Alexander Burger
Hi Jon, > >>"@lib.css" (2nd line under "(html NIL"); it seems to make my browser > >>look for "http://localhost:8080/@lib.css";. For some reason my > ... > Sorry, I wasn't clear. This happens when I try to access > "http://demo-project.jkleiser.c9.io/doc/";. I still don't get the point. You have

Re: Quick try at building 64-bit on OSX 10.8.3

2013-05-24 Thread Jorge Acereda MaciĆ”
Hi Alex, On May 24, 2013, at 10:49 AM, Alexander Burger wrote: >> >> If it works properly, I guess I could get it running on OSX as well when I >> find some spare time...-- > > That would be great! I must say that I gave up on that, see e.g. > > http://www.mail-archive.com/picolisp@software

Re: Small URL problem at Cloud9

2013-05-24 Thread Jon Kleiser
Hi Alex, On 24-05-13 11:34 , Alexander Burger wrote: Hi Jon, "@lib.css" (2nd line under "(html NIL"); it seems to make my browser look for "http://localhost:8080/@lib.css";. For some reason my ... Sorry, I wasn't clear. This happens when I try to access "http://demo-project.jkleiser.c9.io/doc

Re: Small URL problem at Cloud9

2013-05-24 Thread Alexander Burger
Hi Jon, > The problem is that the browser for some reason tries to get the > @lib.css (and @lib/form.js) from localhost:8080 while the main > request was directed to c9.io. Ah, I see. So, again, it seems to be what I said before, in that something is confused about the "mailto:picolisp@software-

Re: Small URL problem at Cloud9

2013-05-24 Thread Jon Kleiser
Hi Alex, On 24-05-13 12:38 , Alexander Burger wrote: Hi Jon, The problem is that the browser for some reason tries to get the @lib.css (and @lib/form.js) from localhost:8080 while the main request was directed to c9.io. Ah, I see. So, again, it seems to be what I said before, in that somethi

Missing "o" in "-lcrypt" in scr/Makefile

2013-05-24 Thread Jon Kleiser
Hi, I believe there is a missing "o" at the end of line 104 in the current scr/Makefile. Adding the "o" to make it "-lcrypto" helped me build 32-bit PicoLisp, v. 3.1.2.9 C (on Mac OS X 10.8.3). /Jon -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Re: Missing "o" in "-lcrypt" in scr/Makefile

2013-05-24 Thread Alexander Burger
Hi Jon, > I believe there is a missing "o" at the end of line 104 in the > current scr/Makefile. Adding the "o" to make it "-lcrypto" helped me > build 32-bit PicoLisp, v. 3.1.2.9 C (on Mac OS X 10.8.3). Under Linux it is "-lcrypt" (according to the man page of crypt(3)). Seems we must make src/M

Re: Missing "o" in "-lcrypt" in scr/Makefile

2013-05-24 Thread Tamas Herman
On Fri, May 24, 2013 at 10:11 PM, Alexander Burger wrote: > Does anybody know the difference between libcrypt.so and libcrypto.so? i don't know whats the difference, but what's common is that neither of them are written in picolisp... ;) -- tom -- UNSUBSCRIBE: mailto:picolisp@software-lab.de

Re: Missing "o" in "-lcrypt" in scr/Makefile

2013-05-24 Thread Jorge Acereda MaciĆ”
On May 24, 2013, at 4:11 PM, Alexander Burger wrote: > Hi Jon, > >> I believe there is a missing "o" at the end of line 104 in the >> current scr/Makefile. Adding the "o" to make it "-lcrypto" helped me >> build 32-bit PicoLisp, v. 3.1.2.9 C (on Mac OS X 10.8.3). > > Under Linux it is "-lcrypt

Re: Missing "o" in "-lcrypt" in scr/Makefile

2013-05-24 Thread Alexander Burger
On Fri, May 24, 2013 at 04:11:54PM +0200, Alexander Burger wrote: > Hi Jon, > > > I believe there is a missing "o" at the end of line 104 in the > > current scr/Makefile. Adding the "o" to make it "-lcrypto" helped me > > build 32-bit PicoLisp, v. 3.1.2.9 C (on Mac OS X 10.8.3). > > Under Linux i