From c046c2f653233b4e09830f672159ae205f59c6f6 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Fri, 11 Mar 2005 16:48:08 +0000 Subject: [PATCH] Reverted previous change Organization: Straylight/Edgeware From: espen --- gdk/gdktypes.lisp | 4 ++-- gtk/gtkobject.lisp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gdk/gdktypes.lisp b/gdk/gdktypes.lisp index 1168b55..8564ad2 100644 --- a/gdk/gdktypes.lisp +++ b/gdk/gdktypes.lisp @@ -15,14 +15,14 @@ ;; 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.17 2005-03-11 10:56:56 espen Exp $ +;; $Id: gdktypes.lisp,v 1.18 2005-03-11 16:48:08 espen Exp $ (in-package "GDK") (eval-when (:compile-toplevel :load-toplevel :execute) (init-types-in-library #.(concatenate 'string (pkg-config:pkg-variable "gtk+-2.0" "libdir") - "/libgdk-x11-2.0.so") :prefix "gdk_") + "/libgdk-x11-2.0.so") :prefix ("gdk_" "_gdk_")) (init-types-in-library #.(concatenate 'string (pkg-config:pkg-variable "gtk+-2.0" "libdir") "/libgdk_pixbuf-2.0.so") :prefix "gdk_")) diff --git a/gtk/gtkobject.lisp b/gtk/gtkobject.lisp index 6da0c48..64ac204 100644 --- a/gtk/gtkobject.lisp +++ b/gtk/gtkobject.lisp @@ -15,7 +15,7 @@ ;; 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: gtkobject.lisp,v 1.25 2005-03-11 10:58:41 espen Exp $ +;; $Id: gtkobject.lisp,v 1.26 2005-03-11 16:48:15 espen Exp $ (in-package "GTK") @@ -36,7 +36,7 @@ (in-package "GTK") (eval-when (:compile-toplevel :load-toplevel :execute) (init-types-in-library #.(concatenate 'string (pkg-config:pkg-variable "gtk+-2.0" "libdir") - "/libgtk-x11-2.0.so") :prefix "gtk_") + "/libgtk-x11-2.0.so")) (defclass %object (gobject) () -- [mdw]