]> git.ipfire.org Git - thirdparty/LuaJIT.git/commitdiff
Clarify name of MIT license.
authorMike Pall <mike>
Sun, 14 Aug 2011 19:11:58 +0000 (21:11 +0200)
committerMike Pall <mike>
Sun, 14 Aug 2011 19:18:58 +0000 (21:18 +0200)
14 files changed:
README
doc/luajit.html
dynasm/dasm_arm.h
dynasm/dasm_ppc.h
dynasm/dasm_proto.h
dynasm/dasm_x86.h
etc/luajit.1
lib/bc.lua
lib/bcsave.lua
lib/dis_arm.lua
lib/dis_x64.lua
lib/dis_x86.lua
lib/dump.lua
lib/v.lua

diff --git a/README b/README
index e288bdfb594f3382d9664941dacd47eb068b2626..e8756a0b79e2b678f8544c68906f85177e1613f4 100644 (file)
--- a/README
+++ b/README
@@ -6,7 +6,7 @@ LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language.
 Project Homepage: http://luajit.org/
 
 LuaJIT is Copyright (C) 2005-2011 Mike Pall.
-LuaJIT is free software, released under the MIT/X license.
+LuaJIT is free software, released under the MIT license.
 See full Copyright Notice in the COPYRIGHT file or in luajit.h.
 
 Documentation for LuaJIT is available in HTML format.
index 28ebff61d88cb2a57cd1191ae6d57e834679aa5f..1d5a0b6487d2c68da79bbaa1d5d44201ae202ec6 100644 (file)
@@ -62,7 +62,7 @@ programming language.
 <p>
 LuaJIT is Copyright &copy; 2005-2011 Mike Pall.
 LuaJIT is open source software, released under the
-<a href="http://www.opensource.org/licenses/mit-license.php"><span class="ext">&raquo;</span>&nbsp;MIT/X license</a>.
+<a href="http://www.opensource.org/licenses/mit-license.php"><span class="ext">&raquo;</span>&nbsp;MIT license</a>.
 </p>
 <p class="indent" style="color: #606060;">
 * Lua is a powerful, dynamic and light-weight programming language
index 87db7f000b01b4bfe975c5470fdc8cb0fbe5381f..43d2963379d996dc20fd1065226ac2b1be165576 100644 (file)
@@ -1,7 +1,7 @@
 /*
 ** DynASM ARM encoding engine.
 ** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
-** Released under the MIT/X license. See dynasm.lua for full copyright notice.
+** Released under the MIT license. See dynasm.lua for full copyright notice.
 */
 
 #include <stddef.h>
index 1c8580fb8568397689de8afce0ad68874059e87b..4b4ffe8ac70b5ad4957190a9e368dfd005e4dfc1 100644 (file)
@@ -1,7 +1,7 @@
 /*
 ** DynASM PPC encoding engine.
 ** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
-** Released under the MIT/X license. See dynasm.lua for full copyright notice.
+** Released under the MIT license. See dynasm.lua for full copyright notice.
 */
 
 #include <stddef.h>
index dc9ed51067fd30274ef7699a3f5962266834ff8a..3cc3af24a6bb3d6b111c2aeea8343c86bee53313 100644 (file)
@@ -1,7 +1,7 @@
 /*
 ** DynASM encoding engine prototypes.
 ** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
-** Released under the MIT/X license. See dynasm.lua for full copyright notice.
+** Released under the MIT license. See dynasm.lua for full copyright notice.
 */
 
 #ifndef _DASM_PROTO_H
index 23e213cb6e66f7df7093a5b4590120fc70c86c40..8f2dd1cac0b28df2cd3150267fd01ace9f7c5e0b 100644 (file)
@@ -1,7 +1,7 @@
 /*
 ** DynASM x86 encoding engine.
 ** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
-** Released under the MIT/X license. See dynasm.lua for full copyright notice.
+** Released under the MIT license. See dynasm.lua for full copyright notice.
 */
 
 #include <stddef.h>
