diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-07-28 13:32:15 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-07-28 13:32:15 +0200 |
commit | e855ccf90ae7910db3fa2ea3123ce9706636426a (patch) | |
tree | 7662ff5bc19a756571e6ed77b1313c050aaed080 /src/Makefile | |
parent | e2db695d313174f6d6e6a79388a262e4e53d387e (diff) | |
download | vim-e855ccf90ae7910db3fa2ea3123ce9706636426a.zip |
updated for version 7.4a.045
Problem: Configure does not always find the right library for Lua. Missing
support for LuaJit.
Solution: Improve the configure detection of Lua. (Hiroshi Shirosaki)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 861068bf9..db506878b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -381,8 +381,12 @@ CClink = $(CC) # LUA # Uncomment one of these when you want to include the Lua interface. # First one is for static linking, second one for dynamic loading. +# Use --with-luajit if you want to use LuaJIT instead of Lua. +# Set PATH environment variable to find lua or luajit executable. #CONF_OPT_LUA = --enable-luainterp #CONF_OPT_LUA = --enable-luainterp=dynamic +#CONF_OPT_LUA = --enable-luainterp --with-luajit +#CONF_OPT_LUA = --enable-luainterp=dynamic --with-luajit # Lua installation dir (when not set uses $LUA_PREFIX or defaults to /usr) #CONF_OPT_LUA_PREFIX = --with-lua-prefix=/usr/local |