From 9b0c641ac18b560c45173c741c0880fd21fbba60 Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Thu, 23 Jun 2011 17:15:02 +0200 Subject: RELEASE LuaJIT-2.0.0-beta8 --- src/Makefile | 4 ++-- src/luaconf.h | 4 ++-- src/luajit.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/Makefile b/src/Makefile index 9f7bcfcc..b3415ffd 100644 --- a/src/Makefile +++ b/src/Makefile @@ -147,7 +147,7 @@ XCFLAGS= # # Turn on assertions for the whole LuaJIT VM. This significantly slows down # everything. Use only if you suspect a problem with LuaJIT itself. -#XCFLAGS+= -DLUA_USE_ASSERT +XCFLAGS+= -DLUA_USE_ASSERT # ############################################################################## # You probably don't need to change anything below this line! @@ -296,7 +296,7 @@ else TARGET_XLDFLAGS+= -Wl,-E endif ifeq (Linux,$(TARGET_SYS)) - TARGET_XLIBS+= -ldl + TARGET_XLIBS+= -ldl -lpthread endif ifeq (GNU/kFreeBSD,$(TARGET_SYS)) TARGET_XLIBS+= -ldl diff --git a/src/luaconf.h b/src/luaconf.h index ceab5ed6..4a243ffb 100644 --- a/src/luaconf.h +++ b/src/luaconf.h @@ -26,12 +26,12 @@ #define LUA_LDIR LUA_ROOT "share/lua/5.1/" #define LUA_CDIR LUA_ROOT "lib/lua/5.1/" #ifdef LUA_XROOT -#define LUA_JDIR LUA_XROOT "share/luajit-2.0.0-beta7/" +#define LUA_JDIR LUA_XROOT "share/luajit-2.0.0-beta8/" #define LUA_XPATH \ ";" LUA_XROOT "share/lua/5.1/?.lua;" LUA_XROOT "share/lua/5.1/?/init.lua" #define LUA_XCPATH LUA_XROOT "lib/lua/5.1/?.so;" #else -#define LUA_JDIR LUA_ROOT "share/luajit-2.0.0-beta7/" +#define LUA_JDIR LUA_ROOT "share/luajit-2.0.0-beta8/" #define LUA_XPATH #define LUA_XCPATH #endif diff --git a/src/luajit.h b/src/luajit.h index 4ea529ec..38be73da 100644 --- a/src/luajit.h +++ b/src/luajit.h @@ -30,9 +30,9 @@ #include "lua.h" -#define LUAJIT_VERSION "LuaJIT 2.0.0-beta7" +#define LUAJIT_VERSION "LuaJIT 2.0.0-beta8" #define LUAJIT_VERSION_NUM 20000 /* Version 2.0.0 = 02.00.00. */ -#define LUAJIT_VERSION_SYM luaJIT_version_2_0_0_beta7 +#define LUAJIT_VERSION_SYM luaJIT_version_2_0_0_beta8 #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2011 Mike Pall" #define LUAJIT_URL "http://luajit.org/" -- cgit v1.2.3-55-g6feb