Fix ogg libraries for recent factor changes
parent
c6bc074472
commit
eb07fbdc7c
|
@ -4,14 +4,13 @@
|
|||
USING: kernel system combinators alien alien.syntax ;
|
||||
IN: ogg
|
||||
|
||||
: load-ogg-library ( -- )
|
||||
"ogg" {
|
||||
{ [ win32? ] [ "ogg.dll" ] }
|
||||
{ [ macosx? ] [ "libogg.0.dylib" ] }
|
||||
{ [ unix? ] [ "libogg.so" ] }
|
||||
} cond "cdecl" add-library ; parsing
|
||||
|
||||
load-ogg-library
|
||||
<<
|
||||
"ogg" {
|
||||
{ [ win32? ] [ "ogg.dll" ] }
|
||||
{ [ macosx? ] [ "libogg.0.dylib" ] }
|
||||
{ [ unix? ] [ "libogg.so" ] }
|
||||
} cond "cdecl" add-library
|
||||
>>
|
||||
|
||||
LIBRARY: ogg
|
||||
|
||||
|
|
|
@ -4,14 +4,13 @@
|
|||
USING: kernel system combinators alien alien.syntax ;
|
||||
IN: ogg.theora
|
||||
|
||||
: load-theora-library ( -- )
|
||||
"theora" {
|
||||
{ [ win32? ] [ "libtheora.dll" ] }
|
||||
{ [ macosx? ] [ "libtheora.0.dylib" ] }
|
||||
{ [ unix? ] [ "libtheora.so" ] }
|
||||
} cond "cdecl" add-library ; parsing
|
||||
|
||||
load-theora-library
|
||||
<<
|
||||
"theora" {
|
||||
{ [ win32? ] [ "libtheora.dll" ] }
|
||||
{ [ macosx? ] [ "libtheora.0.dylib" ] }
|
||||
{ [ unix? ] [ "libtheora.so" ] }
|
||||
} cond "cdecl" add-library
|
||||
>>
|
||||
|
||||
LIBRARY: theora
|
||||
|
||||
|
|
|
@ -4,14 +4,13 @@
|
|||
USING: kernel system combinators alien alien.syntax ;
|
||||
IN: ogg.vorbis
|
||||
|
||||
: load-vorbis-library ( -- )
|
||||
"vorbis" {
|
||||
{ [ win32? ] [ "vorbis.dll" ] }
|
||||
{ [ macosx? ] [ "libvorbis.0.dylib" ] }
|
||||
{ [ unix? ] [ "libvorbis.so" ] }
|
||||
} cond "cdecl" add-library ; parsing
|
||||
|
||||
load-vorbis-library
|
||||
<<
|
||||
"vorbis" {
|
||||
{ [ win32? ] [ "vorbis.dll" ] }
|
||||
{ [ macosx? ] [ "libvorbis.0.dylib" ] }
|
||||
{ [ unix? ] [ "libvorbis.so" ] }
|
||||
} cond "cdecl" add-library
|
||||
>>
|
||||
|
||||
LIBRARY: vorbis
|
||||
|
||||
|
|
Loading…
Reference in New Issue