gdbm.ffi: fix add-library form
parent
e27adb2830
commit
73833ebb18
|
@ -4,10 +4,10 @@ USING: alien alien.c-types alien.libraries alien.syntax classes.struct
|
||||||
combinators system ;
|
combinators system ;
|
||||||
IN: gdbm.ffi
|
IN: gdbm.ffi
|
||||||
|
|
||||||
<< "libgdbm" os {
|
<< "libgdbm" {
|
||||||
{ [ unix? ] [ "libgdbm.so" ] }
|
{ [ os macosx? ] [ "libgdbm.dylib" ] }
|
||||||
{ [ winnt? ] [ "gdbm.dll" ] }
|
{ [ os unix? ] [ "libgdbm.so" ] }
|
||||||
{ [ macosx? ] [ "libgdbm.dylib" ] }
|
{ [ os winnt? ] [ "gdbm.dll" ] }
|
||||||
} cond cdecl add-library >>
|
} cond cdecl add-library >>
|
||||||
|
|
||||||
LIBRARY: libgdbm
|
LIBRARY: libgdbm
|
||||||
|
|
Loading…
Reference in New Issue