diff options
| author | Mike Pall <mike> | 2011-02-11 16:28:37 +0100 |
|---|---|---|
| committer | Mike Pall <mike> | 2011-02-11 16:28:37 +0100 |
| commit | 97d84111fd38ccd61897c21b05a10bacf4e3c829 (patch) | |
| tree | 59a322cfba4c5e90c8e00790ef20957267c1cb1f | |
| parent | 7c61073a303b3ae254fcf351e30d30c6df7ed61b (diff) | |
| download | luajit-2.0.0-beta6.tar.gz luajit-2.0.0-beta6.tar.bz2 luajit-2.0.0-beta6.zip | |
RELEASE LuaJIT-2.0.0-beta6v2.0.0-beta6
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | README | 2 | ||||
| -rw-r--r-- | doc/changes.html | 2 | ||||
| -rw-r--r-- | doc/install.html | 8 | ||||
| -rw-r--r-- | doc/running.html | 6 | ||||
| -rw-r--r-- | etc/luajit.pc | 2 | ||||
| -rw-r--r-- | src/luaconf.h | 4 | ||||
| -rw-r--r-- | src/luajit.h | 4 |
8 files changed, 15 insertions, 15 deletions
| @@ -16,7 +16,7 @@ | |||
| 16 | MAJVER= 2 | 16 | MAJVER= 2 |
| 17 | MINVER= 0 | 17 | MINVER= 0 |
| 18 | RELVER= 0 | 18 | RELVER= 0 |
| 19 | PREREL= -beta5 | 19 | PREREL= -beta6 |
| 20 | VERSION= $(MAJVER).$(MINVER).$(RELVER)$(PREREL) | 20 | VERSION= $(MAJVER).$(MINVER).$(RELVER)$(PREREL) |
| 21 | ABIVER= 5.1 | 21 | ABIVER= 5.1 |
| 22 | NODOTABIVER= 51 | 22 | NODOTABIVER= 51 |
| @@ -1,4 +1,4 @@ | |||
| 1 | README for LuaJIT 2.0.0-beta5 | 1 | README for LuaJIT 2.0.0-beta6 |
| 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/doc/changes.html b/doc/changes.html index 29124c5f..72f7ff5e 100644 --- a/doc/changes.html +++ b/doc/changes.html | |||
| @@ -59,7 +59,7 @@ div.major { max-width: 600px; padding: 1em; margin: 1em 0 1em 0; } | |||
| 59 | <div id="main"> | 59 | <div id="main"> |
| 60 | <p> | 60 | <p> |
| 61 | This is a list of changes between the released versions of LuaJIT.<br> | 61 | This is a list of changes between the released versions of LuaJIT.<br> |
| 62 | The current <span style="color: #c00000;">development version</span> is <strong>LuaJIT 2.0.0-beta5</strong>.<br> | 62 | The current <span style="color: #c00000;">development version</span> is <strong>LuaJIT 2.0.0-beta6</strong>.<br> |
| 63 | The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT 1.1.6</strong>. | 63 | The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT 1.1.6</strong>. |
| 64 | </p> | 64 | </p> |
| 65 | <p> | 65 | <p> |
diff --git a/doc/install.html b/doc/install.html index cdb9075d..e4dbef8f 100644 --- a/doc/install.html +++ b/doc/install.html | |||
| @@ -164,8 +164,8 @@ open a terminal window and change to this directory. Now unpack the archive | |||
| 164 | and change to the newly created directory: | 164 | and change to the newly created directory: |
| 165 | </p> | 165 | </p> |
| 166 | <pre class="code"> | 166 | <pre class="code"> |
| 167 | tar zxf LuaJIT-2.0.0-beta5.tar.gz | 167 | tar zxf LuaJIT-2.0.0-beta6.tar.gz |
| 168 | cd LuaJIT-2.0.0-beta5</pre> | 168 | cd LuaJIT-2.0.0-beta6</pre> |
| 169 | <h3>Building LuaJIT</h3> | 169 | <h3>Building LuaJIT</h3> |
| 170 | <p> | 170 | <p> |
| 171 | The supplied Makefiles try to auto-detect the settings needed for your | 171 | The supplied Makefiles try to auto-detect the settings needed for your |
| @@ -215,11 +215,11 @@ Obviously the prefixes given during build and installation need to be the same. | |||
| 215 | <p style="color: #c00000;"> | 215 | <p style="color: #c00000;"> |
| 216 | Note: to avoid overwriting a previous version, the beta test releases | 216 | Note: to avoid overwriting a previous version, the beta test releases |
| 217 | only install the LuaJIT executable under the versioned name (i.e. | 217 | only install the LuaJIT executable under the versioned name (i.e. |
| 218 | <tt>luajit-2.0.0-beta5</tt>). You probably want to create a symlink | 218 | <tt>luajit-2.0.0-beta6</tt>). You probably want to create a symlink |
| 219 | for convenience, with a command like this: | 219 | for convenience, with a command like this: |
| 220 | </p> | 220 | </p> |
| 221 | <pre class="code" style="color: #c00000;"> | 221 | <pre class="code" style="color: #c00000;"> |
| 222 | sudo ln -sf luajit-2.0.0-beta5 /usr/local/bin/luajit | 222 | sudo ln -sf luajit-2.0.0-beta6 /usr/local/bin/luajit |
| 223 | </pre> | 223 | </pre> |
| 224 | 224 | ||
| 225 | <h2 id="windows">Windows Systems</h2> | 225 | <h2 id="windows">Windows Systems</h2> |
diff --git a/doc/running.html b/doc/running.html index ba55e56d..cf221a4d 100644 --- a/doc/running.html +++ b/doc/running.html | |||
| @@ -85,11 +85,11 @@ interactive mode, too. | |||
| 85 | <p class="indent" style="color: #c00000;"> | 85 | <p class="indent" style="color: #c00000;"> |
| 86 | Note: the beta test releases only install under the versioned name on | 86 | Note: the beta test releases only install under the versioned name on |
| 87 | POSIX systems (to avoid overwriting a previous version). You either need | 87 | POSIX systems (to avoid overwriting a previous version). You either need |
| 88 | to type <tt>luajit-2.0.0-beta5</tt> to start it or create a symlink | 88 | to type <tt>luajit-2.0.0-beta6</tt> to start it or create a symlink |
| 89 | with a command like this: | 89 | with a command like this: |
| 90 | </p> | 90 | </p> |
| 91 | <pre class="code" style="color: #c00000;"> | 91 | <pre class="code" style="color: #c00000;"> |
| 92 | sudo ln -sf luajit-2.0.0-beta5 /usr/local/bin/luajit | 92 | sudo ln -sf luajit-2.0.0-beta6 /usr/local/bin/luajit |
| 93 | </pre> | 93 | </pre> |
| 94 | <p> | 94 | <p> |
| 95 | Unlike previous versions <b>optimization is turned on by default</b> in | 95 | Unlike previous versions <b>optimization is turned on by default</b> in |
| @@ -135,7 +135,7 @@ itself. For a description of their options and output format, please | |||
| 135 | read the comment block at the start of their source. | 135 | read the comment block at the start of their source. |
| 136 | They can be found in the <tt>lib</tt> directory of the source | 136 | They can be found in the <tt>lib</tt> directory of the source |
| 137 | distribution or installed under the <tt>jit</tt> directory. By default | 137 | distribution or installed under the <tt>jit</tt> directory. By default |
| 138 | this is <tt>/usr/local/share/luajit-2.0.0-beta5/jit</tt> on POSIX | 138 | this is <tt>/usr/local/share/luajit-2.0.0-beta6/jit</tt> on POSIX |
| 139 | systems. | 139 | systems. |
| 140 | </p> | 140 | </p> |
| 141 | 141 | ||
diff --git a/etc/luajit.pc b/etc/luajit.pc index 2392ec90..6ead2678 100644 --- a/etc/luajit.pc +++ b/etc/luajit.pc | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | majver=2 | 2 | majver=2 |
| 3 | minver=0 | 3 | minver=0 |
| 4 | relver=0 | 4 | relver=0 |
| 5 | version=${majver}.${minver}.${relver}-beta5 | 5 | version=${majver}.${minver}.${relver}-beta6 |
| 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 a1fefaa8..75c88581 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-beta5/" | 29 | #define LUA_JDIR LUA_XROOT "share/luajit-2.0.0-beta6/" |
| 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-beta5/" | 34 | #define LUA_JDIR LUA_ROOT "share/luajit-2.0.0-beta6/" |
| 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 87046653..f38d58a1 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-beta5" | 33 | #define LUAJIT_VERSION "LuaJIT 2.0.0-beta6" |
| 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_beta5 | 35 | #define LUAJIT_VERSION_SYM luaJIT_version_2_0_0_beta6 |
| 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 | ||
