]> gitweb.factorcode.org Git - factor.git/commitdiff
pcre.ffi: pcred.dll is the debug version, no need for it right now
authorDoug Coleman <doug.coleman@gmail.com>
Sun, 15 Jan 2023 20:37:17 +0000 (14:37 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Sun, 15 Jan 2023 20:37:17 +0000 (14:37 -0600)
extra/pcre/ffi/ffi.factor

index 77f5c90f13aa65edba64d2e41190aa875d53d753..6f06af7e609a2471ae26a71312fff5b5b58ea648 100644 (file)
@@ -4,7 +4,7 @@ system ;
 IN: pcre.ffi
 
 << "pcre" {
-    { [ os windows? ] [ { "pcred.dll" "pcre.dll" } find-library-from-list ] }
+    { [ os windows? ] [ { "pcre.dll" } find-library-from-list ] }
     { [ os macosx? ] [ "libpcre.dylib" ] }
     { [ os unix? ] [ "libpcre.so" ] }
 } cond cdecl add-library >>