Skip to content

Commit 6edfd64

Browse files
committed
1 parent e183a9b commit 6edfd64

File tree

241 files changed

+20678
-5070
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

241 files changed

+20678
-5070
lines changed

build/luajit-2.1.0b3/.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
*.[oa]
2+
*.so
3+
*.obj
4+
*.lib
5+
*.exp
6+
*.dll
7+
*.exe
8+
*.manifest
9+
*.dmp
10+
*.swp
11+
.tags

build/luajit-2.1.0b3/COPYRIGHT

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
===============================================================================
2-
LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/
2+
LuaJIT -- a Just-In-Time Compiler for Lua. https://luajit.org/
33

4-
Copyright (C) 2005-2017 Mike Pall. All rights reserved.
4+
Copyright (C) 2005-2021 Mike Pall. All rights reserved.
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
THE SOFTWARE.
2323

24-
[ MIT license: http://www.opensource.org/licenses/mit-license.php ]
24+
[ MIT license: https://www.opensource.org/licenses/mit-license.php ]
2525

2626
===============================================================================
2727
[ LuaJIT includes code from Lua 5.1/5.2, which has this license statement: ]
@@ -51,6 +51,6 @@ THE SOFTWARE.
5151

5252
This is a version (aka dlmalloc) of malloc/free/realloc written by
5353
Doug Lea and released to the public domain, as explained at
54-
http://creativecommons.org/licenses/publicdomain
54+
https://creativecommons.org/licenses/publicdomain
5555

5656
===============================================================================

build/luajit-2.1.0b3/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# For MSVC, please follow the instructions given in src/msvcbuild.bat.
1111
# For MinGW and Cygwin, cd to src and run make with the Makefile there.
1212
#
13-
# Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h
13+
# Copyright (C) 2005-2021 Mike Pall. See Copyright Notice in luajit.h
1414
##############################################################################
1515

1616
MAJVER= 2
@@ -75,7 +75,7 @@ SYMLINK= ln -sf
7575
INSTALL_X= install -m 0755
7676
INSTALL_F= install -m 0644
7777
UNINSTALL= $(RM)
78-
LDCONFIG= ldconfig -n
78+
LDCONFIG= ldconfig -n 2>/dev/null
7979
SED_PC= sed -e "s|^prefix=.*|prefix=$(PREFIX)|" \
8080
-e "s|^multilib=.*|multilib=$(MULTILIB)|"
8181

@@ -121,7 +121,7 @@ install: $(INSTALL_DEP)
121121
$(RM) $(INSTALL_DYN) $(INSTALL_SHORT1) $(INSTALL_SHORT2)
122122
cd src && test -f $(FILE_SO) && \
123123
$(INSTALL_X) $(FILE_SO) $(INSTALL_DYN) && \
124-
$(LDCONFIG) $(INSTALL_LIB) && \
124+
( $(LDCONFIG) $(INSTALL_LIB) || : ) && \
125125
$(SYMLINK) $(INSTALL_SONAME) $(INSTALL_SHORT1) && \
126126
$(SYMLINK) $(INSTALL_SONAME) $(INSTALL_SHORT2) || :
127127
cd etc && $(INSTALL_F) $(FILE_MAN) $(INSTALL_MAN)

build/luajit-2.1.0b3/README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ README for LuaJIT 2.1.0-beta3
33

44
LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language.
55

6-
Project Homepage: http://luajit.org/
6+
Project Homepage: https://luajit.org/
77

8-
LuaJIT is Copyright (C) 2005-2017 Mike Pall.
8+
LuaJIT is Copyright (C) 2005-2021 Mike Pall.
99
LuaJIT is free software, released under the MIT license.
1010
See full Copyright Notice in the COPYRIGHT file or in luajit.h.
1111

build/luajit-2.1.0b3/doc/bluequad-print.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 2004-2017 Mike Pall.
1+
/* Copyright (C) 2004-2021 Mike Pall.
22
*
33
* You are welcome to use the general ideas of this design for your own sites.
44
* But please do not steal the stylesheet, the layout or the color scheme.

build/luajit-2.1.0b3/doc/bluequad.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 2004-2017 Mike Pall.
1+
/* Copyright (C) 2004-2021 Mike Pall.
22
*
33
* You are welcome to use the general ideas of this design for your own sites.
44
* But please do not steal the stylesheet, the layout or the color scheme.

build/luajit-2.1.0b3/doc/contact.html

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
1+
<!DOCTYPE html>
22
<html>
33
<head>
44
<title>Contact</title>
5-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6-
<meta name="Author" content="Mike Pall">
7-
<meta name="Copyright" content="Copyright (C) 2005-2017, Mike Pall">
5+
<meta charset="utf-8">
6+
<meta name="Copyright" content="Copyright (C) 2005-2021">
87
<meta name="Language" content="en">
98
<link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
109
<link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
1110
</head>
1211
<body>
1312
<div id="site">
14-
<a href="http://luajit.org"><span>Lua<span id="logo">JIT</span></span></a>
13+
<a href="https://luajit.org"><span>Lua<span id="logo">JIT</span></span></a>
1514
</div>
1615
<div id="head">
1716
<h1>Contact</h1>
@@ -20,7 +19,7 @@ <h1>Contact</h1>
2019
<ul><li>
2120
<a href="luajit.html">LuaJIT</a>
2221
<ul><li>
23-
<a href="http://luajit.org/download.html">Download <span class="ext">&raquo;</span></a>
22+
<a href="https://luajit.org/download.html">Download <span class="ext">&raquo;</span></a>
2423
</li><li>
2524
<a href="install.html">Installation</a>
2625
</li><li>
@@ -38,6 +37,8 @@ <h1>Contact</h1>
3837
<a href="ext_ffi_semantics.html">FFI Semantics</a>
3938
</li></ul>
4039
</li><li>
40+
<a href="ext_buffer.html">String Buffers</a>
41+
</li><li>
4142
<a href="ext_jit.html">jit.* Library</a>
4243
</li><li>
4344
<a href="ext_c_api.html">Lua/C API</a>
@@ -46,28 +47,23 @@ <h1>Contact</h1>
4647
</li></ul>
4748
</li><li>
4849
<a href="status.html">Status</a>
49-
<ul><li>
50-
<a href="changes.html">Changes</a>
51-
</li></ul>
5250
</li><li>
5351
<a href="faq.html">FAQ</a>
5452
</li><li>
55-
<a href="http://luajit.org/performance.html">Performance <span class="ext">&raquo;</span></a>
56-
</li><li>
5753
<a href="http://wiki.luajit.org/">Wiki <span class="ext">&raquo;</span></a>
5854
</li><li>
59-
<a href="http://luajit.org/list.html">Mailing List <span class="ext">&raquo;</span></a>
55+
<a href="https://luajit.org/list.html">Mailing List <span class="ext">&raquo;</span></a>
6056
</li></ul>
6157
</div>
6258
<div id="main">
6359
<p>
6460
If you want to report bugs, propose fixes or suggest enhancements,
6561
please use the
66-
<a href="https://github.com/LuaJIT/LuaJIT/issues">GitHub issue tracker</a>.
62+
<a href="https://github.com/LuaJIT/LuaJIT/issues"><span class="ext">&raquo;</span>&nbsp;GitHub issue tracker</a>.
6763
</p>
6864
<p>
6965
Please send general questions to the
70-
<a href="http://luajit.org/list.html"><span class="ext">&raquo;</span>&nbsp;LuaJIT mailing list</a>.
66+
<a href="https://luajit.org/list.html"><span class="ext">&raquo;</span>&nbsp;LuaJIT mailing list</a>.
7167
</p>
7268
<p>
7369
You can also send any questions you have directly to me:
@@ -93,15 +89,15 @@ <h1>Contact</h1>
9389
<h2>Copyright</h2>
9490
<p>
9591
All documentation is
96-
Copyright &copy; 2005-2017 Mike Pall.
92+
Copyright &copy; 2005-2021 Mike Pall.
9793
</p>
9894

9995

10096
<br class="flush">
10197
</div>
10298
<div id="foot">
10399
<hr class="hide">
104-
Copyright &copy; 2005-2017 Mike Pall
100+
Copyright &copy; 2005-2021
105101
<span class="noprint">
106102
&middot;
107103
<a href="contact.html">Contact</a>

0 commit comments

Comments
 (0)