Luís Oliveira schrieb:
On Sat, Jun 28, 2008 at 10:51 AM, Thomas Karolski Thomas.Karolski@googlemail.com wrote:
Anyone got an idea as to how to solve this problem?
Make sure you have the latest version of alexandria from darcs and recompile with (asdf:oos 'asdf:loas-op :cl-opengl :force t).
Ah yes. Turns out I only took the zipped version from cliki.net and not the one from the darcs repo. However, now I get this error when trying to compile glut (without the :force T option): ------------------------------------------------------------------ COMMON-LISP-USER> (asdf:oos 'asdf:load-op :cl-glut)
Undefined alien: "glutSetOption" [Condition of type UNDEFINED-ALIEN-ERROR] 0: [RETRY] Retry performing #<ASDF:LOAD-OP NIL {B707439}> on #<ASDF:CL-SOURCE-FILE "state" {C0DACC1}>. 1: [ACCEPT] Continue, treating #<ASDF:LOAD-OP NIL {B707439}> on #<ASDF:CL-SOURCE-FILE "state" {C0DACC1}> as having been successful. 2: [ABORT] Return to SLIME's top level. 3: [CLOSE-CONNECTION] Close SLIME connection 4: [ABORT] Exit debugger, returning to top level. ]> 2 ; ; compilation unit aborted ; caught 1 fatal ERROR condition
------------------------------------------------------------------ ... and with the :force T option ------------------------------------------------------------------ COMMON-LISP-USER> (asdf:oos 'asdf:load-op :cl-glut :force t)
; compiling file "G:\Programme\eclipse\plugins\jasko.tim.lisp.libs_1.0.0\libs\alexandria\package.lisp" (written 28 JUN 2008 01:21:08 PM): ; compiling (DEFPACKAGE :ALEXANDRIA.0.DEV ...) ; ; caught WARNING: ; ALEXANDRIA.0.DEV also exports the following symbols: ; (ALEXANDRIA.0.DEV:POSITIVE-DOUBLE-FLOAT ALEXANDRIA.0.DEV:NEGATIVE-FLOAT ; ALEXANDRIA.0.DEV:NEGATIVE-LONG-FLOAT-P ALEXANDRIA.0.DEV:NON-POSITIVE-FIXNUM ; ALEXANDRIA.0.DEV:NEGATIVE-SINGLE-FLOAT-P ; ALEXANDRIA.0.DEV:NON-POSITIVE-SINGLE-FLOAT ; ALEXANDRIA.0.DEV:NON-NEGATIVE-SINGLE-FLOAT-P ; ALEXANDRIA.0.DEV:NON-NEGATIVE-DOUBLE-FLOAT ; ALEXANDRIA.0.DEV:NON-POSITIVE-REAL ALEXANDRIA.0.DEV:NEGATIVE-RATIONAL ; ALEXANDRIA.0.DEV:NON-NEGATIVE-REAL-P ALEXANDRIA.0.DEV:NON-POSITIVE-RATIONAL ; ...) ; See also: ; The ANSI Standard, Macro DEFPACKAGE
; G:\Programme\eclipse\plugins\jasko.tim.lisp.libs_1.0.0\libs\alexandria\package.fasl written ; compilation finished in 0:00:00 WARNING: COMPILE-FILE warned while performing #<COMPILE-OP (:FORCE NIL) {C211D31}> on #<CL-SOURCE-FILE "package" {AE346F1}>. erred while invoking #<COMPILE-OP (:FORCE NIL) {C211D31}> on #<CL-SOURCE-FILE "package" {AE346F1}> [Condition of type ASDF:COMPILE-FAILED] 0: [RETRY] Retry performing #<ASDF:COMPILE-OP (:FORCE NIL) {C211D31}> on #<ASDF:CL-SOURCE-FILE "package" {AE346F1}>. 1: [ACCEPT] Continue, treating #<ASDF:COMPILE-OP (:FORCE NIL) {C211D31}> on #<ASDF:CL-SOURCE-FILE "package" {AE346F1}> as having been successful. 2: [ABORT] Return to SLIME's top level. 3: [CLOSE-CONNECTION] Close SLIME connection 4: [ABORT] Exit debugger, returning to top level. ]> 2 ; ; compilation unit aborted ; caught 1 fatal ERROR condition ; caught 1 WARNING condition ------------------------------------------------------------------ Any help on this?
Thanks, Thomas K.