comparison xml/en/docs/howto_build_on_win32.xml @ 3017:f55e18559df9

Updated OpenSSL and zlib versions.
author Yaroslav Zhuravlev <yar@nginx.com>
date Tue, 03 Oct 2023 09:57:16 +0100
parents 06c7520f1181
children 0083dce686ec
comparison
equal deleted inserted replaced
3016:8e7eced98610 3017:f55e18559df9
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="25"> 12 rev="26">
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 <programlisting> 79 <programlisting>
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 ../../pcre2-10.39.tar.gz 83 tar -xzf ../../pcre2-10.39.tar.gz
84 tar -xzf ../../zlib-1.2.11.tar.gz 84 tar -xzf ../../zlib-1.3.tar.gz
85 tar -xzf ../../openssl-1.1.1m.tar.gz 85 tar -xzf ../../openssl-3.0.10.tar.gz
86 </programlisting> 86 </programlisting>
87 </listitem> 87 </listitem>
88 88
89 <listitem> 89 <listitem>
90 Run configure script: 90 Run configure script:
103 --http-fastcgi-temp-path=temp/fastcgi_temp \ 103 --http-fastcgi-temp-path=temp/fastcgi_temp \
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/pcre2-10.39 \ 107 --with-pcre=objs/lib/pcre2-10.39 \
108 --with-zlib=objs/lib/zlib-1.2.11 \ 108 --with-zlib=objs/lib/zlib-1.3 \
109 --with-openssl=objs/lib/openssl-1.1.1m \ 109 --with-openssl=objs/lib/openssl-3.0.10 \
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