upgraded LuaJIT to 2.0.0beta10.

This commit is contained in:
agentzh (章亦春) 2012-05-13 21:34:16 +08:00
parent 41d48ab573
commit e8990b7d03
2 changed files with 10 additions and 10 deletions

6
util/configure vendored
View File

@ -515,9 +515,9 @@ _END_
.q{ -DLUA_USE_ASSERT'}; .q{ -DLUA_USE_ASSERT'};
} }
if ($platform =~ /bsd/i) { #if ($platform =~ /bsd/i) {
$extra_opts .= ' CFLAGS=-I..'; #$extra_opts .= ' CFLAGS=-I..';
} #}
if ($on_solaris) { if ($on_solaris) {
$extra_opts .= " INSTALL_X='$root_dir/build/install -m 0755' " . $extra_opts .= " INSTALL_X='$root_dir/build/install -m 0755' " .

View File

@ -237,17 +237,17 @@ rm lua-makefile-fix.patch || exit 1
################################# #################################
ver=2.0.0-beta9 ver=2.0.0-beta10
$root/util/get-tarball "http://luajit.org/download/LuaJIT-$ver.tar.gz" -O "LuaJIT-$ver.tar.gz" || exit 1 $root/util/get-tarball "http://luajit.org/download/LuaJIT-$ver.tar.gz" -O "LuaJIT-$ver.tar.gz" || exit 1
tar -xzf LuaJIT-$ver.tar.gz || exit 1 tar -xzf LuaJIT-$ver.tar.gz || exit 1
cd LuaJIT-$ver || exit 1; #cd LuaJIT-$ver || exit 1;
$root/util/get-tarball http://luajit.org/download/beta9_hotfix1.patch -O beta9_hotfix1.patch #$root/util/get-tarball http://luajit.org/download/beta9_hotfix1.patch -O beta9_hotfix1.patch
patch -p1 < beta9_hotfix1.patch || exit 1 #patch -p1 < beta9_hotfix1.patch || exit 1
rm beta9_hotfix1.patch || exit 1 #rm beta9_hotfix1.patch || exit 1
cp $root/misc/unwind-generic.h ./unwind.h || exit 1 #cp $root/misc/unwind-generic.h ./unwind.h || exit 1
cd .. #cd ..
################################# #################################