[cello-cvs] CVS cello/cl-openal

fgoenninger fgoenninger at common-lisp.net
Thu Aug 24 07:54:23 UTC 2006


Update of /project/cello/cvsroot/cello/cl-openal
In directory clnet:/tmp/cvs-serv3439

Modified Files:
	cl-openal-init.lisp 
Log Message:
Changed: fn xoa is leading to malfunction on OS X (can't unload dylibs)

--- /project/cello/cvsroot/cello/cl-openal/cl-openal-init.lisp	2006/06/03 12:06:00	1.5
+++ /project/cello/cvsroot/cello/cl-openal/cl-openal-init.lisp	2006/08/24 07:54:23	1.6
@@ -31,11 +31,12 @@
   (when *openal-initialized-p*
     (return-from cl-openal-init t))
 
-  (xoa)
+#-macosx (xoa)
 
   (assert (use-foreign-library OpenAL)
     () "Failed to load OpenAL dynamic lib")
-  
+
+#-macosx
   (assert (use-foreign-library ALut)
     () "Failed to load alut dynamic lib")
   
@@ -94,4 +95,3 @@
         (progn
           #+shh (print (list "al-chk OK:" error$)))
       (break "~&Error< ~d > on ~a" status error$))))
-




More information about the Cello-cvs mailing list