comparison xml/en/docs/howto_build_on_win32.xml @ 2018:7ee425a5ae29

Updated PCRE version.
author Yaroslav Zhuravlev <yar@nginx.com>
date Tue, 08 Aug 2017 19:59:39 +0300
parents d1c4bfa72cbb
children 237b67ef69a6
comparison
equal deleted inserted replaced
2017:a1f1c21cc19d 2018:7ee425a5ae29
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="7"> 12 rev="8">
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.40.tar.gz 82 tar -xzf ../../pcre-8.41.tar.gz
83 tar -xzf ../../zlib-1.2.11.tar.gz 83 tar -xzf ../../zlib-1.2.11.tar.gz
84 tar -xzf ../../openssl-1.0.2k.tar.gz 84 tar -xzf ../../openssl-1.0.2k.tar.gz
85 </programlisting> 85 </programlisting>
86 </listitem> 86 </listitem>
87 87
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.40 \ 97 --with-cc-opt=-DFD_SETSIZE=1024 --with-pcre=objs/lib/pcre-8.41 \
98 --with-zlib=objs/lib/zlib-1.2.11 --with-openssl=objs/lib/openssl-1.0.2k \ 98 --with-zlib=objs/lib/zlib-1.2.11 --with-openssl=objs/lib/openssl-1.0.2k \
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