]> gitweb.factorcode.org Git - factor.git/blobdiff - unmaintained/cryptlib/libcl/libcl.factor
Merge branch 'master' of git://github.com/erikcharlebois/factor
[factor.git] / unmaintained / cryptlib / libcl / libcl.factor
index 946364efc16eea7869b65e7af9f15f64910803ed..02bd38d0455017fc2316a02f87cac46c1a410a75 100644 (file)
@@ -13,9 +13,9 @@ USING: alien kernel system combinators alien.syntax ;
 IN: cryptlib.libcl
 
 << "libcl" {
-        { [ win32? ] [ "cl32.dll" "stdcall" ] }
-        { [ macosx? ] [ "libcl.dylib" "cdecl" ] }
-        { [ unix? ] [ "libcl.so" "cdecl" ] }
+        { [ win32? ] [ "cl32.dll" stdcall ] }
+        { [ macosx? ] [ "libcl.dylib" cdecl ] }
+        { [ unix? ] [ "libcl.so" cdecl ] }
     } cond add-library >>
 
 ! ===============================================