diff options
author | Mike Pall <mike> | 2013-02-19 18:05:39 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2013-02-19 18:05:39 +0100 |
commit | 92699e9ea9371173eb0d9f5fefa703878059009c (patch) | |
tree | c8e79a1cb2b3581d61f9b115acf97e4173b7e442 /src | |
parent | e822bdb6887fd5b44731b652de9b048e59def4df (diff) | |
download | luajit-2.0.1.tar.gz luajit-2.0.1.tar.bz2 luajit-2.0.1.zip |
RELEASE LuaJIT-2.0.1v2.0.1
Diffstat (limited to 'src')
-rw-r--r-- | src/luaconf.h | 4 | ||||
-rw-r--r-- | src/luajit.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/luaconf.h b/src/luaconf.h index 059ccd0b..8e3a7aaa 100644 --- a/src/luaconf.h +++ b/src/luaconf.h | |||
@@ -30,12 +30,12 @@ | |||
30 | #define LUA_LDIR LUA_ROOT "share/lua/5.1/" | 30 | #define LUA_LDIR LUA_ROOT "share/lua/5.1/" |
31 | #define LUA_CDIR LUA_ROOT "lib/lua/5.1/" | 31 | #define LUA_CDIR LUA_ROOT "lib/lua/5.1/" |
32 | #ifdef LUA_XROOT | 32 | #ifdef LUA_XROOT |
33 | #define LUA_JDIR LUA_XROOT "share/luajit-2.0.0/" | 33 | #define LUA_JDIR LUA_XROOT "share/luajit-2.0.1/" |
34 | #define LUA_XPATH \ | 34 | #define LUA_XPATH \ |
35 | ";" LUA_XROOT "share/lua/5.1/?.lua;" LUA_XROOT "share/lua/5.1/?/init.lua" | 35 | ";" LUA_XROOT "share/lua/5.1/?.lua;" LUA_XROOT "share/lua/5.1/?/init.lua" |
36 | #define LUA_XCPATH LUA_XROOT "lib/lua/5.1/?.so;" | 36 | #define LUA_XCPATH LUA_XROOT "lib/lua/5.1/?.so;" |
37 | #else | 37 | #else |
38 | #define LUA_JDIR LUA_ROOT "share/luajit-2.0.0/" | 38 | #define LUA_JDIR LUA_ROOT "share/luajit-2.0.1/" |
39 | #define LUA_XPATH | 39 | #define LUA_XPATH |
40 | #define LUA_XCPATH | 40 | #define LUA_XCPATH |
41 | #endif | 41 | #endif |
diff --git a/src/luajit.h b/src/luajit.h index 2dc9e65c..ed39d014 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" | 33 | #define LUAJIT_VERSION "LuaJIT 2.0.1" |
34 | #define LUAJIT_VERSION_NUM 20000 /* Version 2.0.0 = 02.00.00. */ | 34 | #define LUAJIT_VERSION_NUM 20001 /* Version 2.0.1 = 02.00.01. */ |
35 | #define LUAJIT_VERSION_SYM luaJIT_version_2_0_0 | 35 | #define LUAJIT_VERSION_SYM luaJIT_version_2_0_1 |
36 | #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2013 Mike Pall" | 36 | #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2013 Mike Pall" |
37 | #define LUAJIT_URL "http://luajit.org/" | 37 | #define LUAJIT_URL "http://luajit.org/" |
38 | 38 | ||