gdbm.ffi: fix add-library form

db4
Slava Pestov 2010-07-13 17:36:14 -04:00
parent e27adb2830
commit 73833ebb18
1 changed files with 4 additions and 4 deletions

View File

@ -4,10 +4,10 @@ USING: alien alien.c-types alien.libraries alien.syntax classes.struct
combinators system ;
IN: gdbm.ffi
<< "libgdbm" os {
{ [ unix? ] [ "libgdbm.so" ] }
{ [ winnt? ] [ "gdbm.dll" ] }
{ [ macosx? ] [ "libgdbm.dylib" ] }
<< "libgdbm" {
{ [ os macosx? ] [ "libgdbm.dylib" ] }
{ [ os unix? ] [ "libgdbm.so" ] }
{ [ os winnt? ] [ "gdbm.dll" ] }
} cond cdecl add-library >>
LIBRARY: libgdbm