comparison xml/en/docs/howto_build_on_win32.xml @ 2681:303c35d8fcfa

Updated OpenSSL version used for win32 builds.
author Yaroslav Zhuravlev <yar@nginx.com>
date Sat, 13 Mar 2021 13:20:20 +0000
parents 1d775e54f594
children 085dbe495d83
comparison
equal deleted inserted replaced
2680:8751cab1d562 2681:303c35d8fcfa
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="20"> 12 rev="21">
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:
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.44.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.1i.tar.gz 84 tar -xzf ../../openssl-1.1.1j.tar.gz
85 </programlisting> 85 </programlisting>
86 </listitem> 86 </listitem>
87 87
88 <listitem> 88 <listitem>
89 Run configure script: 89 Run configure script:
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.44 \ 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.1i \ 108 --with-openssl=objs/lib/openssl-1.1.1j \
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