python.ffi: Disable python3

db4
Doug Coleman 2014-07-04 01:25:22 +00:00
parent 5c8bb0f69e
commit c0b7fb6a23
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,8 @@ USING: alien alien.c-types alien.destructors alien.libraries alien.libraries.fin
alien.syntax assocs kernel sequences system ;
IN: python.ffi
<< "python" { "3.0" "3" "2.7" "2.6" }
! << "python" { "3.0" "3" "2.7" "2.6" } ! Python 3 has a different api, enable someday
<< "python" { "2.7" "2.6" }
os windows? [ [ [ CHAR: . = not ] filter ] map ] when
[ "python" prepend find-library* ] map-find drop
cdecl add-library >>