From 43f9318489d579ea2f00ae736112ab5401e4260f Mon Sep 17 00:00:00 2001 From: Jon Harper Date: Sat, 8 Feb 2014 16:15:11 +0100 Subject: [PATCH] yaml: load lib for windows and macosx --- extra/yaml/ffi/ffi.factor | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extra/yaml/ffi/ffi.factor b/extra/yaml/ffi/ffi.factor index 340ef4bb6d..5276e38cc8 100644 --- a/extra/yaml/ffi/ffi.factor +++ b/extra/yaml/ffi/ffi.factor @@ -8,6 +8,8 @@ IN: yaml.ffi << "libyaml" { + { [ os windows? ] [ "libyaml.dll" ] } + { [ os macosx? ] [ "libyaml.dylib" ] } { [ os unix? ] [ "libyaml.so" ] } } cond cdecl add-library >>