From 048366cff2b1d25b7e32bcb7067f83e9cf493177 Mon Sep 17 00:00:00 2001 From: Dmitry Kalyanov Date: Wed, 9 Jun 2010 16:06:31 +0400 Subject: [PATCH] Add gsize types for PPC32 and PPC64 archs --- glib/glib.lisp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glib/glib.lisp b/glib/glib.lisp index 8398148..cdd1d1a 100644 --- a/glib/glib.lisp +++ b/glib/glib.lisp @@ -156,6 +156,8 @@ In this example, for every @code{class}, @code{(initialize-gobject-class-g-type (cond ((cffi-features:cffi-feature-p :x86-64) (defctype gsize :uint64)) ((cffi-features:cffi-feature-p :x86) (defctype gsize :ulong)) + ((cffi-features:cffi-feature-p :ppc32) (defctype gsize :uint32)) + ((cffi-features:cffi-feature-p :ppc64) (defctype gsize :uint64)) (t (error "Can not define 'gsize', unknown CPU architecture (known are x86 and x86-64)")))) (defctype gssize :long) -- 1.7.10.4