index b8713d4edb95e7128ce95a8946a1c6d96d5e294d..57080bceef4e981be8685e522667461ec8765a91 100644 (file)
@@ -73,7 +73,7 @@ Runs some nested loops and shows the resulting traces.
 .PP
 \fBLuaJIT\fR is Copyright \(co 2005-2011 Mike Pall.
 .br
-\fBLuaJIT\fR is open source software, released under the MIT/X license.
+\fBLuaJIT\fR is open source software, released under the MIT license.
 .SH SEE ALSO
 .PP
 More details in the provided HTML docs or at:
index f4ee8e8ab35eb40689cf1b9f299e02e5c575ab30..c2c9502e4bce1337db59e97a380013ea09635699 100644 (file)
@@ -2,7 +2,7 @@
 -- LuaJIT bytecode listing module.
 --
 -- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
--- Released under the MIT/X license. See Copyright Notice in luajit.h
+-- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 --
 -- This module lists the bytecode of a Lua function. If it's loaded by -jbc
index c34bec8960df0876feb75ae1af17915601294a87..6c6d9f0ac86f2411d7d76975bc6a481c5bf405e2 100644 (file)
@@ -2,7 +2,7 @@
 -- LuaJIT module to save/list bytecode.
 --
 -- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
--- Released under the MIT/X license. See Copyright Notice in luajit.h
+-- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 --
 -- This module saves or lists the bytecode for an input file.
index e4e98afc062c1c3f53c150640771f92fc7ee7e05..c2d1408fbc91841d4c4b92278160ed78fb8580f0 100644 (file)
@@ -2,7 +2,7 @@
 -- LuaJIT ARM disassembler module.
 --
 -- Copyright (C) 2005-2010 Mike Pall. All rights reserved.
--- Released under the MIT/X license. See Copyright Notice in luajit.h
+-- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 -- This is a helper module used by the LuaJIT machine code dumper module.
 --
index 6ba4914306c692a6c789f45c8bb7b085c7238716..8c9cb4fa3b628b4637cedbcdc0699d3ed514ec8c 100644 (file)
@@ -2,7 +2,7 @@
 -- LuaJIT x64 disassembler wrapper module.
 --
 -- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
--- Released under the MIT/X license. See Copyright Notice in luajit.h
+-- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 -- This module just exports the 64 bit functions from the combined
 -- x86/x64 disassembler module. All the interesting stuff is there.
index f489a861238f054058e1e6cb8d4a8d73409e694a..d9a1f32134160bce7dbf783f9d63524351a15eaf 100644 (file)
@@ -2,7 +2,7 @@
 -- LuaJIT x86/x64 disassembler module.
 --
 -- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
--- Released under the MIT/X license. See Copyright Notice in luajit.h
+-- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 -- This is a helper module used by the LuaJIT machine code dumper module.
 --
index 6ada21bc01a6631e4a1cf84c1e1da594e7c7aecc..7ddc9c07960e4bebcf36459ce7c6e602a897b832 100644 (file)
@@ -2,7 +2,7 @@
 -- LuaJIT compiler dump module.
 --
 -- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
--- Released under the MIT/X license. See Copyright Notice in luajit.h
+-- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 --
 -- This module can be used to debug the JIT compiler itself. It dumps the
index d2a0c2350db2686cd239d50b17fc44e77bad15e8..ca9b4ac8c2e0a3c1d450e50bcf95d44504cddf8f 100644 (file)
--- a/lib/v.lua
+++ b/lib/v.lua
@@ -2,7 +2,7 @@
 -- Verbose mode of the LuaJIT compiler.
 --
 -- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
--- Released under the MIT/X license. See Copyright Notice in luajit.h
+-- Released under the MIT license. See Copyright Notice in luajit.h
 ----------------------------------------------------------------------------
 --
 -- This module shows verbose information about the progress of the