diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 4 | ||||
-rw-r--r-- | src/luaconf.h | 4 | ||||
-rw-r--r-- | src/luajit.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile b/src/Makefile index 9f7bcfcc..b3415ffd 100644 --- a/src/Makefile +++ b/src/Makefile | |||
@@ -147,7 +147,7 @@ XCFLAGS= | |||
147 | # | 147 | # |
148 | # Turn on assertions for the whole LuaJIT VM. This significantly slows down | 148 | # Turn on assertions for the whole LuaJIT VM. This significantly slows down |
149 | # everything. Use only if you suspect a problem with LuaJIT itself. | 149 | # everything. Use only if you suspect a problem with LuaJIT itself. |
150 | #XCFLAGS+= -DLUA_USE_ASSERT | 150 | XCFLAGS+= -DLUA_USE_ASSERT |
151 | # | 151 | # |
152 | ############################################################################## | 152 | ############################################################################## |
153 | # You probably don't need to change anything below this line! | 153 | # You probably don't need to change anything below this line! |
@@ -296,7 +296,7 @@ else | |||
296 | TARGET_XLDFLAGS+= -Wl,-E | 296 | TARGET_XLDFLAGS+= -Wl,-E |
297 | endif | 297 | endif |
298 | ifeq (Linux,$(TARGET_SYS)) | 298 | ifeq (Linux,$(TARGET_SYS)) |
299 | TARGET_XLIBS+= -ldl | 299 | TARGET_XLIBS+= -ldl -lpthread |
300 | endif | 300 | endif |
301 | ifeq (GNU/kFreeBSD,$(TARGET_SYS)) | 301 | ifeq (GNU/kFreeBSD,$(TARGET_SYS)) |
302 | TARGET_XLIBS+= -ldl | 302 | 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 @@ | |||
26 | #define LUA_LDIR LUA_ROOT "share/lua/5.1/" | 26 | #define LUA_LDIR LUA_ROOT "share/lua/5.1/" |
27 | #define LUA_CDIR LUA_ROOT "lib/lua/5.1/" | 27 | #define LUA_CDIR LUA_ROOT "lib/lua/5.1/" |
28 | #ifdef LUA_XROOT | 28 | #ifdef LUA_XROOT |
29 | #define LUA_JDIR LUA_XROOT "share/luajit-2.0.0-beta7/" | 29 | #define LUA_JDIR LUA_XROOT "share/luajit-2.0.0-beta8/" |
30 | #define LUA_XPATH \ | 30 | #define LUA_XPATH \ |
31 | ";" LUA_XROOT "share/lua/5.1/?.lua;" LUA_XROOT "share/lua/5.1/?/init.lua" | 31 | ";" LUA_XROOT "share/lua/5.1/?.lua;" LUA_XROOT "share/lua/5.1/?/init.lua" |
32 | #define LUA_XCPATH LUA_XROOT "lib/lua/5.1/?.so;" | 32 | #define LUA_XCPATH LUA_XROOT "lib/lua/5.1/?.so;" |
33 | #else | 33 | #else |
34 | #define LUA_JDIR LUA_ROOT "share/luajit-2.0.0-beta7/" | 34 | #define LUA_JDIR LUA_ROOT "share/luajit-2.0.0-beta8/" |
35 | #define LUA_XPATH | 35 | #define LUA_XPATH |
36 | #define LUA_XCPATH | 36 | #define LUA_XCPATH |
37 | #endif | 37 | #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 @@ | |||
30 | 30 | ||
31 | #include "lua.h" | 31 | #include "lua.h" |
32 | 32 | ||
33 | #define LUAJIT_VERSION "LuaJIT 2.0.0-beta7" | 33 | #define LUAJIT_VERSION "LuaJIT 2.0.0-beta8" |
34 | #define LUAJIT_VERSION_NUM 20000 /* Version 2.0.0 = 02.00.00. */ | 34 | #define LUAJIT_VERSION_NUM 20000 /* Version 2.0.0 = 02.00.00. */ |
35 | #define LUAJIT_VERSION_SYM luaJIT_version_2_0_0_beta7 | 35 | #define LUAJIT_VERSION_SYM luaJIT_version_2_0_0_beta8 |
36 | #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2011 Mike Pall" | 36 | #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2011 Mike Pall" |
37 | #define LUAJIT_URL "http://luajit.org/" | 37 | #define LUAJIT_URL "http://luajit.org/" |
38 | 38 | ||