Handling of LUA_PATH/LUA_CPATH moved from package library to stand

alone interpreter (so that 'lua.c' concentrates all handling of
environment variables)
This commit is contained in:
Roberto Ierusalimschy
2016-07-18 14:55:59 -03:00
parent 788109a3de
commit de3fd8ab83
3 changed files with 109 additions and 95 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: luaconf.h,v 1.254 2015/10/21 18:17:40 roberto Exp roberto $
** $Id: luaconf.h,v 1.255 2016/05/01 20:06:09 roberto Exp roberto $
** Configuration file for Lua
** See Copyright Notice in lua.h
*/
@@ -158,6 +158,18 @@
** ===================================================================
*/
/*
** LUA_PATH_SEP is the character that separates templates in a path.
** LUA_PATH_MARK is the string that marks the substitution points in a
** template.
** LUA_EXEC_DIR in a Windows path is replaced by the executable's
** directory.
*/
#define LUA_PATH_SEP ";"
#define LUA_PATH_MARK "?"
#define LUA_EXEC_DIR "!"
/*
@@ LUA_PATH_DEFAULT is the default path that Lua uses to look for
** Lua libraries.