add missing use

fix dll path on windows
db4
Doug Coleman 2008-02-04 11:06:11 -06:00
parent d0e5b238e2
commit e2c20d23a4
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ IN: ogg.theora
<<
"theora" {
{ [ win32? ] [ "libtheora.dll" ] }
{ [ win32? ] [ "theora.dll" ] }
{ [ macosx? ] [ "libtheora.0.dylib" ] }
{ [ unix? ] [ "libtheora.so" ] }
} cond "cdecl" add-library

View File

@ -1,7 +1,7 @@
! Copyright (C) 2007 Chris Double.
! See http://factorcode.org/license.txt for BSD license.
!
USING: kernel system combinators alien alien.syntax ;
USING: kernel system combinators alien alien.syntax ogg ;
IN: ogg.vorbis
<<