mirror of
https://github.com/openresty/openresty.git
synced 2024-10-13 00:29:41 +00:00
Compare commits
6 Commits
v1.0.10.31
...
v1.0.10.35
Author | SHA1 | Date | |
---|---|---|---|
06312e656b | |||
1bc8f9b8be | |||
6d1405ceaa | |||
af701e5b64 | |||
5fb3e869e5 | |||
35afee967e |
@ -2,6 +2,7 @@ package t::Config;
|
|||||||
|
|
||||||
use Test::Base -Base;
|
use Test::Base -Base;
|
||||||
use IPC::Run3 qw( run3 );
|
use IPC::Run3 qw( run3 );
|
||||||
|
use Cwd qw( cwd );
|
||||||
|
|
||||||
our @EXPORT = qw(
|
our @EXPORT = qw(
|
||||||
run_tests
|
run_tests
|
||||||
@ -13,6 +14,7 @@ sub shell (@);
|
|||||||
sub cd ($);
|
sub cd ($);
|
||||||
|
|
||||||
our $BuildRoot;
|
our $BuildRoot;
|
||||||
|
our $DistRoot;
|
||||||
our @SavedTests;
|
our @SavedTests;
|
||||||
our $RootDir = `pwd`;
|
our $RootDir = `pwd`;
|
||||||
chomp $RootDir;
|
chomp $RootDir;
|
||||||
@ -23,6 +25,7 @@ sub run_tests {
|
|||||||
|
|
||||||
cd "ngx_openresty-$ver";
|
cd "ngx_openresty-$ver";
|
||||||
|
|
||||||
|
$DistRoot = cwd();
|
||||||
$BuildRoot = File::Spec->rel2abs("./build");
|
$BuildRoot = File::Spec->rel2abs("./build");
|
||||||
|
|
||||||
for my $block (blocks()) {
|
for my $block (blocks()) {
|
||||||
@ -52,6 +55,7 @@ sub run_test ($) {
|
|||||||
$expected_err = '';
|
$expected_err = '';
|
||||||
} else {
|
} else {
|
||||||
$expected_err =~ s/\$OPENRESTY_BUILD_DIR\b/$BuildRoot/gs;
|
$expected_err =~ s/\$OPENRESTY_BUILD_DIR\b/$BuildRoot/gs;
|
||||||
|
$expected_err =~ s/\$OPENRESTY_DIR\b/$DistRoot/gs;
|
||||||
}
|
}
|
||||||
|
|
||||||
my $expected_out = $block->out;
|
my $expected_out = $block->out;
|
||||||
@ -64,6 +68,7 @@ sub run_test ($) {
|
|||||||
#die $BuildRoot;
|
#die $BuildRoot;
|
||||||
|
|
||||||
$stdout =~ s/\Q$BuildRoot\E/\$OPENRESTY_BUILD_DIR/g;
|
$stdout =~ s/\Q$BuildRoot\E/\$OPENRESTY_BUILD_DIR/g;
|
||||||
|
$stdout =~ s/\Q$DistRoot\E/\$OPENRESTY_DIR/g;
|
||||||
|
|
||||||
is($stdout, $expected_out, "$name - stdout ok");
|
is($stdout, $expected_out, "$name - stdout ok");
|
||||||
is($stderr, $expected_err, "$name - stderr ok");
|
is($stderr, $expected_err, "$name - stderr ok");
|
||||||
|
364
t/sanity.t
364
t/sanity.t
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
use t::Config;
|
use t::Config;
|
||||||
|
|
||||||
plan tests => 151;
|
plan tests => 155;
|
||||||
|
|
||||||
#no_diff();
|
#no_diff();
|
||||||
|
|
||||||
@ -208,11 +208,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -237,7 +237,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -268,11 +268,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -297,7 +297,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall -pedantic" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall -pedantic" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=gcc
|
||||||
@ -326,7 +326,7 @@ platform: linux (linux)
|
|||||||
platform: linux (linux)
|
platform: linux (linux)
|
||||||
cp -rp bundle/ build
|
cp -rp bundle/ build
|
||||||
cd build
|
cd build
|
||||||
cd LuaJIT-2.0.0-beta8
|
cd LuaJIT-2.0.0-beta9
|
||||||
gmake TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
gmake TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
||||||
gmake install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
gmake install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
||||||
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
||||||
@ -337,11 +337,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -361,14 +361,14 @@ Type the following commands to build and install:
|
|||||||
.PHONY: all install clean
|
.PHONY: all install clean
|
||||||
|
|
||||||
all:
|
all:
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -385,7 +385,7 @@ clean:
|
|||||||
platform: linux (linux)
|
platform: linux (linux)
|
||||||
cp -rp bundle/ build
|
cp -rp bundle/ build
|
||||||
cd build
|
cd build
|
||||||
cd LuaJIT-2.0.0-beta8
|
cd LuaJIT-2.0.0-beta9
|
||||||
gmake TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
gmake TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
||||||
gmake install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
gmake install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
||||||
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
||||||
@ -397,11 +397,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -421,14 +421,14 @@ Type the following commands to build and install:
|
|||||||
.PHONY: all install clean
|
.PHONY: all install clean
|
||||||
|
|
||||||
all:
|
all:
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -445,7 +445,7 @@ clean:
|
|||||||
platform: linux (linux)
|
platform: linux (linux)
|
||||||
cp -rp bundle/ build
|
cp -rp bundle/ build
|
||||||
cd build
|
cd build
|
||||||
cd LuaJIT-2.0.0-beta8
|
cd LuaJIT-2.0.0-beta9
|
||||||
gmake TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
gmake TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
||||||
gmake install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
gmake install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
||||||
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
||||||
@ -456,11 +456,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -480,14 +480,14 @@ Type the following commands to build and install:
|
|||||||
.PHONY: all install clean
|
.PHONY: all install clean
|
||||||
|
|
||||||
all:
|
all:
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -504,7 +504,7 @@ clean:
|
|||||||
platform: linux (linux)
|
platform: linux (linux)
|
||||||
cp -rp bundle/ build
|
cp -rp bundle/ build
|
||||||
cd build
|
cd build
|
||||||
cd LuaJIT-2.0.0-beta8
|
cd LuaJIT-2.0.0-beta9
|
||||||
gmake TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
gmake TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
||||||
gmake install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
gmake install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
||||||
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
||||||
@ -515,10 +515,10 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -538,14 +538,14 @@ Type the following commands to build and install:
|
|||||||
.PHONY: all install clean
|
.PHONY: all install clean
|
||||||
|
|
||||||
all:
|
all:
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -567,10 +567,10 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -591,7 +591,7 @@ Type the following commands to build and install:
|
|||||||
all:
|
all:
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE) install DESTDIR=$(DESTDIR)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE) install DESTDIR=$(DESTDIR)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@ -616,11 +616,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -645,7 +645,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/opt/blah/lua/include LUA_LIB_DIR=/opt/blah/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/opt/blah/lua/include LUA_LIB_DIR=/opt/blah/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/opt/blah/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/opt/blah/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/opt/blah/lua/include LUA_LIB_DIR=/opt/blah/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/opt/blah/lua/include LUA_LIB_DIR=/opt/blah/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/opt/blah/lua/include LUA_LIB_DIR=/opt/blah/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/opt/blah/lua/include LUA_LIB_DIR=/opt/blah/lualib CC=gcc
|
||||||
@ -855,11 +855,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -884,7 +884,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O3 -Wall -pedantic -DMISSING_ISINF" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O3 -Wall -pedantic -DMISSING_ISINF" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
||||||
@ -913,12 +913,12 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../drizzle-nginx-module-0.1.2rc4 \
|
--add-module=../drizzle-nginx-module-0.1.2rc4 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -943,7 +943,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O3 -Wall -pedantic -DMISSING_ISINF" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O3 -Wall -pedantic -DMISSING_ISINF" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
||||||
@ -972,12 +972,12 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../drizzle-nginx-module-0.1.2rc4 \
|
--add-module=../drizzle-nginx-module-0.1.2rc4 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1002,7 +1002,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O3 -Wall -pedantic -DMISSING_ISINF" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O3 -Wall -pedantic -DMISSING_ISINF" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
||||||
@ -1044,12 +1044,12 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../drizzle-nginx-module-0.1.2rc4 \
|
--add-module=../drizzle-nginx-module-0.1.2rc4 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1075,7 +1075,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -1104,11 +1104,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1133,7 +1133,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc-4.2
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc-4.2
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install CC=gcc-4.2 INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install CC=gcc-4.2 INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O3 -Wall -pedantic -DMISSING_ISINF" CC=gcc-4.2
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O3 -Wall -pedantic -DMISSING_ISINF" CC=gcc-4.2
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc-4.2
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc-4.2
|
||||||
@ -1151,7 +1151,7 @@ clean:
|
|||||||
platform: linux (linux)
|
platform: linux (linux)
|
||||||
cp -rp bundle/ build
|
cp -rp bundle/ build
|
||||||
cd build
|
cd build
|
||||||
cd LuaJIT-2.0.0-beta8
|
cd LuaJIT-2.0.0-beta9
|
||||||
gmake CCDEBUG=-g Q= PREFIX=/usr/local/openresty/luajit
|
gmake CCDEBUG=-g Q= PREFIX=/usr/local/openresty/luajit
|
||||||
gmake install CCDEBUG=-g Q= PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
gmake install CCDEBUG=-g Q= PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
||||||
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
||||||
@ -1164,11 +1164,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1188,14 +1188,14 @@ Type the following commands to build and install:
|
|||||||
.PHONY: all install clean
|
.PHONY: all install clean
|
||||||
|
|
||||||
all:
|
all:
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) CCDEBUG=-g Q= PREFIX=/usr/local/openresty/luajit
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) CCDEBUG=-g Q= PREFIX=/usr/local/openresty/luajit
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall -pedantic" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall -pedantic" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) install CCDEBUG=-g Q= PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) install CCDEBUG=-g Q= PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall -pedantic" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall -pedantic" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=gcc
|
||||||
@ -1212,7 +1212,7 @@ clean:
|
|||||||
platform: linux (linux)
|
platform: linux (linux)
|
||||||
cp -rp bundle/ build
|
cp -rp bundle/ build
|
||||||
cd build
|
cd build
|
||||||
cd LuaJIT-2.0.0-beta8
|
cd LuaJIT-2.0.0-beta9
|
||||||
gmake CCDEBUG=-g Q= CC=cl PREFIX=/usr/local/openresty/luajit
|
gmake CCDEBUG=-g Q= CC=cl PREFIX=/usr/local/openresty/luajit
|
||||||
gmake install CCDEBUG=-g Q= CC=cl PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
gmake install CCDEBUG=-g Q= CC=cl PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
||||||
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
||||||
@ -1225,11 +1225,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1249,14 +1249,14 @@ Type the following commands to build and install:
|
|||||||
.PHONY: all install clean
|
.PHONY: all install clean
|
||||||
|
|
||||||
all:
|
all:
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) CCDEBUG=-g Q= CC=cl PREFIX=/usr/local/openresty/luajit
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) CCDEBUG=-g Q= CC=cl PREFIX=/usr/local/openresty/luajit
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall -pedantic" CC=cl
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall -pedantic" CC=cl
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=cl
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=cl
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=cl
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=cl
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) install CCDEBUG=-g Q= CC=cl PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) install CCDEBUG=-g Q= CC=cl PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall -pedantic" CC=cl
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall -pedantic" CC=cl
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=cl
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=cl
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=cl
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CFLAGS="-g -O0 -Wall" CC=cl
|
||||||
@ -1297,12 +1297,12 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_postgres-0.9rc2 \
|
--add-module=../ngx_postgres-0.9rc2 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1328,7 +1328,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -1358,11 +1358,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../iconv-nginx-module-0.10rc5 \
|
--add-module=../iconv-nginx-module-0.10rc5 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1387,7 +1387,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -1438,12 +1438,12 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_postgres-0.9rc2 \
|
--add-module=../ngx_postgres-0.9rc2 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1469,7 +1469,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -1509,11 +1509,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1538,7 +1538,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -1556,7 +1556,7 @@ clean:
|
|||||||
platform: solaris (solaris)
|
platform: solaris (solaris)
|
||||||
cp -rp bundle/ build
|
cp -rp bundle/ build
|
||||||
cd build
|
cd build
|
||||||
cd LuaJIT-2.0.0-beta8
|
cd LuaJIT-2.0.0-beta9
|
||||||
gmake TARGET_STRIP=@: INSTALL_X='$OPENRESTY_BUILD_DIR/install -m 0755' INSTALL_F='$OPENRESTY_BUILD_DIR/install -m 0644' PREFIX=/usr/local/openresty/luajit
|
gmake TARGET_STRIP=@: INSTALL_X='$OPENRESTY_BUILD_DIR/install -m 0755' INSTALL_F='$OPENRESTY_BUILD_DIR/install -m 0644' PREFIX=/usr/local/openresty/luajit
|
||||||
gmake install TARGET_STRIP=@: INSTALL_X='$OPENRESTY_BUILD_DIR/install -m 0755' INSTALL_F='$OPENRESTY_BUILD_DIR/install -m 0644' PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
gmake install TARGET_STRIP=@: INSTALL_X='$OPENRESTY_BUILD_DIR/install -m 0755' INSTALL_F='$OPENRESTY_BUILD_DIR/install -m 0644' PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
||||||
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
||||||
@ -1567,11 +1567,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1591,14 +1591,14 @@ Type the following commands to build and install:
|
|||||||
.PHONY: all install clean
|
.PHONY: all install clean
|
||||||
|
|
||||||
all:
|
all:
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) TARGET_STRIP=@: INSTALL_X='$OPENRESTY_BUILD_DIR/install -m 0755' INSTALL_F='$OPENRESTY_BUILD_DIR/install -m 0644' PREFIX=/usr/local/openresty/luajit
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) TARGET_STRIP=@: INSTALL_X='$OPENRESTY_BUILD_DIR/install -m 0755' INSTALL_F='$OPENRESTY_BUILD_DIR/install -m 0644' PREFIX=/usr/local/openresty/luajit
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O3 -Wall -pedantic -DMISSING_ISINF" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O3 -Wall -pedantic -DMISSING_ISINF" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) install TARGET_STRIP=@: INSTALL_X='$OPENRESTY_BUILD_DIR/install -m 0755' INSTALL_F='$OPENRESTY_BUILD_DIR/install -m 0644' PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) install TARGET_STRIP=@: INSTALL_X='$OPENRESTY_BUILD_DIR/install -m 0755' INSTALL_F='$OPENRESTY_BUILD_DIR/install -m 0644' PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O3 -Wall -pedantic -DMISSING_ISINF" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O3 -Wall -pedantic -DMISSING_ISINF" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CC=gcc
|
||||||
@ -1615,7 +1615,7 @@ clean:
|
|||||||
platform: freebsd (freebsd)
|
platform: freebsd (freebsd)
|
||||||
cp -rp bundle/ build
|
cp -rp bundle/ build
|
||||||
cd build
|
cd build
|
||||||
cd LuaJIT-2.0.0-beta8
|
cd LuaJIT-2.0.0-beta9
|
||||||
gmake TARGET_STRIP=@: CFLAGS=-I.. PREFIX=/usr/local/openresty/luajit
|
gmake TARGET_STRIP=@: CFLAGS=-I.. PREFIX=/usr/local/openresty/luajit
|
||||||
gmake install TARGET_STRIP=@: CFLAGS=-I.. PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
gmake install TARGET_STRIP=@: CFLAGS=-I.. PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
||||||
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
||||||
@ -1626,11 +1626,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1650,14 +1650,14 @@ Type the following commands to build and install:
|
|||||||
.PHONY: all install clean
|
.PHONY: all install clean
|
||||||
|
|
||||||
all:
|
all:
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) TARGET_STRIP=@: CFLAGS=-I.. PREFIX=/usr/local/openresty/luajit
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) TARGET_STRIP=@: CFLAGS=-I.. PREFIX=/usr/local/openresty/luajit
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) install TARGET_STRIP=@: CFLAGS=-I.. PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) install TARGET_STRIP=@: CFLAGS=-I.. PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -1685,11 +1685,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1714,7 +1714,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
||||||
@ -1732,7 +1732,7 @@ clean:
|
|||||||
platform: macosx (darwin)
|
platform: macosx (darwin)
|
||||||
cp -rp bundle/ build
|
cp -rp bundle/ build
|
||||||
cd build
|
cd build
|
||||||
cd LuaJIT-2.0.0-beta8
|
cd LuaJIT-2.0.0-beta9
|
||||||
gmake TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
gmake TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
||||||
gmake install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
gmake install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
||||||
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
||||||
@ -1743,11 +1743,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1767,14 +1767,14 @@ Type the following commands to build and install:
|
|||||||
.PHONY: all install clean
|
.PHONY: all install clean
|
||||||
|
|
||||||
all:
|
all:
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib LDFLAGS='-bundle -undefined dynamic_lookup' CC=gcc
|
||||||
@ -1804,11 +1804,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1833,7 +1833,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O0 -Wall" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O0 -Wall" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O0 -Wall -pedantic -DMISSING_ISINF" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O0 -Wall -pedantic -DMISSING_ISINF" CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O0 -Wall" CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib INSTALL=$OPENRESTY_BUILD_DIR/install CFLAGS="-g -O0 -Wall" CC=gcc
|
||||||
@ -1862,11 +1862,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1890,7 +1890,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -1918,11 +1918,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -1945,7 +1945,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE) install DESTDIR=$(DESTDIR)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE) install DESTDIR=$(DESTDIR)
|
||||||
@ -1972,11 +1972,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -2000,7 +2000,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -2024,11 +2024,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -2053,7 +2053,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -2088,11 +2088,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -2117,7 +2117,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=/tmp/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -2145,11 +2145,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -2174,7 +2174,7 @@ all:
|
|||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -2192,7 +2192,7 @@ clean:
|
|||||||
platform: linux (linux)
|
platform: linux (linux)
|
||||||
cp -rp bundle/ build
|
cp -rp bundle/ build
|
||||||
cd build
|
cd build
|
||||||
cd LuaJIT-2.0.0-beta8
|
cd LuaJIT-2.0.0-beta9
|
||||||
gmake -j5 TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
gmake -j5 TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
||||||
gmake install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
gmake install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$OPENRESTY_BUILD_DIR/luajit-root
|
||||||
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
export LUAJIT_LIB='$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/lib'
|
||||||
@ -2203,11 +2203,11 @@ cd nginx-1.0.10
|
|||||||
--add-module=../ngx_devel_kit-0.2.17 \
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
--add-module=../echo-nginx-module-0.37rc7 \
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
--add-module=../xss-nginx-module-0.03rc8 \
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
--add-module=../set-misc-nginx-module-0.22rc3 \
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
--add-module=../form-input-nginx-module-0.07rc5 \
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
--add-module=../encrypted-session-nginx-module-0.01 \
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
--add-module=../ngx_lua-0.3.1rc38 \
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
--add-module=../headers-more-nginx-module-0.16rc4 \
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
--add-module=../srcache-nginx-module-0.13rc3 \
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
--add-module=../array-var-nginx-module-0.03rc1 \
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
--add-module=../memc-nginx-module-0.13rc2 \
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
@ -2227,14 +2227,14 @@ Type the following commands to build and install:
|
|||||||
.PHONY: all install clean
|
.PHONY: all install clean
|
||||||
|
|
||||||
all:
|
all:
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
install:
|
install: all
|
||||||
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta8 && $(MAKE) install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
cd $OPENRESTY_BUILD_DIR/LuaJIT-2.0.0-beta9 && $(MAKE) install TARGET_STRIP=@: PREFIX=/usr/local/openresty/luajit DESTDIR=$(DESTDIR)
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/luajit-root/usr/local/openresty/luajit/include/luajit-2.0 LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
@ -2243,3 +2243,61 @@ install:
|
|||||||
clean:
|
clean:
|
||||||
rm -rf build
|
rm -rf build
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
=== TEST 41: --add-module
|
||||||
|
--- cmd: ./configure --add-module=/path/to/some/module --add-module=../some/module/ --dry-run
|
||||||
|
--- out
|
||||||
|
platform: linux (linux)
|
||||||
|
cp -rp bundle/ build
|
||||||
|
cd build
|
||||||
|
cd lua-5.1.4
|
||||||
|
gmake linux
|
||||||
|
gmake install INSTALL_TOP=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua
|
||||||
|
export LUA_LIB='$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/lib'
|
||||||
|
export LUA_INC='$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include'
|
||||||
|
cd ..
|
||||||
|
cd nginx-1.0.10
|
||||||
|
./configure --prefix=/usr/local/openresty/nginx \
|
||||||
|
--add-module=../ngx_devel_kit-0.2.17 \
|
||||||
|
--add-module=../echo-nginx-module-0.37rc7 \
|
||||||
|
--add-module=../xss-nginx-module-0.03rc8 \
|
||||||
|
--add-module=../set-misc-nginx-module-0.22rc4 \
|
||||||
|
--add-module=../form-input-nginx-module-0.07rc5 \
|
||||||
|
--add-module=../encrypted-session-nginx-module-0.01 \
|
||||||
|
--add-module=../ngx_lua-0.3.1rc42 \
|
||||||
|
--add-module=../headers-more-nginx-module-0.16rc6 \
|
||||||
|
--add-module=../srcache-nginx-module-0.13rc3 \
|
||||||
|
--add-module=../array-var-nginx-module-0.03rc1 \
|
||||||
|
--add-module=../memc-nginx-module-0.13rc2 \
|
||||||
|
--add-module=../redis2-nginx-module-0.08rc2 \
|
||||||
|
--add-module=../upstream-keepalive-nginx-module-0.3 \
|
||||||
|
--add-module=../auth-request-nginx-module-0.2 \
|
||||||
|
--add-module=../rds-json-nginx-module-0.12rc7 \
|
||||||
|
--add-module=../rds-csv-nginx-module-0.04 \
|
||||||
|
--add-module=/path/to/some/module --add-module=$OPENRESTY_DIR/../some/module --with-http_ssl_module
|
||||||
|
cd ../..
|
||||||
|
Type the following commands to build and install:
|
||||||
|
gmake
|
||||||
|
gmake install
|
||||||
|
|
||||||
|
--- makefile
|
||||||
|
.PHONY: all install clean
|
||||||
|
|
||||||
|
all:
|
||||||
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) linux
|
||||||
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE)
|
||||||
|
|
||||||
|
install: all
|
||||||
|
cd $OPENRESTY_BUILD_DIR/lua-5.1.4 && $(MAKE) install INSTALL_TOP=$(DESTDIR)/usr/local/openresty/lua
|
||||||
|
cd $OPENRESTY_BUILD_DIR/lua-cjson-1.0.3 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
|
cd $OPENRESTY_BUILD_DIR/lua-redis-parser-0.09rc5 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
|
cd $OPENRESTY_BUILD_DIR/lua-rds-parser-0.04 && $(MAKE) install DESTDIR=$(DESTDIR) LUA_INCLUDE_DIR=$OPENRESTY_BUILD_DIR/lua-root/usr/local/openresty/lua/include LUA_LIB_DIR=/usr/local/openresty/lualib CC=gcc
|
||||||
|
cd $OPENRESTY_BUILD_DIR/nginx-1.0.10 && $(MAKE) install DESTDIR=$(DESTDIR)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf build
|
||||||
|
|
||||||
|
9
util/configure
vendored
9
util/configure
vendored
@ -212,6 +212,11 @@ for my $opt (@ARGV) {
|
|||||||
} elsif ($opt eq '--without-http_ssl_module') {
|
} elsif ($opt eq '--without-http_ssl_module') {
|
||||||
$resty_opts{no_http_ssl} = 1;
|
$resty_opts{no_http_ssl} = 1;
|
||||||
|
|
||||||
|
} elsif ($opt =~ /^--add-module=(.*)/) {
|
||||||
|
|
||||||
|
my $mod_path = File::Spec->rel2abs($1);
|
||||||
|
push @ngx_opts, "--add-module=$mod_path";
|
||||||
|
|
||||||
} elsif ($opt =~ /^--\w.*/) {
|
} elsif ($opt =~ /^--\w.*/) {
|
||||||
push @ngx_opts, $opt;
|
push @ngx_opts, $opt;
|
||||||
|
|
||||||
@ -986,9 +991,9 @@ sub gen_makefile {
|
|||||||
|
|
||||||
print $out ".PHONY: all install clean\n\n";
|
print $out ".PHONY: all install clean\n\n";
|
||||||
|
|
||||||
print $out "all:\n\t" . join("\n\t", @make_cmds) . "\n\n";
|
print $out "all:\n\t" . join("\n\t", @make_cmds) . "\n\n";
|
||||||
|
|
||||||
print $out "install:\n\t" . join("\n\t", @make_install_cmds) . "\n\n";
|
print $out "install: all\n\t" . join("\n\t", @make_install_cmds) . "\n\n";
|
||||||
|
|
||||||
print $out "clean:\n\trm -rf build\n";
|
print $out "clean:\n\trm -rf build\n";
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ $root/util/get-tarball "http://github.com/agentzh/rds-csv-nginx-module/tarball/v
|
|||||||
tar -xzf rds-csv-nginx-module-$ver.tar.gz || exit 1
|
tar -xzf rds-csv-nginx-module-$ver.tar.gz || exit 1
|
||||||
mv agentzh-rds-csv-nginx-module-* rds-csv-nginx-module-$ver || exit 1
|
mv agentzh-rds-csv-nginx-module-* rds-csv-nginx-module-$ver || exit 1
|
||||||
|
|
||||||
ver=0.16rc6
|
ver=0.16rc7
|
||||||
$root/util/get-tarball "http://github.com/agentzh/headers-more-nginx-module/tarball/v$ver" -O headers-more-nginx-module-$ver.tar.gz || exit 1
|
$root/util/get-tarball "http://github.com/agentzh/headers-more-nginx-module/tarball/v$ver" -O headers-more-nginx-module-$ver.tar.gz || exit 1
|
||||||
tar -xzf headers-more-nginx-module-$ver.tar.gz || exit 1
|
tar -xzf headers-more-nginx-module-$ver.tar.gz || exit 1
|
||||||
mv agentzh-headers-more-nginx-module-* headers-more-nginx-module-$ver || exit 1
|
mv agentzh-headers-more-nginx-module-* headers-more-nginx-module-$ver || exit 1
|
||||||
|
Reference in New Issue
Block a user