comparison xml/en/docs/howto_build_on_win32.xml @ 2341:1ddf76f5c565

Updated OpenSSL version used for win32 builds.
author Yaroslav Zhuravlev <yar@nginx.com>
date Thu, 28 Feb 2019 15:30:00 +0300
parents 8da870c88c75
children 4795c2ae5066
comparison
equal deleted inserted replaced
2340:537130c40c1f 2341:1ddf76f5c565
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="13"> 12 rev="14">
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.42.tar.gz 82 tar -xzf ../../pcre-8.42.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.0.2q.tar.gz 84 tar -xzf ../../openssl-1.1.1b.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.42 \ 106 --with-pcre=objs/lib/pcre-8.42 \
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.0.2q \ 108 --with-openssl=objs/lib/openssl-1.1.1b \
109 --with-openssl-opt=no-asm \ 109 --with-openssl-opt=no-asm \
110 --with-select_module \ 110 --with-select_module \
111 --with-http_ssl_module 111 --with-http_ssl_module
112 </programlisting> 112 </programlisting>
113 </listitem> 113 </listitem>