]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/gdk/pixbuf/ffi/ffi.factor
Merge remote-tracking branch 'Blei/gtk-image-loader'
[factor.git] / basis / gdk / pixbuf / ffi / ffi.factor
index 38959c9004f31542a38c2823272b016c9957927f..2a4f64f042284557ee9e94e9ce5d16f5240bd6d4 100644 (file)
@@ -1,4 +1,4 @@
-! Copyright (C) 2009 Anton Gorenko.
+! Copyright (C) 2010 Anton Gorenko.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: alien alien.data alien.libraries alien.syntax
 combinators gio.ffi glib.ffi gmodule.ffi gobject-introspection
@@ -6,11 +6,14 @@ gobject.ffi kernel libc sequences system ;
 EXCLUDE: alien.c-types => pointer ;
 IN: gdk.pixbuf.ffi
 
+"gio.ffi" require
+
+LIBRARY: gdk.pixbuf
+
 <<
 "gdk.pixbuf" {
     { [ os winnt? ] [ "libgdk_pixbuf-2.0-0.dll" cdecl add-library ] }
-    { [ os macosx? ] [ drop ] }
-    { [ os unix? ] [ "libgdk_pixbuf-2.0.so" cdecl add-library ] }
+    { [ os unix? ] [ drop ] }
 } cond
 >>