diff options
author | Mike Pall <mike> | 2010-03-28 19:26:33 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2010-03-28 19:26:33 +0200 |
commit | 23189fa40d8cda4fa039a44b1211771b3d34fc7b (patch) | |
tree | 65fe7aadd2bde0e0dace999fba7bee218ae8d159 /src | |
parent | 3a8b9bad2e34155ddb1b6a84cc236ea87accbf1a (diff) | |
download | luajit-23189fa40d8cda4fa039a44b1211771b3d34fc7b.tar.gz luajit-23189fa40d8cda4fa039a44b1211771b3d34fc7b.tar.bz2 luajit-23189fa40d8cda4fa039a44b1211771b3d34fc7b.zip |
RELEASE LuaJIT-2.0.0-beta4v2.0.0-beta4
Diffstat (limited to 'src')
-rw-r--r-- | src/luaconf.h | 4 | ||||
-rw-r--r-- | src/luajit.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/luaconf.h b/src/luaconf.h index cbb3685d..06adce10 100644 --- a/src/luaconf.h +++ b/src/luaconf.h | |||
@@ -37,12 +37,12 @@ | |||
37 | #define LUA_LDIR LUA_ROOT "share/lua/5.1/" | 37 | #define LUA_LDIR LUA_ROOT "share/lua/5.1/" |
38 | #define LUA_CDIR LUA_ROOT "lib/lua/5.1/" | 38 | #define LUA_CDIR LUA_ROOT "lib/lua/5.1/" |
39 | #ifdef LUA_XROOT | 39 | #ifdef LUA_XROOT |
40 | #define LUA_JDIR LUA_XROOT "share/luajit-2.0.0-beta3/" | 40 | #define LUA_JDIR LUA_XROOT "share/luajit-2.0.0-beta4/" |
41 | #define LUA_XPATH \ | 41 | #define LUA_XPATH \ |
42 | ";" LUA_XROOT "share/lua/5.1/?.lua;" LUA_XROOT "share/lua/5.1/?/init.lua" | 42 | ";" LUA_XROOT "share/lua/5.1/?.lua;" LUA_XROOT "share/lua/5.1/?/init.lua" |
43 | #define LUA_XCPATH LUA_XROOT "lib/lua/5.1/?.so;" | 43 | #define LUA_XCPATH LUA_XROOT "lib/lua/5.1/?.so;" |
44 | #else | 44 | #else |
45 | #define LUA_JDIR LUA_ROOT "share/luajit-2.0.0-beta3/" | 45 | #define LUA_JDIR LUA_ROOT "share/luajit-2.0.0-beta4/" |
46 | #define LUA_XPATH | 46 | #define LUA_XPATH |
47 | #define LUA_XCPATH | 47 | #define LUA_XCPATH |
48 | #endif | 48 | #endif |
diff --git a/src/luajit.h b/src/luajit.h index a64656ca..5228d05d 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-beta3" | 33 | #define LUAJIT_VERSION "LuaJIT 2.0.0-beta4" |
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_beta3 | 35 | #define LUAJIT_VERSION_SYM luaJIT_version_2_0_0_beta4 |
36 | #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2010 Mike Pall" | 36 | #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2010 Mike Pall" |
37 | #define LUAJIT_URL "http://luajit.org/" | 37 | #define LUAJIT_URL "http://luajit.org/" |
38 | 38 | ||