|
From: Tapio V. <aa...@us...> - 2010-08-12 21:28:21
|
Module: performous Branch: joinmenu Commit: c87c53b1ffdf988d5868d68e86284c4805d5fa90 Author: Tapio Vierros <tap...@gm...> Date: Thu Aug 12 20:48:40 2010 +0300 Make stump's deps cross compilation script pass easier. --- win32/cross-from-debian/makedeps.sh | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/win32/cross-from-debian/makedeps.sh b/win32/cross-from-debian/makedeps.sh index 355a4d2..b0c9360 100755 --- a/win32/cross-from-debian/makedeps.sh +++ b/win32/cross-from-debian/makedeps.sh @@ -392,7 +392,7 @@ if test ! -f "$PREFIX"/build-stamps/atk; then download http://ftp.gnome.org/pub/GNOME/sources/atk/1.30/atk-1.30.0.tar.bz2 tar jxvf atk-1.30.0.tar.bz2 cd atk-1.30.0 - ./configure $COMMON_AUTOCONF_FLAGS + ./configure $COMMON_AUTOCONF_FLAGS --disable-glibtest make make install cd .. @@ -410,7 +410,7 @@ if test ! -f "$PREFIX"/build-stamps/gtk; then download http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.20/gtk+-2.20.1.tar.bz2 tar jxvf gtk+-2.20.1.tar.bz2 cd gtk+-2.20.1 - ./configure $COMMON_AUTOCONF_FLAGS --disable-modules --without-libtiff --with-included-loaders=png,jpeg,gif,xpm,xbm + ./configure $COMMON_AUTOCONF_FLAGS --disable-glibtest --disable-modules --without-libtiff --with-included-loaders=png,jpeg,gif,xpm,xbm make -C gdk-pixbuf wine-shwrap gdk-pixbuf/gdk-pixbuf-csource wine-shwrap gdk-pixbuf/gdk-pixbuf-query-loaders @@ -578,7 +578,7 @@ if test ! -f "$PREFIX"/build-stamps/ffmpeg; then svn up ffmpeg fi cd ffmpeg - ./configure --prefix="$PREFIX" --cc="$CROSS_GCC" --nm="$CROSS_NM" --target-os=mingw32 --arch=i386 --disable-static --enable-shared --enable-gpl --enable-postproc --enable-avfilter-lavf --enable-w32threads --enable-runtime-cpudetect --enable-memalign-hack --enable-zlib --enable-libschroedinger --extra-cflags="-I$PREFIX/include" --extra-ldflags="-L$PREFIX/lib" + ./configure --prefix="$PREFIX" --cc="$CROSS_GCC" --nm="$CROSS_NM" --target-os=mingw32 --arch=i386 --disable-static --enable-shared --enable-gpl --enable-postproc --enable-w32threads --enable-runtime-cpudetect --enable-memalign-hack --enable-zlib --enable-libschroedinger --extra-cflags="-I$PREFIX/include" --extra-ldflags="-L$PREFIX/lib" sed -i -e 's/-Werror=[^ ]*//g' config.mak make make install |