comparison misc/GNUmakefile @ 4894:0156fd6f48fa

Style, parentheses instead of braces in misc/GNUMakefile.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 30 Oct 2012 11:09:38 +0000
parents 762605076600
children 764833756dcd
comparison
equal deleted inserted replaced
4893:e89bd9896fea 4894:0156fd6f48fa
83 tar -c -z -f $(NGINX).tar.gz --directory $(TEMP) $(NGINX) 83 tar -c -z -f $(NGINX).tar.gz --directory $(TEMP) $(NGINX)
84 84
85 win32: 85 win32:
86 ./auto/configure \ 86 ./auto/configure \
87 --with-cc=cl \ 87 --with-cc=cl \
88 --builddir=${OBJS} \ 88 --builddir=$(OBJS) \
89 --with-debug \ 89 --with-debug \
90 --prefix= \ 90 --prefix= \
91 --conf-path=conf/nginx.conf \ 91 --conf-path=conf/nginx.conf \
92 --pid-path=logs/nginx.pid \ 92 --pid-path=logs/nginx.pid \
93 --http-log-path=logs/access.log \ 93 --http-log-path=logs/access.log \
97 --http-proxy-temp-path=temp/proxy_temp \ 97 --http-proxy-temp-path=temp/proxy_temp \
98 --http-fastcgi-temp-path=temp/fastcgi_temp \ 98 --http-fastcgi-temp-path=temp/fastcgi_temp \
99 --http-scgi-temp-path=temp/scgi_temp \ 99 --http-scgi-temp-path=temp/scgi_temp \
100 --http-uwsgi-temp-path=temp/uwsgi_temp \ 100 --http-uwsgi-temp-path=temp/uwsgi_temp \
101 --with-cc-opt=-DFD_SETSIZE=1024 \ 101 --with-cc-opt=-DFD_SETSIZE=1024 \
102 --with-pcre=${OBJS}/lib/${PCRE} \ 102 --with-pcre=$(OBJS)/lib/$(PCRE) \
103 --with-zlib=${OBJS}/lib/${ZLIB} \ 103 --with-zlib=$(OBJS)/lib/$(ZLIB) \
104 --with-select_module \ 104 --with-select_module \
105 --with-http_realip_module \ 105 --with-http_realip_module \
106 --with-http_addition_module \ 106 --with-http_addition_module \
107 --with-http_sub_module \ 107 --with-http_sub_module \
108 --with-http_dav_module \ 108 --with-http_dav_module \
112 --with-http_gunzip_module \ 112 --with-http_gunzip_module \
113 --with-http_gzip_static_module \ 113 --with-http_gzip_static_module \
114 --with-http_random_index_module \ 114 --with-http_random_index_module \
115 --with-http_secure_link_module \ 115 --with-http_secure_link_module \
116 --with-mail \ 116 --with-mail \
117 --with-openssl=${OBJS}/lib/${OPENSSL} \ 117 --with-openssl=$(OBJS)/lib/$(OPENSSL) \
118 --with-openssl-opt=enable-tlsext \ 118 --with-openssl-opt=enable-tlsext \
119 --with-http_ssl_module \ 119 --with-http_ssl_module \
120 --with-mail_ssl_module \ 120 --with-mail_ssl_module \
121 --with-ipv6 121 --with-ipv6
122 122