From 8c95cddc08c61640398020f8985d554bcbb96639 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Tue, 18 Nov 2014 13:51:29 -0800 Subject: [PATCH] pcre.ffi: Use pcre.dll on Windows. --- extra/pcre/ffi/ffi.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/pcre/ffi/ffi.factor b/extra/pcre/ffi/ffi.factor index f8a6b8cb17..c0e4e20a18 100644 --- a/extra/pcre/ffi/ffi.factor +++ b/extra/pcre/ffi/ffi.factor @@ -9,7 +9,7 @@ USING: IN: pcre.ffi << "pcre" { - { [ os windows? ] [ "pcre3.dll" ] } + { [ os windows? ] [ "pcre.dll" ] } { [ os macosx? ] [ "libpcre.dylib" ] } { [ os unix? ] [ "libpcre.so" ] } } cond cdecl add-library >>