Fixing load errors

release
Slava Pestov 2010-04-10 17:24:44 -07:00
parent 0202c35d2a
commit 145e6428ba
5 changed files with 6 additions and 7 deletions

View File

@ -7,7 +7,6 @@ quotations sequences specialized-arrays stack-checker
stack-checker.errors system threads tools.test words stack-checker.errors system threads tools.test words
alien.complex concurrency.promises ; alien.complex concurrency.promises ;
FROM: alien.c-types => float short ; FROM: alien.c-types => float short ;
FROM: alien.private => fastcall ;
SPECIALIZED-ARRAY: float SPECIALIZED-ARRAY: float
SPECIALIZED-ARRAY: char SPECIALIZED-ARRAY: char
IN: compiler.tests.alien IN: compiler.tests.alien

View File

@ -1,4 +1,4 @@
USING: kernel x11.glx ; USING: alien kernel x11.glx ;
IN: opengl.gl.unix IN: opengl.gl.unix
: gl-function-context ( -- context ) glXGetCurrentContext ; inline : gl-function-context ( -- context ) glXGetCurrentContext ; inline

View File

@ -1,4 +1,4 @@
USING: alien.c-types alien.syntax kernel windows.types ; USING: alien alien.c-types alien.syntax kernel windows.types ;
IN: opengl.gl.windows IN: opengl.gl.windows
LIBRARY: gl LIBRARY: gl

View File

@ -3,7 +3,6 @@ alien.syntax compiler definitions math libc eval
debugger parser io io.backend system alien.accessors debugger parser io io.backend system alien.accessors
alien.libraries alien.c-types quotations kernel alien.libraries alien.c-types quotations kernel
sequences ; sequences ;
FROM: alien.private => fastcall ;
IN: alien IN: alien
HELP: cdecl HELP: cdecl

View File

@ -1,8 +1,9 @@
! Copyright (C) 2010 Erik Charlebois ! Copyright (C) 2010 Erik Charlebois
! See http:// factorcode.org/license.txt for BSD license. ! See http:// factorcode.org/license.txt for BSD license.
USING: accessors alien.c-types alien.syntax classes.struct combinators USING: accessors alien alien.c-types alien.libraries
combinators.short-circuit kernel math math.order sequences alien.syntax classes.struct combinators combinators.short-circuit
typed specialized-arrays locals system alien.libraries ; kernel math math.order sequences typed specialized-arrays locals
system ;
SPECIALIZED-ARRAY: void* SPECIALIZED-ARRAY: void*
IN: chipmunk.ffi IN: chipmunk.ffi