comparison xml/en/docs/howto_build_on_win32.xml @ 1894:d011ffde3760

Updated zlib and PCRE versions.
author Yaroslav Zhuravlev <yar@nginx.com>
date Thu, 26 Jan 2017 18:29:48 +0300
parents 9c1475613c59
children d1c4bfa72cbb
comparison
equal deleted inserted replaced
1893:f1c18acbe785 1894:d011ffde3760
7 <!DOCTYPE article SYSTEM "../../../dtd/article.dtd"> 7 <!DOCTYPE article SYSTEM "../../../dtd/article.dtd">
8 8
9 <article name="Building nginx on the Win32 platform with Visual C" 9 <article name="Building nginx on the Win32 platform with Visual C"
10 link="/en/docs/howto_build_on_win32.html" 10 link="/en/docs/howto_build_on_win32.html"
11 lang="en" 11 lang="en"
12 rev="5"> 12 rev="6">
13 13
14 <section name="Prerequisites"> 14 <section name="Prerequisites">
15 15
16 <para> 16 <para>
17 To build nginx on the <registered>Microsoft Win32</registered> platform you need: 17 To build nginx on the <registered>Microsoft Win32</registered> platform you need:
77 sources into lib directory: 77 sources into lib directory:
78 <programlisting> 78 <programlisting>
79 mkdir objs 79 mkdir objs
80 mkdir objs/lib 80 mkdir objs/lib
81 cd objs/lib 81 cd objs/lib
82 tar -xzf ../../pcre-8.39.tar.gz 82 tar -xzf ../../pcre-8.40.tar.gz
83 tar -xzf ../../zlib-1.2.8.tar.gz 83 tar -xzf ../../zlib-1.2.11.tar.gz
84 tar -xzf ../../openssl-1.0.2j.tar.gz 84 tar -xzf ../../openssl-1.0.2j.tar.gz
85 </programlisting> 85 </programlisting>
86 </listitem> 86 </listitem>
87 87
88 <listitem> 88 <listitem>
92 --conf-path=conf/nginx.conf --pid-path=logs/nginx.pid \ 92 --conf-path=conf/nginx.conf --pid-path=logs/nginx.pid \
93 --http-log-path=logs/access.log --error-log-path=logs/error.log \ 93 --http-log-path=logs/access.log --error-log-path=logs/error.log \
94 --sbin-path=nginx.exe --http-client-body-temp-path=temp/client_body_temp \ 94 --sbin-path=nginx.exe --http-client-body-temp-path=temp/client_body_temp \
95 --http-proxy-temp-path=temp/proxy_temp \ 95 --http-proxy-temp-path=temp/proxy_temp \
96 --http-fastcgi-temp-path=temp/fastcgi_temp \ 96 --http-fastcgi-temp-path=temp/fastcgi_temp \
97 --with-cc-opt=-DFD_SETSIZE=1024 --with-pcre=objs/lib/pcre-8.39 \ 97 --with-cc-opt=-DFD_SETSIZE=1024 --with-pcre=objs/lib/pcre-8.40 \
98 --with-zlib=objs/lib/zlib-1.2.8 --with-openssl=objs/lib/openssl-1.0.2j \ 98 --with-zlib=objs/lib/zlib-1.2.11 --with-openssl=objs/lib/openssl-1.0.2j \
99 --with-select_module --with-http_ssl_module 99 --with-select_module --with-http_ssl_module
100 </programlisting> 100 </programlisting>
101 </listitem> 101 </listitem>
102 102
103 <listitem> 103 <listitem>