comparison xml/en/docs/howto_build_on_win32.xml @ 2821:06c7520f1181

Updated OpenSSL and PCRE versions used for win32 builds.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 13 Jan 2022 01:36:21 +0300
parents bc9c5d11b67c
children f55e18559df9
comparison
equal deleted inserted replaced
2820:d6ce81d4ef08 2821:06c7520f1181
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="24"> 12 rev="25">
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:
78 sources into lib directory: 78 sources into lib directory:
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 ../../pcre-8.44.tar.gz 83 tar -xzf ../../pcre2-10.39.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.1l.tar.gz 85 tar -xzf ../../openssl-1.1.1m.tar.gz
86 </programlisting> 86 </programlisting>
87 </listitem> 87 </listitem>
88 88
89 <listitem> 89 <listitem>
90 Run configure script: 90 Run configure script:
102 --http-proxy-temp-path=temp/proxy_temp \ 102 --http-proxy-temp-path=temp/proxy_temp \
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/pcre-8.44 \ 107 --with-pcre=objs/lib/pcre2-10.39 \
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.1l \ 109 --with-openssl=objs/lib/openssl-1.1.1m \
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