X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/b030f2d9b679b9b18db0356ab0f2a2086ea61939..13955a62d70249e4995ec05a1eb6844849756460:/gdk/gdktypes.lisp?ds=sidebyside diff --git a/gdk/gdktypes.lisp b/gdk/gdktypes.lisp index a08da2e..bbc2f96 100644 --- a/gdk/gdktypes.lisp +++ b/gdk/gdktypes.lisp @@ -15,13 +15,21 @@ ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;; $Id: gdktypes.lisp,v 1.7 2002-03-19 19:06:22 espen Exp $ +;; $Id: gdktypes.lisp,v 1.8 2004-11-06 21:39:58 espen Exp $ (in-package "GDK") (eval-when (:compile-toplevel :load-toplevel :execute) - (init-types-in-library "libgdk-x11-2.0.so") - (init-types-in-library "libgdk_pixbuf-2.0.so")) + (init-types-in-library #.(concatenate 'string + (pkg-config:pkg-variable "gtk+-2.0" "libdir") + "/libgdk-x11-2.0.so") :prefix "gdk_") + (init-types-in-library #.(concatenate 'string + (pkg-config:pkg-variable "gtk+-2.0" "libdir") + "/libgdk-x11-2.0.so") :prefix "_gdk_") + (init-types-in-library #.(concatenate 'string + (pkg-config:pkg-variable "gtk+-2.0" "libdir") + "/libgdk_pixbuf-2.0.so") :prefix "gdk_")) + (defclass color (boxed) ((pixel @@ -63,11 +71,8 @@ :accessor cursor-type :initarg :type :type cursor-type)) - (:metaclass proxy-class) - (:copy %cursor-copy) - (:free %cursor-free)) + (:metaclass struct-class)) (defclass device (struct) () - (:metaclass proxy-class)) - + (:metaclass struct-class))