Merge pull request #66 from shadowmint/master

Fixed PIL build flags and Tremor import path
This commit is contained in:
Mathieu Virbel 2013-10-18 04:54:42 -07:00
commit d82802f277
2 changed files with 4 additions and 4 deletions

View file

@ -17,7 +17,7 @@ OLD_CC="$CC"
OLD_CFLAGS="$CFLAGS"
OLD_LDFLAGS="$LDFLAGS"
OLD_LDSHARED="$LDSHARED"
export CC="$ARM_CC -I$BUILDROOT/include"
export CC="$ARM_CC -I$BUILDROOT/include -I$BUILDROOT/include/freetype"
export CFLAGS="$ARM_CFLAGS"
export LDFLAGS="$ARM_LDFLAGS"
export LDSHARED="$KIVYIOSROOT/tools/liblink"

View file

@ -11,10 +11,10 @@ fi
if [ ! -d SDL_mixer ]; then
try hg clone http://hg.libsdl.org/SDL_mixer/#SDL-1.2
fi
if [ ! -d libtremor ]; then
try mkdir libtremor
if [ ! -d libtremor/tremor ]; then
try mkdir -p libtremor
try cd libtremor
try svn co http://svn.xiph.org/trunk/Tremor tremor
try svn co https://svn.xiph.org/trunk/Tremor tremor
try cd tremor
try patch -p0 < $KIVYIOSROOT/src/tremor-configure.patch
try cd ../..