diff --git a/basis/gtk/ffi/ffi.factor b/basis/gtk/ffi/ffi.factor index e9b3238ba7..424125d7c4 100644 --- a/basis/gtk/ffi/ffi.factor +++ b/basis/gtk/ffi/ffi.factor @@ -2,8 +2,8 @@ ! See http://factorcode.org/license.txt for BSD license. USING: alien alien.c-types alien.destructors alien.libraries alien.libraries.finder alien.syntax assocs gobject-introspection -gobject-introspection.standard-types kernel pango.ffi system -vocabs ; +gobject-introspection.standard-types init kernel pango.ffi +system vocabs ; IN: gtk.ffi << @@ -14,10 +14,12 @@ IN: gtk.ffi LIBRARY: gtk << -"gtk" { - { linux "gtk-x11-2.0" } - { windows "libgtk-win32-2.0-0" } -} os of [ find-library cdecl add-library ] [ drop ] if* +[ + "gtk" { + { linux "gtk-x11-2.0" } + { windows "libgtk-win32-2.0-0" } + } os of [ find-library cdecl add-library ] [ drop ] if* +] "find-gtk" add-startup-hook >> IMPLEMENT-STRUCTS: GtkTreeIter ;