comparison xml/en/docs/howto_build_on_win32.xml @ 1749:153a99d25210

Updated versions of PCRE, zlib, and OpenSSL.
author Yaroslav Zhuravlev <yar@nginx.com>
date Tue, 05 Jul 2016 21:47:42 +0300
parents ec68c9ae35bf
children a469e77d446f
comparison
equal deleted inserted replaced
1748:be371be7a5c8 1749:153a99d25210
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="1"> 12 rev="2">
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.32.tar.gz 82 tar -xzf ../../pcre-8.39.tar.gz
83 tar -xzf ../../zlib-1.2.7.tar.gz 83 tar -xzf ../../zlib-1.2.8.tar.gz
84 tar -xzf ../../openssl-1.0.1e.tar.gz 84 tar -xzf ../../openssl-1.0.2h.tar.gz
85 </programlisting> 85 </programlisting>
86 </listitem> 86 </listitem>
87 87
88 <listitem> 88 <listitem>
89 Run configure script: 89 Run configure script:
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.32 \ 97 --with-cc-opt=-DFD_SETSIZE=1024 --with-pcre=objs/lib/pcre-8.39 \
98 --with-zlib=objs/lib/zlib-1.2.7 --with-openssl=objs/lib/openssl-1.0.1e \ 98 --with-zlib=objs/lib/zlib-1.2.8 --with-openssl=objs/lib/openssl-1.0.2h \
99 --with-select_module --with-http_ssl_module --with-ipv6 99 --with-select_module --with-http_ssl_module --with-ipv6
100 </programlisting> 100 </programlisting>
101 </listitem> 101 </listitem>
102 102
103 <listitem> 103 <listitem>