comparison xml/en/docs/howto_build_on_win32.xml @ 2511:1e9c2a8c1bf1

Updated OpenSSL and PCRE versions.
author Yaroslav Zhuravlev <yar@nginx.com>
date Mon, 09 Mar 2020 11:43:09 +0000
parents f90e68b836c0
children 8e1c53284176
comparison
equal deleted inserted replaced
2510:051b111d06b3 2511:1e9c2a8c1bf1
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="16"> 12 rev="17">
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.43.tar.gz 82 tar -xzf ../../pcre-8.44.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.1.1c.tar.gz 84 tar -xzf ../../openssl-1.1.1d.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.43 \ 106 --with-pcre=objs/lib/pcre-8.44 \
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.1.1c \ 108 --with-openssl=objs/lib/openssl-1.1.1d \
109 --with-openssl-opt=no-asm \ 109 --with-openssl-opt=no-asm \
110 --with-http_ssl_module 110 --with-http_ssl_module
111 </programlisting> 111 </programlisting>
112 </listitem> 112 </listitem>
113 113