]> gitweb.factorcode.org Git - factor.git/commitdiff
Fixing load errors
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Sun, 11 Apr 2010 00:24:44 +0000 (17:24 -0700)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Sun, 11 Apr 2010 00:24:44 +0000 (17:24 -0700)
basis/compiler/tests/alien.factor
basis/opengl/gl/unix/unix.factor
basis/opengl/gl/windows/windows.factor
core/alien/alien-docs.factor
extra/chipmunk/ffi/ffi.factor

index a3df053ca203baf3eeda3635bcbe55d852e81874..8735d7cae4ef8fba73f26503926a5a47ca2cf35b 100755 (executable)
@@ -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
index a9d3b42b53fcbf40eed58aec3469e06428d33039..c0a0218ed2fc4854ce891d58b4f84b3a0621e25e 100644 (file)
@@ -1,4 +1,4 @@
-USING: kernel x11.glx ;
+USING: alien kernel x11.glx ;
 IN: opengl.gl.unix
 
 : gl-function-context ( -- context ) glXGetCurrentContext ; inline
index 2ac9894b9a28dd4bf48353d1cebc9597e3a79a94..eda1e3178e7cbe08b84ea251d196eb22ada91e94 100644 (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
index 6c64b2fac3960d1b7dca364fdbc9ac6818f8d484..96eb9002be7a340da8117bd09d7904725afea218 100644 (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
index b00f64339f918ce6aabcdbe6327aa3d539532d74..c1cfabe20ca14cee4c143e05ed3063fabeb0f92f 100644 (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