From hollystyles at fastmail.co.uk Sun May 18 09:17:12 2008 From: hollystyles at fastmail.co.uk (Holly Styles) Date: Sun, 18 May 2008 10:17:12 +0100 Subject: [lispy-devel] Hi Lispy - install problems Message-ID: <1211102232.13053.1253752753@webmail.messagingengine.com> Hi, This project looks like just what I need. But I'm having trouble unfortunately. I have Cygwin, Emacs2.2, SLIME2.0 and SBCL1.0.13 set up on WindowsXP. I downloaded the Lispy package um system? (I'm a Lisp noob!) And added the necessary incantations to ~/.sbclrc as per the guide. However, upon entering the REPL and typing the following: (asdf:oos 'asdf:load-op :lispy) After much verbose output, it enters the debugger displaying the following (is it a path thing? it can't find it or what?) Hope someone can help me out thanks.: Unable to load foreign library (LIBSSL). Error opening shared object "libssl32.dll": 126. [Condition of type CFFI:LOAD-FOREIGN-LIBRARY-ERROR] Restarts: 0: [RETRY] Try loading the foreign library again. 1: [USE-VALUE] Use another library instead. 2: [RETRY] Retry performing # on #. 3: [ACCEPT] Continue, treating # on # as having been successful. 4: [ABORT-REQUEST] Abort handling SLIME request. 5: [ABORT] Exit debugger, returning to top level. Backtrace: 0: (CFFI::FL-ERROR "Unable to load foreign library (~A).~% ~A") 1: (CFFI::LOAD-FOREIGN-LIBRARY-PATH CL+SSL::LIBSSL "libssl32.dll") 2: (CFFI:LOAD-FOREIGN-LIBRARY CL+SSL::LIBSSL) 3: (SB-FASL::LOAD-FASL-GROUP #) 4: ((FLET SB-THREAD::WITH-RECURSIVE-LOCK-THUNK)) 5: (SB-FASL::LOAD-AS-FASL # NIL #) 6: (SB-FASL::%LOAD #) 7: (SB-FASL::%LOAD #P"c:\\LISP\\LISPY\\lispy-all-0.4\\cl+ssl-2007-07-07\\reload.fasl") 8: (LOAD #P"c:\\LISP\\LISPY\\lispy-all-0.4\\cl+ssl-2007-07-07\\reload.fasl") 9: ((SB-PCL::FAST-METHOD ASDF:PERFORM (ASDF:LOAD-OP ASDF:CL-SOURCE-FILE)) # # # #) 10: ((LAMBDA (SB-PCL::.PV. SB-PCL::.NEXT-METHOD-CALL. SB-PCL::.ARG0. SB-PCL::.ARG1.)) # # # #) 11: ((LAMBDA NIL)) 12: ((FLET SB-THREAD::WITH-RECURSIVE-LOCK-THUNK)) 13: (SB-C::%WITH-COMPILATION-UNIT #) 14: (ASDF:OPERATE ASDF:LOAD-OP :LISPY) 15: (SB-INT:SIMPLE-EVAL-IN-LEXENV (ASDF:OOS (QUOTE ASDF:LOAD-OP) :LISPY) #) 16: (SWANK::EVAL-REGION "(asdf:oos 'asdf:load-op :lispy) " T) 17: ((LAMBDA NIL)) 18: ((SB-PCL::FAST-METHOD SWANK-BACKEND:CALL-WITH-SYNTAX-HOOKS (T)) # # #) 19: (SWANK::CALL-WITH-BUFFER-SYNTAX #) 20: (SB-INT:SIMPLE-EVAL-IN-LEXENV (SWANK:LISTENER-EVAL "(asdf:oos 'asdf:load-op :lispy) ") #) 21: ((LAMBDA NIL)) 22: ((SB-PCL::FAST-METHOD SWANK-BACKEND:CALL-WITH-DEBUGGER-HOOK (T T)) # # # #) 23: ((LAMBDA NIL)) 24: ((SB-PCL::FAST-METHOD SWANK-BACKEND:CALL-WITH-DEBUGGER-HOOK (T T)) # # # #) 25: (SWANK::CALL-WITH-REDIRECTED-IO # #) 26: (SWANK::CALL-WITH-CONNECTION # #) 27: (SWANK::HANDLE-REQUEST #) 28: (SWANK::SIMPLE-SERVE-REQUESTS #) 29: (SWANK::SERVE-CONNECTION # NIL NIL :ISO-LATIN-1-UNIX) 30: (SWANK::SETUP-SERVER 0 # NIL NIL :ISO-LATIN-1-UNIX) 31: (SWANK:START-SERVER "c:/DOCUME~1/Owner/LOCALS~1/Temp/slime.3272") 32: (SB-INT:SIMPLE-EVAL-IN-LEXENV (SWANK:START-SERVER "c:/DOCUME~1/Owner/LOCALS~1/Temp/slime.3272" :EXTERNAL-FORMAT :ISO-LATIN-1-UNIX) #) 33: (INTERACTIVE-EVAL (SWANK:START-SERVER "c:/DOCUME~1/Owner/LOCALS~1/Temp/slime.3272" :EXTERNAL-FORMAT :ISO-LATIN-1-UNIX)) 34: (SB-IMPL::REPL-FUN NIL) 35: (SB-IMPL::REPL-FUN NIL) 36: ((LAMBDA NIL)) 37: ((LAMBDA NIL)) 38: (SB-IMPL::%WITH-REBOUND-IO-SYNTAX #) 39: (SB-IMPL::TOPLEVEL-REPL NIL) 40: (SB-IMPL::TOPLEVEL-INIT) 41: ((LABELS SB-IMPL::RESTART-LISP)) 42: ("foreign function: #x4113F5") 43: ("foreign function: #x40A162") -- Holly Styles http://hollystyles.blogspot.com -- http://www.fastmail.fm - I mean, what is it about a decent email service? From mkennedy at common-lisp.net Mon May 19 02:34:12 2008 From: mkennedy at common-lisp.net (Matthew Kennedy) Date: Sun, 18 May 2008 21:34:12 -0500 Subject: [lispy-devel] Hi Lispy - install problems In-Reply-To: <1211102232.13053.1253752753@webmail.messagingengine.com> References: <1211102232.13053.1253752753@webmail.messagingengine.com> Message-ID: <9c1134b50805181934p6b47c854uec2f70b791d0b149@mail.gmail.com> On Sun, May 18, 2008 at 4:17 AM, Holly Styles wrote: ... > > Unable to load foreign library (LIBSSL). > Error opening shared object "libssl32.dll": > 126. > [Condition of type CFFI:LOAD-FOREIGN-LIBRARY-ERROR] > Hi Holly, Do you have OpenSSL installed? I've been using the Win32 OpenSSL v0.9.8g Light installer from http://www.slproweb.com/products/Win32OpenSSL.html. I used the default installation paths for OpenSSL when installing. Sorry the OpenSSL requirement wasn't detailed in the Lispy user guide. I'll make a note to add that to the documentation. Matt