]> gitweb.factorcode.org Git - factor.git/commitdiff
gtk.*,gdk.*: not using find-library again
authorBjörn Lindqvist <bjourne@gmail.com>
Wed, 24 Jan 2018 14:37:47 +0000 (15:37 +0100)
committerBjörn Lindqvist <bjourne@gmail.com>
Wed, 24 Jan 2018 14:37:47 +0000 (15:37 +0100)
basis/gdk/gl/ffi/ffi.factor
basis/gtk/ffi/ffi.factor
basis/gtk/gl/ffi/ffi.factor

index 71fcb6264ed027b93e3d173f158825eb3a4a5349..4b3fb6ce9dbda55031b1e1e4362c051e2fbd2cde 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2010 Anton Gorenko.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: alien alien.libraries alien.libraries.finder alien.syntax
-combinators gobject-introspection kernel system vocabs ;
+USING: alien alien.libraries alien.syntax combinators
+gobject-introspection kernel system vocabs ;
 IN: gdk.gl.ffi
 
 <<
@@ -14,7 +14,7 @@ LIBRARY: gdk.gl
 "gdk.gl" {
     { [ os windows? ] [ "libgdkglext-win32-1.0-0.dll" cdecl add-library ] }
     { [ os macosx? ] [ drop ] }
-    { [ os unix? ] [ "gdkglext-x11-1.0" find-library cdecl add-library ] }
+    { [ os unix? ] [ "libgdkglext-x11-1.0.so" cdecl add-library ] }
 } cond
 >>
 
index c7560a5abf131091ba0d046c1904f86e6c250932..cf1977513ff2c50688ef5eb563fa5adeda41099f 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2010 Anton Gorenko.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: alien alien.c-types alien.destructors alien.libraries
-alien.libraries.finder alien.syntax combinators gobject-introspection
+alien.syntax combinators gobject-introspection
 gobject-introspection.standard-types kernel pango.ffi system vocabs ;
 IN: gtk.ffi
 
@@ -15,7 +15,7 @@ LIBRARY: gtk
 <<
 "gtk" {
     { [ os windows? ] [ "libgtk-win32-2.0-0.dll" cdecl add-library ] }
-    { [ os linux? ] [ "gtk-x11-2.0" find-library cdecl add-library ] }
+    { [ os linux? ] [ "libgtk-x11-2.0.so" cdecl add-library ] }
     [ drop ]
 } cond
 >>
index 43ed900ccb585bb9417f37234a721fa347c4bbd1..50d39366930edc04da5a8acde20dce9de055e249 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2010 Anton Gorenko.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: alien alien.libraries alien.libraries.finder alien.syntax
-combinators gobject-introspection kernel system vocabs ;
+USING: alien alien.libraries alien.syntax combinators
+gobject-introspection kernel system vocabs ;
 IN: gtk.gl.ffi
 
 <<
@@ -15,7 +15,7 @@ LIBRARY: gtk.gl
 "gtk.gl" {
     { [ os windows? ] [ drop ] }
     { [ os macosx? ] [ drop ] }
-    { [ os unix? ] [ "gtkglext-x11-1.0" find-library cdecl add-library ] }
+    { [ os unix? ] [ "libgtkglext-x11-1.0.so" cdecl add-library ] }
 } cond
 >>