comparison xml/en/docs/howto_build_on_win32.xml @ 2277:4ad2cf470ed8

Updated OpenSSL and PCRE versions.
author Yaroslav Zhuravlev <yar@nginx.com>
date Thu, 15 Nov 2018 19:09:33 +0300
parents fe66463d0799
children 8da870c88c75
comparison
equal deleted inserted replaced
2276:2fa3c989e8ba 2277:4ad2cf470ed8
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="11"> 12 rev="12">
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.41.tar.gz 82 tar -xzf ../../pcre-8.42.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.2n.tar.gz 84 tar -xzf ../../openssl-1.0.2p.tar.gz
85 </programlisting> 85 </programlisting>
86 </listitem> 86 </listitem>
87 87
88 <listitem> 88 <listitem>
89 Run configure script: 89 Run configure script:
101 --http-proxy-temp-path=temp/proxy_temp \ 101 --http-proxy-temp-path=temp/proxy_temp \
102 --http-fastcgi-temp-path=temp/fastcgi_temp \ 102 --http-fastcgi-temp-path=temp/fastcgi_temp \
103 --http-scgi-temp-path=temp/scgi_temp \ 103 --http-scgi-temp-path=temp/scgi_temp \
104 --http-uwsgi-temp-path=temp/uwsgi_temp \ 104 --http-uwsgi-temp-path=temp/uwsgi_temp \
105 --with-cc-opt=-DFD_SETSIZE=1024 \ 105 --with-cc-opt=-DFD_SETSIZE=1024 \
106 --with-pcre=objs/lib/pcre-8.41 \ 106 --with-pcre=objs/lib/pcre-8.42 \
107 --with-zlib=objs/lib/zlib-1.2.11 \ 107 --with-zlib=objs/lib/zlib-1.2.11 \
108 --with-openssl=objs/lib/openssl-1.0.2n \ 108 --with-openssl=objs/lib/openssl-1.0.2p \
109 --with-openssl-opt=no-asm \ 109 --with-openssl-opt=no-asm \
110 --with-select_module \ 110 --with-select_module \
111 --with-http_ssl_module 111 --with-http_ssl_module
112 </programlisting> 112 </programlisting>
113 </listitem> 113 </listitem>