change: we no longer bundle the standard Lua 5.1 interpreter.

This commit is contained in:
Yichun Zhang (agentzh)
2017-04-08 17:33:18 -07:00
parent da979a620a
commit 1fbcf153e3
3 changed files with 396 additions and 821 deletions

10
util/configure vendored
View File

@ -168,13 +168,13 @@ for my $opt (@ARGV) {
}
} elsif ($opt eq '--without-lua51') {
undef $resty_opts{lua};
die "ERROR: --without-lua51 is no longer supported.\n";
} elsif ($opt eq '--with-lua51') {
$resty_opts{lua} = 1;
die "ERROR: --with-lua51 is no longer supported.\n";
} elsif ($opt =~ /^--with-lua51=(.*)/) {
$resty_opts{lua_path} = $1;
die "ERROR: --with-lua51=PATH is no longer supported.\n";
} elsif ($opt eq '--without-http_rewrite_module') {
warn "WARNING: ngx_devel_kit is automatically disabled ",
@ -1146,10 +1146,6 @@ _EOC_
--without-lua_resty_lrucache disable the lua-resty-lrucache library
--without-lua_resty_core disable the lua-resty-core library
--with-lua51 enable and build the bundled standard Lua 5.1 interpreter
--without-lua51 disable the bundled standard Lua 5.1 interpreter
--with-lua51=DIR specify the external installation of Lua 5.1 by DIR
--with-luajit enable and build the bundled LuaJIT 2.1 (the default)
--with-luajit=DIR use the external LuaJIT 2.1 installation specified by DIR
--with-luajit-xcflags=FLAGS Specify extra C compiler flags for LuaJIT 2.1