comparison xml/en/docs/howto_build_on_win32.xml @ 611:2501c3db40a1

Updated versions of nginx and external libraries used in "Win32 build" howto.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 31 Jul 2012 11:37:10 +0000
parents 764fbac1b8b4
children 95f5c0f0da30
comparison
equal deleted inserted replaced
610:f71947553000 611:2501c3db40a1
67 </listitem> 67 </listitem>
68 68
69 <listitem> 69 <listitem>
70 Check out nginx sources from the svn.nginx.org repository. For example: 70 Check out nginx sources from the svn.nginx.org repository. For example:
71 <programlisting> 71 <programlisting>
72 svn co svn://svn.nginx.org/tags/release-1.1.6 72 svn co svn://svn.nginx.org/tags/release-<development_version/>
73 </programlisting> 73 </programlisting>
74 </listitem> 74 </listitem>
75 75
76 <listitem> 76 <listitem>
77 Create a build and lib directories, and unpack zlib, PCRE and OpenSSL libraries 77 Create a build and lib directories, and unpack zlib, PCRE and OpenSSL libraries
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 unzip ../../pcre-8.12.zip 83 unzip ../../pcre-8.30.zip
84 tar -xzf ../../zlib-1.2.5.tar.gz 84 tar -xzf ../../zlib-1.2.5.tar.gz
85 tar -xzf ../../openssl-1.0.0e.tar.gz 85 tar -xzf ../../openssl-1.0.1c.tar.gz
86 </programlisting> 86 </programlisting>
87 </listitem> 87 </listitem>
88 88
89 <listitem> 89 <listitem>
90 Run configure script: 90 Run configure script:
93 --conf-path=conf/nginx.conf --pid-path=logs/nginx.pid \ 93 --conf-path=conf/nginx.conf --pid-path=logs/nginx.pid \
94 --http-log-path=logs/access.log --error-log-path=logs/error.log \ 94 --http-log-path=logs/access.log --error-log-path=logs/error.log \
95 --sbin-path=nginx.exe --http-client-body-temp-path=temp/client_body_temp \ 95 --sbin-path=nginx.exe --http-client-body-temp-path=temp/client_body_temp \
96 --http-proxy-temp-path=temp/proxy_temp \ 96 --http-proxy-temp-path=temp/proxy_temp \
97 --http-fastcgi-temp-path=temp/fastcgi_temp \ 97 --http-fastcgi-temp-path=temp/fastcgi_temp \
98 --with-cc-opt=-DFD_SETSIZE=1024 --with-pcre=objs/lib/pcre-8.12 \ 98 --with-cc-opt=-DFD_SETSIZE=1024 --with-pcre=objs/lib/pcre-8.30 \
99 --with-zlib=objs/lib/zlib-1.2.5 --with-openssl=objs/lib/openssl-1.0.0e \ 99 --with-zlib=objs/lib/zlib-1.2.5 --with-openssl=objs/lib/openssl-1.0.1c \
100 --with-select_module --with-http_ssl_module --with-ipv6 100 --with-select_module --with-http_ssl_module --with-ipv6
101 </programlisting> 101 </programlisting>
102 </listitem> 102 </listitem>
103 103
104 <listitem> 104 <listitem>