diff options
author | Mike Pall <mike> | 2015-08-25 23:32:36 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2015-08-25 23:32:36 +0200 |
commit | fb77f7dee7fff698736b48392a6057c60d0d7c2b (patch) | |
tree | 6a4ac55724592e93bc7c59cc22ce06a59d5ce997 | |
parent | 0a3cd94631f1d2d1d18b641ecd25f49ed54f832e (diff) | |
download | luajit-fb77f7dee7fff698736b48392a6057c60d0d7c2b.tar.gz luajit-fb77f7dee7fff698736b48392a6057c60d0d7c2b.tar.bz2 luajit-fb77f7dee7fff698736b48392a6057c60d0d7c2b.zip |
RELEASE LuaJIT-2.1.0-beta1v2.1.0-beta1
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | etc/luajit.pc | 2 | ||||
-rw-r--r-- | src/luaconf.h | 2 | ||||
-rw-r--r-- | src/luajit.h | 4 |
5 files changed, 6 insertions, 6 deletions
@@ -16,7 +16,7 @@ | |||
16 | MAJVER= 2 | 16 | MAJVER= 2 |
17 | MINVER= 1 | 17 | MINVER= 1 |
18 | RELVER= 0 | 18 | RELVER= 0 |
19 | PREREL= -alpha | 19 | PREREL= -beta1 |
20 | VERSION= $(MAJVER).$(MINVER).$(RELVER)$(PREREL) | 20 | VERSION= $(MAJVER).$(MINVER).$(RELVER)$(PREREL) |
21 | ABIVER= 5.1 | 21 | ABIVER= 5.1 |
22 | 22 | ||
@@ -1,4 +1,4 @@ | |||
1 | README for LuaJIT 2.1.0-alpha | 1 | README for LuaJIT 2.1.0-beta1 |
2 | ----------------------------- | 2 | ----------------------------- |
3 | 3 | ||
4 | LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language. | 4 | LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language. |
diff --git a/etc/luajit.pc b/etc/luajit.pc index 5ec2c35c..c99057f4 100644 --- a/etc/luajit.pc +++ b/etc/luajit.pc | |||
@@ -2,7 +2,7 @@ | |||
2 | majver=2 | 2 | majver=2 |
3 | minver=1 | 3 | minver=1 |
4 | relver=0 | 4 | relver=0 |
5 | version=${majver}.${minver}.${relver}-alpha | 5 | version=${majver}.${minver}.${relver}-beta1 |
6 | abiver=5.1 | 6 | abiver=5.1 |
7 | 7 | ||
8 | prefix=/usr/local | 8 | prefix=/usr/local |
diff --git a/src/luaconf.h b/src/luaconf.h index 043590b2..79f51482 100644 --- a/src/luaconf.h +++ b/src/luaconf.h | |||
@@ -37,7 +37,7 @@ | |||
37 | #endif | 37 | #endif |
38 | #define LUA_LROOT "/usr/local" | 38 | #define LUA_LROOT "/usr/local" |
39 | #define LUA_LUADIR "/lua/5.1/" | 39 | #define LUA_LUADIR "/lua/5.1/" |
40 | #define LUA_LJDIR "/luajit-2.1.0-alpha/" | 40 | #define LUA_LJDIR "/luajit-2.1.0-beta1/" |
41 | 41 | ||
42 | #ifdef LUA_ROOT | 42 | #ifdef LUA_ROOT |
43 | #define LUA_JROOT LUA_ROOT | 43 | #define LUA_JROOT LUA_ROOT |
diff --git a/src/luajit.h b/src/luajit.h index 3db4bba7..96041851 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.1.0-alpha" | 33 | #define LUAJIT_VERSION "LuaJIT 2.1.0-beta1" |
34 | #define LUAJIT_VERSION_NUM 20100 /* Version 2.1.0 = 02.01.00. */ | 34 | #define LUAJIT_VERSION_NUM 20100 /* Version 2.1.0 = 02.01.00. */ |
35 | #define LUAJIT_VERSION_SYM luaJIT_version_2_1_0_alpha | 35 | #define LUAJIT_VERSION_SYM luaJIT_version_2_1_0_beta1 |
36 | #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2015 Mike Pall" | 36 | #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2015 Mike Pall" |
37 | #define LUAJIT_URL "http://luajit.org/" | 37 | #define LUAJIT_URL "http://luajit.org/" |
38 | 38 | ||