diff options
author | Larry Hajali <larryhaja@gmail.com> | 2014-09-17 14:25:46 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-09-18 09:51:02 +0700 |
commit | 8f38d49c91a804b66e2cbc633e2ce1988f4a88c2 (patch) | |
tree | c3ee764b34c962d4f8400ccc41f99c3657f100dc /network/nginx/nginx.SlackBuild | |
parent | f039bd97aa5669d269ae75247fe794f62396bbb6 (diff) |
network/nginx: Updated for version 1.6.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
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 0b12bd185f8d..b3a644fcfe7c 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 |