aboutsummaryrefslogtreecommitdiff
path: root/win32/lua5.1/include
diff options
context:
space:
mode:
Diffstat (limited to 'win32/lua5.1/include')
-rw-r--r--win32/lua5.1/include/lua.h8
-rw-r--r--win32/lua5.1/include/luaconf.h7
2 files changed, 9 insertions, 6 deletions
diff --git a/win32/lua5.1/include/lua.h b/win32/lua5.1/include/lua.h
index e4bdfd3b..a4b73e74 100644
--- a/win32/lua5.1/include/lua.h
+++ b/win32/lua5.1/include/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.218.1.5 2008/08/06 13:30:12 roberto Exp $ 2** $Id: lua.h,v 1.218.1.7 2012/01/13 20:36:20 roberto Exp $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** Lua.org, PUC-Rio, Brazil (http://www.lua.org) 4** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
5** See Copyright Notice at the end of this file 5** See Copyright Notice at the end of this file
@@ -17,9 +17,9 @@
17 17
18 18
19#define LUA_VERSION "Lua 5.1" 19#define LUA_VERSION "Lua 5.1"
20#define LUA_RELEASE "Lua 5.1.4" 20#define LUA_RELEASE "Lua 5.1.5"
21#define LUA_VERSION_NUM 501 21#define LUA_VERSION_NUM 501
22#define LUA_COPYRIGHT "Copyright (C) 1994-2008 Lua.org, PUC-Rio" 22#define LUA_COPYRIGHT "Copyright (C) 1994-2012 Lua.org, PUC-Rio"
23#define LUA_AUTHORS "R. Ierusalimschy, L. H. de Figueiredo & W. Celes" 23#define LUA_AUTHORS "R. Ierusalimschy, L. H. de Figueiredo & W. Celes"
24 24
25 25
@@ -362,7 +362,7 @@ struct lua_Debug {
362 362
363 363
364/****************************************************************************** 364/******************************************************************************
365* Copyright (C) 1994-2008 Lua.org, PUC-Rio. All rights reserved. 365* Copyright (C) 1994-2012 Lua.org, PUC-Rio. All rights reserved.
366* 366*
367* Permission is hereby granted, free of charge, to any person obtaining 367* Permission is hereby granted, free of charge, to any person obtaining
368* a copy of this software and associated documentation files (the 368* a copy of this software and associated documentation files (the
diff --git a/win32/lua5.1/include/luaconf.h b/win32/lua5.1/include/luaconf.h
index 5e7b98be..05354175 100644
--- a/win32/lua5.1/include/luaconf.h
+++ b/win32/lua5.1/include/luaconf.h
@@ -91,7 +91,9 @@
91 ".\\?.lua;" LUA_LDIR"?.lua;" LUA_LDIR"?\\init.lua;" \ 91 ".\\?.lua;" LUA_LDIR"?.lua;" LUA_LDIR"?\\init.lua;" \
92 LUA_CDIR"?.lua;" LUA_CDIR"?\\init.lua" 92 LUA_CDIR"?.lua;" LUA_CDIR"?\\init.lua"
93#define LUA_CPATH_DEFAULT \ 93#define LUA_CPATH_DEFAULT \
94 ".\\?.dll;" ".\\?51.dll;" LUA_CDIR"?.dll;" LUA_CDIR"?51.dll;" LUA_CDIR"clibs\\?.dll;" LUA_CDIR"clibs\\?51.dll;" LUA_CDIR"loadall.dll;" LUA_CDIR"clibs\\loadall.dll" 94 ".\\?.dll;" LUA_CDIR"?.dll;" LUA_CDIR"loadall.dll;" \
95 LUA_CDIR"clibs\\?.dll;" LUA_CDIR"clibs\\loadall.dll;" \
96 ".\\?51.dll;" LUA_CDIR"?51.dll;" LUA_CDIR"clibs\\?51.dll"
95 97
96#else 98#else
97#define LUA_ROOT "/usr/local/" 99#define LUA_ROOT "/usr/local/"
@@ -101,7 +103,8 @@
101 "./?.lua;" LUA_LDIR"?.lua;" LUA_LDIR"?/init.lua;" \ 103 "./?.lua;" LUA_LDIR"?.lua;" LUA_LDIR"?/init.lua;" \
102 LUA_CDIR"?.lua;" LUA_CDIR"?/init.lua" 104 LUA_CDIR"?.lua;" LUA_CDIR"?/init.lua"
103#define LUA_CPATH_DEFAULT \ 105#define LUA_CPATH_DEFAULT \
104 "./?.so;" "./lib?51.so;" LUA_CDIR"?.so;" LUA_CDIR"lib?51.so;" LUA_CDIR"loadall.so" 106 "./?.so;" LUA_CDIR"?.so;" LUA_CDIR"loadall.so;" \
107 "./lib?51.so;" LUA_CDIR"lib?51.so"
105#endif 108#endif
106 109
107 110