[cello-cvs] CVS cello/cl-ftgl
fgoenninger
fgoenninger at common-lisp.net
Wed Aug 23 20:11:18 UTC 2006
Update of /project/cello/cvsroot/cello/cl-ftgl
In directory clnet:/tmp/cvs-serv27734
Modified Files:
cl-ftgl.lisp
Log Message:
Changed: CFFI definition of libFTGLint.dylib (OS X only)
Changed: +macosx instead of +darwin for OS X code used.
--- /project/cello/cvsroot/cello/cl-ftgl/cl-ftgl.lisp 2006/08/21 04:28:27 1.8
+++ /project/cello/cvsroot/cello/cl-ftgl/cl-ftgl.lisp 2006/08/23 20:11:18 1.9
@@ -20,7 +20,7 @@
;;; FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
;;; IN THE SOFTWARE.
-;;; $Header: /project/cello/cvsroot/cello/cl-ftgl/cl-ftgl.lisp,v 1.8 2006/08/21 04:28:27 ktilton Exp $
+;;; $Header: /project/cello/cvsroot/cello/cl-ftgl/cl-ftgl.lisp,v 1.9 2006/08/23 20:11:18 fgoenninger Exp $
(defpackage #:cl-ftgl
(:nicknames #:ftgl)
@@ -51,7 +51,7 @@
(in-package :cl-ftgl)
(define-foreign-library FTGL
- (:darwin (:or (:framework "FTGL") "libftgl.dylib"))
+ (:darwin (:or "/opt/common-lisp/cello/cl-ftgl/ftgl-int/libFTGLint.dylib"))
(:windows (:or "/0dev/user/dynlib/ftgl_dynamic_MTD_d.dll")))
(use-foreign-library FTGL)
@@ -119,8 +119,10 @@
'(:absolute "windows" "fonts")
#+linux
'(:absolute "usr" "share" "fonts" "truetype")
- #+darwin
- '(:absolute "Library" "Fonts")))
+ #+macosx
+ '(:absolute "Library" "Fonts")
+ ))
+
;; ----------------------------------------------------------------------------
;; FUNCTIONS/METHODS
;; ----------------------------------------------------------------------------
More information about the Cello-cvs
mailing list