Re: Missing o in -lcrypt in scr/Makefile

2013-06-02 Thread Alexander Burger
Hi Jon, OK, so for now I moved -lcrypt flag to a Makefile variable LCRYPT, and assigned -lcrypto for Darwin and the BSD family. Though it doesn't give strong encryption at the moment, at least it compiles and is better than nothing ;-) ♪♫ Alex -- UNSUBSCRIBE:

Re: Missing o in -lcrypt in scr/Makefile

2013-06-01 Thread Jon Kleiser
Hi Alex, Hi Jon, $ ./pil lib/adm.l + : (de *Salt 16 . $6$@1$) - *Salt : (passwd somestring) - $6bsuufIMFxJE So it seems that the 'passwd' function is working in 32-bit PicoLisp on Mac, right? Hmm, yes and no ... It works, but obviously only with the (worthless) DES algorithm,

Re: Missing o in -lcrypt in scr/Makefile

2013-05-30 Thread Jon Kleiser
Hi Alex, Hi Jon, The big question is: Did it only help to *build* it, or does it also *work* (i.e. does the 'passwd' function function return an encrypted password if '*Salt' is set, see my previous mail)? ?? Alex Can I test this 'passwd' function in 32-bit PicoLisp? (I may not find

Re: Missing o in -lcrypt in scr/Makefile

2013-05-30 Thread Alexander Burger
Hi Jon, $ ./pil lib/adm.l + : (de *Salt 16 . $6$@1$) - *Salt : (passwd somestring) - $6bsuufIMFxJE So it seems that the 'passwd' function is working in 32-bit PicoLisp on Mac, right? Hmm, yes and no ... It works, but obviously only with the (worthless) DES algorithm, because the

Re: Missing o in -lcrypt in scr/Makefile

2013-05-27 Thread Jon Kleiser
Hi Alex, On 27-05-13 07:42 , Alexander Burger wrote: Hi Jon, 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). The big question is: Did it only help to *build* it, or does it also *work* (i.e. does the 'passwd' function

Re: Missing o in -lcrypt in scr/Makefile

2013-05-27 Thread Alexander Burger
Hi Jon, The big question is: Did it only help to *build* it, or does it also *work* (i.e. does the 'passwd' function function return an encrypted password if '*Salt' is set, see my previous mail)? ♪♫ Alex Can I test this 'passwd' function in 32-bit PicoLisp? (I may not find any time for

Re: Missing o in -lcrypt in scr/Makefile

2013-05-27 Thread Alexander Burger
On Mon, May 27, 2013 at 11:06:43AM +0200, Alexander Burger wrote: On failure (for example, if it is the wrong crypt library), you should get an error message about undefined 'ext:Crypt'. Both versions (i.e. 'ext:Crypt' in pil32 or the native call to crypt() in pil64) call the same library

Re: Missing o in -lcrypt in scr/Makefile

2013-05-26 Thread Alexander Burger
Hi Jon, 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). The big question is: Did it only help to *build* it, or does it also *work* (i.e. does the 'passwd' function function return an encrypted password if '*Salt' is

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/Makefile

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 a...@software-lab.de 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

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 it is -lcrypt