comparison src/Makefile @ 5240:da95a7f1d5a8 v7.4a.045

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)
author Bram Moolenaar <bram@vim.org>
date Sun, 28 Jul 2013 13:32:15 +0200
parents 4104bed69ea5
children 09c88160095d
comparison
equal deleted inserted replaced
5239:11cd8d58372e 5240:da95a7f1d5a8
379 #CONF_OPT_FAIL = --enable-fail-if-missing 379 #CONF_OPT_FAIL = --enable-fail-if-missing
380 380
381 # LUA 381 # LUA
382 # Uncomment one of these when you want to include the Lua interface. 382 # Uncomment one of these when you want to include the Lua interface.
383 # First one is for static linking, second one for dynamic loading. 383 # First one is for static linking, second one for dynamic loading.
384 # Use --with-luajit if you want to use LuaJIT instead of Lua.
385 # Set PATH environment variable to find lua or luajit executable.
384 #CONF_OPT_LUA = --enable-luainterp 386 #CONF_OPT_LUA = --enable-luainterp
385 #CONF_OPT_LUA = --enable-luainterp=dynamic 387 #CONF_OPT_LUA = --enable-luainterp=dynamic
388 #CONF_OPT_LUA = --enable-luainterp --with-luajit
389 #CONF_OPT_LUA = --enable-luainterp=dynamic --with-luajit
386 # Lua installation dir (when not set uses $LUA_PREFIX or defaults to /usr) 390 # Lua installation dir (when not set uses $LUA_PREFIX or defaults to /usr)
387 #CONF_OPT_LUA_PREFIX = --with-lua-prefix=/usr/local 391 #CONF_OPT_LUA_PREFIX = --with-lua-prefix=/usr/local
388 392
389 # MZSCHEME 393 # MZSCHEME
390 # Uncomment this when you want to include the MzScheme interface. 394 # Uncomment this when you want to include the MzScheme interface.