Migrated to python-3.4, removed over.core.types.enum as it is now provided by Python's enum.Enum. Minor fixes.

This commit is contained in:
Overwatch 2014-08-17 00:31:44 +02:00
parent fd984be2f6
commit 5e655c8e06
7 changed files with 49 additions and 104 deletions

View file

@ -15,8 +15,8 @@ echo "- translating from Python to C"
cython -3 cython_types.pyx -o cython_types.c || die "translating"
echo "- compiling and linking"
gcc $CFLAGS -I/usr/include/python3.3 -pthread -c cython_types.c || die "compilation"
gcc $LFLAGS -L/usr/lib -lpython3.3 cython_types.o -o cython_types.so || die "linking"
gcc $CFLAGS -I/usr/include/python3.4 -pthread -c cython_types.c || die "compilation"
gcc $LFLAGS -L/usr/lib -lpython3.4 cython_types.o -o cython_types.so || die "linking"
rm -f cython_types.{c,o}
echo "- done"