upgraded ngx_iconv to 0.10rc3, ngx_form_input to 0.07rc5, ngx_array_var to 0.03rc1, and ngx_set_misc to 0.22rc1; now --with-debug option also affects luajit2.0; disabled target stripping in luajit2.0; released ngx_openresty 1.0.4.1rc5.

This commit is contained in:
agentzh (章亦春)
2011-07-26 11:56:29 +08:00
parent 8ba0a37a42
commit 0bf8bbe040
4 changed files with 120 additions and 66 deletions

8
util/configure vendored
View File

@ -324,10 +324,14 @@ sub build_resty_opts {
cd $luajit_src;
my $extra_opts = '';
my $extra_opts = ' TARGET_STRIP=';
if (defined $cc) {
$extra_opts .= " CC=$cc";
$extra_opts .= " HOST_CC=$cc";
}
if ($opts->{debug}) {
$extra_opts .= ' CCDEBUG=-g Q=';
}
shell "make$extra_opts PREFIX=$luajit_prefix", $dry_run;