gdbm.ffi: fix DLL name on Windows

Slava Pestov 2010-07-26 15:35:12 -05:00
parent 9cbff0c470
commit f49cdd10e8
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