View | Details | Raw Unified | Return to bug 104017
Collapse All | Expand All

(-)bsd.lua.mk (-5 / +6 lines)
Lines 76-88 Link Here
76
# LUA_INCDIR	- The directory where Lua and tolua header files are installed.
76
# LUA_INCDIR	- The directory where Lua and tolua header files are installed.
77
# LUA_LIBDIR	- The directory where Lua and tolua libraries are installed.
77
# LUA_LIBDIR	- The directory where Lua and tolua libraries are installed.
78
# LUA_MODLIBDIR	- The directory where Lua modules (.lua) are installed.
78
# LUA_MODLIBDIR	- The directory where Lua modules (.lua) are installed.
79
# LUA_MODSHAREDIR	- The directory where Lua module libraries (.so) are
79
# LUA_MODSHAREDIR
80
#					  installed.
80
#				- The directory where Lua module libraries (.so) are installed.
81
# LUA_PKGNAMEPREFIX	- The package name prefix used by Lua modules.
81
# LUA_PKGNAMEPREFIX
82
#				- The package name prefix used by Lua modules.
82
#
83
#
83
# Examples:
84
# Examples:
84
# - A port that needs Lua 4.0 and tolua (also 4.0) libraries (lua for building
85
# - A port that needs Lua 4.0 and tolua (also 4.0) libraries (lua for building
85
#   and running and tolua for building).
86
#	and running and tolua for building).
86
#	USE_LUA=	4.0
87
#	USE_LUA=	4.0
87
#	LUA_COMPS=	lua tolua
88
#	LUA_COMPS=	lua tolua
88
# - A port that needs Ruby bindings for Lua 5.0 for building and running.
89
# - A port that needs Ruby bindings for Lua 5.0 for building and running.
Lines 94-100 Link Here
94
# - A port that needs Lua version 5.0 or higher for building and running.
95
# - A port that needs Lua version 5.0 or higher for building and running.
95
#	USE_LUA=	5.0+
96
#	USE_LUA=	5.0+
96
# - A port that needs Lua of any version other than 5.1 for building and
97
# - A port that needs Lua of any version other than 5.1 for building and
97
#   running.
98
#	running.
98
#	USE_LUA_NOT=5.1
99
#	USE_LUA_NOT=5.1
99
#
100
#

Return to bug 104017