gdbm.ffi: fix DLL name on Windows

db4
Slava Pestov 2010-07-26 15:35:12 -05:00
parent 68da8c48d5
commit 1945d62dd5
1 changed files with 1 additions and 1 deletions

2
extra/gdbm/ffi/ffi.factor Normal file → Executable file
View File

@ -7,7 +7,7 @@ IN: gdbm.ffi
<< "libgdbm" {
{ [ os macosx? ] [ "libgdbm.dylib" ] }
{ [ os unix? ] [ "libgdbm.so" ] }
{ [ os winnt? ] [ "gdbm.dll" ] }
{ [ os winnt? ] [ "gdbm3.dll" ] }
} cond cdecl add-library >>
LIBRARY: libgdbm