comparison xml/en/docs/howto_build_on_win32.xml @ 2764:bc9c5d11b67c

Updated OpenSSL version used for win32 builds.
author Yaroslav Zhuravlev <yar@nginx.com>
date Tue, 31 Aug 2021 17:11:05 +0100
parents 1a78bbde103b
children 06c7520f1181
comparison
equal deleted inserted replaced
2763:5a7d41e3cb83 2764:bc9c5d11b67c
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="23"> 12 rev="24">
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:
80 mkdir objs 80 mkdir objs
81 mkdir objs/lib 81 mkdir objs/lib
82 cd objs/lib 82 cd objs/lib
83 tar -xzf ../../pcre-8.44.tar.gz 83 tar -xzf ../../pcre-8.44.tar.gz
84 tar -xzf ../../zlib-1.2.11.tar.gz 84 tar -xzf ../../zlib-1.2.11.tar.gz
85 tar -xzf ../../openssl-1.1.1k.tar.gz 85 tar -xzf ../../openssl-1.1.1l.tar.gz
86 </programlisting> 86 </programlisting>
87 </listitem> 87 </listitem>
88 88
89 <listitem> 89 <listitem>
90 Run configure script: 90 Run configure script:
104 --http-scgi-temp-path=temp/scgi_temp \ 104 --http-scgi-temp-path=temp/scgi_temp \
105 --http-uwsgi-temp-path=temp/uwsgi_temp \ 105 --http-uwsgi-temp-path=temp/uwsgi_temp \
106 --with-cc-opt=-DFD_SETSIZE=1024 \ 106 --with-cc-opt=-DFD_SETSIZE=1024 \
107 --with-pcre=objs/lib/pcre-8.44 \ 107 --with-pcre=objs/lib/pcre-8.44 \
108 --with-zlib=objs/lib/zlib-1.2.11 \ 108 --with-zlib=objs/lib/zlib-1.2.11 \
109 --with-openssl=objs/lib/openssl-1.1.1k \ 109 --with-openssl=objs/lib/openssl-1.1.1l \
110 --with-openssl-opt=no-asm \ 110 --with-openssl-opt=no-asm \
111 --with-http_ssl_module 111 --with-http_ssl_module
112 </programlisting> 112 </programlisting>
113 </listitem> 113 </listitem>
114 114