Update of /project/cells-gtk/cvsroot/root/gtk-ffi In directory common-lisp.net:/tmp/cvs-serv16164/root/gtk-ffi
Modified Files: gtk-ffi.asd Log Message: Start of work to get SBCL port working. Unfinished (but it doesn't look too hard!). Add load of gdk-other.lisp Date: Sat Oct 8 16:46:43 2005 Author: pdenno
Index: root/gtk-ffi/gtk-ffi.asd diff -u root/gtk-ffi/gtk-ffi.asd:1.6 root/gtk-ffi/gtk-ffi.asd:1.7 --- root/gtk-ffi/gtk-ffi.asd:1.6 Sun May 29 23:18:24 2005 +++ root/gtk-ffi/gtk-ffi.asd Sat Oct 8 16:46:42 2005 @@ -13,12 +13,12 @@ #+(or win32 mswindows) (setf *gtk-lib-path* "C:/Program Files/Common Files/GTK/2.0/bin/")
;;; This need not be specified for cmucl (leave as a null string). -#+cmu(setf *gtk-lib-path* "/usr/lib/") -;#+cmu(setf *gtk-lib-path* "/opt/gnome/lib/") ; For my Suse machine +;#+cmu(setf *gtk-lib-path* "/usr/lib/") +#+(OR cmu sbcl)(setf *gtk-lib-path* "/opt/gnome/lib/") ; For my Suse machine
;;; Specify for Lispworks. -#-(or macosx win32 mswindows cmu) (setf *gtk-lib-path* "/usr/lib/") -;#-(or macosx win32 mswindows cmu) (setf *gtk-lib-path* "/opt/gnome/lib/") ; For my Suse machine +;#-(or macosx win32 mswindows cmu) (setf *gtk-lib-path* "/usr/lib/") +#-(or macosx win32 mswindows cmu) (setf *gtk-lib-path* "/opt/gnome/lib/") ; For my Suse machine
;;; Step 2 -- If you built libcellsgtk.so, uncomment the next line. ;(pushnew :libcellsgtk *features*) @@ -30,6 +30,7 @@ ((:file "gtk-ffi") (:file "gtk-core" :depends-on ("gtk-ffi")) (:file "gtk-other" :depends-on ("gtk-ffi")) + (:file "gdk-other" :depends-on ("gtk-ffi")) (:file "gtk-button" :depends-on ("gtk-ffi")) (:file "gtk-tool" :depends-on ("gtk-ffi")) (:file "gtk-menu" :depends-on ("gtk-ffi"))