From cada794d74da192e1775a5669d1b5e1b20ba825a Mon Sep 17 00:00:00 2001 From: "Yichun Zhang (agentzh)" Date: Wed, 23 Dec 2015 14:46:05 -0800 Subject: [PATCH] win32: upgraded pcre to 8.38 and openssl to 1.0.2e. also enabled ngx_http_realip_module, ngx_http_addition_module ngx_http_sub_module, and ngx_http_stub_status_module in the win32 binary package by default. --- util/build-win32.sh | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/util/build-win32.sh b/util/build-win32.sh index abc68ea..78ff7d1 100644 --- a/util/build-win32.sh +++ b/util/build-win32.sh @@ -1,12 +1,16 @@ #!/bin/bash +PCRE=pcre-8.38 +ZLIB=zlib-1.2.8 +OPENSSL=openssl-1.0.2e + rm -rf objs || exit 1 mkdir -p objs/lib || exit 1 cd objs/lib || exit 1 ls ../../.. -tar -xf ../../../openssl-1.0.2d.tar.gz -tar -xf ../../../zlib-1.2.8.tar.gz -tar -xf ../../../pcre-8.37.tar.gz +tar -xf ../../../$OPENSSL.tar.gz +tar -xf ../../../$ZLIB.tar.gz +tar -xf ../../../$PCRE.tar.gz cd ../.. #--with-openssl-opt="no-asm" \ @@ -16,10 +20,16 @@ cd ../.. --sbin-path=nginx.exe \ --with-ipv6 \ --with-pcre-jit \ + --with-http_stub_status_module \ + --with-http_realip_module \ + --with-stream \ + --with-stream_ssl_module \ + --with-http_addition_module \ + --with-http_sub_module \ --with-luajit-xcflags="-DLUAJIT_NUMMODE=2 -DLUAJIT_ENABLE_LUA52COMPAT" \ - --with-pcre=objs/lib/pcre-8.37 \ - --with-zlib=objs/lib/zlib-1.2.8 \ - --with-openssl=objs/lib/openssl-1.0.2d \ + --with-pcre=objs/lib/$PCRE \ + --with-zlib=objs/lib/$ZLIB \ + --with-openssl=objs/lib/$OPENSSL \ --with-select_module -j5 || exit 1 #gmake -j5 make || exit 1