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
alien.complex concurrency.promises ;
FROM: alien.c-types => float short ;
FROM: alien.private => fastcall ;
SPECIALIZED-ARRAY: float
SPECIALIZED-ARRAY: char
IN: compiler.tests.alien

View File

@ -1,4 +1,4 @@
USING: kernel x11.glx ;
USING: alien kernel x11.glx ;
IN: opengl.gl.unix
: 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
LIBRARY: gl

View File

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

View File

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