comparison misc/GNUmakefile @ 6231:5def760fe95e

Updated OpenSSL used for win32 builds. Note that as of OpenSSL 1.0.0, the "ms\do_ms" script (previously documented to be used if one doesn't want to use the assembly language files) tries to use MASM. Additionally, OpenSSL 1.0.2 finally broke MASM support. To fix this, we now explicitly use "no-asm" in OpenSSL options.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 17 Aug 2015 18:09:20 +0300
parents eb20c490ac19
children 3250a5783787
comparison
equal deleted inserted replaced
6230:2a621245f4cf 6231:5def760fe95e
3 | sed -e 's/^.*"\(.*\)".*/\1/') 3 | sed -e 's/^.*"\(.*\)".*/\1/')
4 NGINX = nginx-$(VER) 4 NGINX = nginx-$(VER)
5 TEMP = tmp 5 TEMP = tmp
6 6
7 OBJS = objs.msvc8 7 OBJS = objs.msvc8
8 OPENSSL = openssl-1.0.1p 8 OPENSSL = openssl-1.0.2d
9 ZLIB = zlib-1.2.8 9 ZLIB = zlib-1.2.8
10 PCRE = pcre-8.37 10 PCRE = pcre-8.37
11 11
12 12
13 release: export 13 release: export
80 --with-http_random_index_module \ 80 --with-http_random_index_module \
81 --with-http_secure_link_module \ 81 --with-http_secure_link_module \
82 --with-mail \ 82 --with-mail \
83 --with-stream \ 83 --with-stream \
84 --with-openssl=$(OBJS)/lib/$(OPENSSL) \ 84 --with-openssl=$(OBJS)/lib/$(OPENSSL) \
85 --with-openssl-opt=enable-tlsext \ 85 --with-openssl-opt=no-asm \
86 --with-http_ssl_module \ 86 --with-http_ssl_module \
87 --with-mail_ssl_module \ 87 --with-mail_ssl_module \
88 --with-stream_ssl_module \ 88 --with-stream_ssl_module \
89 --with-ipv6 89 --with-ipv6
90 90