diff --git a/build/luajit-2.1.0b3/.gitignore b/build/luajit-2.1.0b3/.gitignore new file mode 100644 index 000000000..1a07bf75b --- /dev/null +++ b/build/luajit-2.1.0b3/.gitignore @@ -0,0 +1,11 @@ +*.[oa] +*.so +*.obj +*.lib +*.exp +*.dll +*.exe +*.manifest +*.dmp +*.swp +.tags diff --git a/build/luajit-2.1.0b3/COPYRIGHT b/build/luajit-2.1.0b3/COPYRIGHT index 6ed40025a..9c2bca55a 100644 --- a/build/luajit-2.1.0b3/COPYRIGHT +++ b/build/luajit-2.1.0b3/COPYRIGHT @@ -1,7 +1,7 @@ =============================================================================== -LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/ +LuaJIT -- a Just-In-Time Compiler for Lua. https://luajit.org/ -Copyright (C) 2005-2017 Mike Pall. All rights reserved. +Copyright (C) 2005-2021 Mike Pall. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy 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, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -[ MIT license: http://www.opensource.org/licenses/mit-license.php ] +[ MIT license: https://www.opensource.org/licenses/mit-license.php ] =============================================================================== [ LuaJIT includes code from Lua 5.1/5.2, which has this license statement: ] @@ -51,6 +51,6 @@ THE SOFTWARE. This is a version (aka dlmalloc) of malloc/free/realloc written by Doug Lea and released to the public domain, as explained at -http://creativecommons.org/licenses/publicdomain +https://creativecommons.org/licenses/publicdomain =============================================================================== diff --git a/build/luajit-2.1.0b3/Makefile b/build/luajit-2.1.0b3/Makefile index 0f9330893..aa1b84bd7 100644 --- a/build/luajit-2.1.0b3/Makefile +++ b/build/luajit-2.1.0b3/Makefile @@ -10,7 +10,7 @@ # For MSVC, please follow the instructions given in src/msvcbuild.bat. # For MinGW and Cygwin, cd to src and run make with the Makefile there. # -# Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h +# Copyright (C) 2005-2021 Mike Pall. See Copyright Notice in luajit.h ############################################################################## MAJVER= 2 @@ -75,7 +75,7 @@ SYMLINK= ln -sf INSTALL_X= install -m 0755 INSTALL_F= install -m 0644 UNINSTALL= $(RM) -LDCONFIG= ldconfig -n +LDCONFIG= ldconfig -n 2>/dev/null SED_PC= sed -e "s|^prefix=.*|prefix=$(PREFIX)|" \ -e "s|^multilib=.*|multilib=$(MULTILIB)|" @@ -121,7 +121,7 @@ install: $(INSTALL_DEP) $(RM) $(INSTALL_DYN) $(INSTALL_SHORT1) $(INSTALL_SHORT2) cd src && test -f $(FILE_SO) && \ $(INSTALL_X) $(FILE_SO) $(INSTALL_DYN) && \ - $(LDCONFIG) $(INSTALL_LIB) && \ + ( $(LDCONFIG) $(INSTALL_LIB) || : ) && \ $(SYMLINK) $(INSTALL_SONAME) $(INSTALL_SHORT1) && \ $(SYMLINK) $(INSTALL_SONAME) $(INSTALL_SHORT2) || : cd etc && $(INSTALL_F) $(FILE_MAN) $(INSTALL_MAN) diff --git a/build/luajit-2.1.0b3/README b/build/luajit-2.1.0b3/README index 2b9ae9d22..c9f7d9ad9 100644 --- a/build/luajit-2.1.0b3/README +++ b/build/luajit-2.1.0b3/README @@ -3,9 +3,9 @@ README for LuaJIT 2.1.0-beta3 LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language. -Project Homepage: http://luajit.org/ +Project Homepage: https://luajit.org/ -LuaJIT is Copyright (C) 2005-2017 Mike Pall. +LuaJIT is Copyright (C) 2005-2021 Mike Pall. LuaJIT is free software, released under the MIT license. See full Copyright Notice in the COPYRIGHT file or in luajit.h. diff --git a/build/luajit-2.1.0b3/doc/bluequad-print.css b/build/luajit-2.1.0b3/doc/bluequad-print.css index 62e1c1659..0b385cee4 100644 --- a/build/luajit-2.1.0b3/doc/bluequad-print.css +++ b/build/luajit-2.1.0b3/doc/bluequad-print.css @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2017 Mike Pall. +/* Copyright (C) 2004-2021 Mike Pall. * * You are welcome to use the general ideas of this design for your own sites. * But please do not steal the stylesheet, the layout or the color scheme. diff --git a/build/luajit-2.1.0b3/doc/bluequad.css b/build/luajit-2.1.0b3/doc/bluequad.css index be2c4bf2d..86cd9ac0d 100644 --- a/build/luajit-2.1.0b3/doc/bluequad.css +++ b/build/luajit-2.1.0b3/doc/bluequad.css @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2017 Mike Pall. +/* Copyright (C) 2004-2021 Mike Pall. * * You are welcome to use the general ideas of this design for your own sites. * But please do not steal the stylesheet, the layout or the color scheme. diff --git a/build/luajit-2.1.0b3/doc/contact.html b/build/luajit-2.1.0b3/doc/contact.html index fe4751c0e..c253a08be 100644 --- a/build/luajit-2.1.0b3/doc/contact.html +++ b/build/luajit-2.1.0b3/doc/contact.html @@ -1,17 +1,16 @@ - + Contact - - - + +
-Lua +Lua

If you want to report bugs, propose fixes or suggest enhancements, please use the -GitHub issue tracker. +» GitHub issue tracker.

Please send general questions to the -» LuaJIT mailing list. +» LuaJIT mailing list.

You can also send any questions you have directly to me: @@ -93,7 +89,7 @@

Contact

Copyright

All documentation is -Copyright © 2005-2017 Mike Pall. +Copyright © 2005-2021 Mike Pall.

@@ -101,7 +97,7 @@

Copyright