mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 11:40:44 +00:00
Bump LuaJIT to git HEAD >= 2.0.4. BUILD_LUNATIC.
git-svn-id: https://svn.eduke32.com/eduke32@6007 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
030bc75786
commit
8e7939fdc2
6 changed files with 9 additions and 9 deletions
|
@ -11,7 +11,7 @@
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
|
|
||||||
local jit = require("jit")
|
local jit = require("jit")
|
||||||
assert(jit.version_num == 20003, "LuaJIT core/library version mismatch")
|
assert(jit.version_num == 20004, "LuaJIT core/library version mismatch")
|
||||||
local bit = require("bit")
|
local bit = require("bit")
|
||||||
|
|
||||||
-- Symbol name prefix for LuaJIT bytecode.
|
-- Symbol name prefix for LuaJIT bytecode.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
** Configuration header.
|
** Configuration header.
|
||||||
** Copyright (C) 2005-2014 Mike Pall. See Copyright Notice in luajit.h
|
** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef luaconf_h
|
#ifndef luaconf_h
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
#endif
|
#endif
|
||||||
#define LUA_LROOT "/usr/local"
|
#define LUA_LROOT "/usr/local"
|
||||||
#define LUA_LUADIR "/lua/5.1/"
|
#define LUA_LUADIR "/lua/5.1/"
|
||||||
#define LUA_LJDIR "/luajit-2.0.3/"
|
#define LUA_LJDIR "/luajit-2.0.4/"
|
||||||
|
|
||||||
#ifdef LUA_ROOT
|
#ifdef LUA_ROOT
|
||||||
#define LUA_JROOT LUA_ROOT
|
#define LUA_JROOT LUA_ROOT
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
** LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/
|
** LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/
|
||||||
**
|
**
|
||||||
** Copyright (C) 2005-2014 Mike Pall. All rights reserved.
|
** Copyright (C) 2005-2016 Mike Pall. All rights reserved.
|
||||||
**
|
**
|
||||||
** Permission is hereby granted, free of charge, to any person obtaining
|
** Permission is hereby granted, free of charge, to any person obtaining
|
||||||
** a copy of this software and associated documentation files (the
|
** a copy of this software and associated documentation files (the
|
||||||
|
@ -30,10 +30,10 @@
|
||||||
|
|
||||||
#include "lua.h"
|
#include "lua.h"
|
||||||
|
|
||||||
#define LUAJIT_VERSION "LuaJIT 2.0.3"
|
#define LUAJIT_VERSION "LuaJIT 2.0.4"
|
||||||
#define LUAJIT_VERSION_NUM 20003 /* Version 2.0.3 = 02.00.03. */
|
#define LUAJIT_VERSION_NUM 20004 /* Version 2.0.4 = 02.00.04. */
|
||||||
#define LUAJIT_VERSION_SYM luaJIT_version_2_0_3
|
#define LUAJIT_VERSION_SYM luaJIT_version_2_0_4
|
||||||
#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2014 Mike Pall"
|
#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2016 Mike Pall"
|
||||||
#define LUAJIT_URL "http://luajit.org/"
|
#define LUAJIT_URL "http://luajit.org/"
|
||||||
|
|
||||||
/* Modes for luaJIT_setmode. */
|
/* Modes for luaJIT_setmode. */
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
** Standard library header.
|
** Standard library header.
|
||||||
** Copyright (C) 2005-2014 Mike Pall. See Copyright Notice in luajit.h
|
** Copyright (C) 2005-2016 Mike Pall. See Copyright Notice in luajit.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LUALIB_H
|
#ifndef _LUALIB_H
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue