diff options
Diffstat (limited to 'network/nginx/nginx.SlackBuild')
-rw-r--r-- | network/nginx/nginx.SlackBuild | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/network/nginx/nginx.SlackBuild b/network/nginx/nginx.SlackBuild index 0b12bd185f..b3a644fcfe 100644 --- a/network/nginx/nginx.SlackBuild +++ b/network/nginx/nginx.SlackBuild @@ -28,7 +28,7 @@ # Special thanks to Thomas Morper for some configuration adjustments tips PRGNAM=nginx -VERSION=${VERSION:-1.6.1} +VERSION=${VERSION:-1.6.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -79,12 +79,6 @@ sed -i \ -e '/root[ ]*html/s|html;|/var/www/&|' \ -e '$s|.*| include /etc/nginx/conf.d/\*.conf;\n&|' conf/$PRGNAM.conf -if [ "${USE_SPDY:-no}" == "yes" ]; then - SPDY_MOD="--with-http_spdy_module" -else - SPDY_MOD="" -fi - if [ "${USE_GEOIP:-no}" == "yes" ]; then GEOIP_MOD="--with-http_geoip_module" else @@ -130,7 +124,7 @@ CXXFLAGS="$SLKCFLAGS" \ --with-http_auth_request_module \ --with-mail \ --with-mail_ssl_module \ - $SPDY_MOD \ + --with-http_spdy_module \ $GEOIP_MOD make |