]> gitweb.factorcode.org Git - factor.git/commitdiff
gobject.ffi: fix windows dll name.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sun, 8 Mar 2015 15:51:53 +0000 (08:51 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sun, 8 Mar 2015 15:51:53 +0000 (08:51 -0700)
basis/gobject/ffi/ffi.factor

index a25741a47a9acb063b3f0eaf9914fc4a774cfe06..b530ba67fe688eb5fff9deceaae7f543393f8bef 100644 (file)
@@ -12,7 +12,7 @@ USE: glib.ffi
 LIBRARY: gobject
 
 << "gobject" {
-    { [ os windows? ] [ "libobject-2.0-0.dll" ] }
+    { [ os windows? ] [ "libgobject-2.0-0.dll" ] }
     { [ os macosx? ] [ "libgobject-2.0.dylib" ] }
     { [ os unix? ] [ "libgobject-2.0.so" ] }
 } cond cdecl add-library >>