diff options
| author | Adam Vandenberg | 2013-06-11 07:46:24 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-11 07:47:23 -0700 |
| commit | 802a39b26e61a46cbbc70e58d3182fb8bc2a5692 (patch) | |
| tree | 1241cc1e799922d117b851cba585ef86404e8ed4 /Library | |
| parent | ba68cea9a57d9a4f5b9c8b1e0d46fa4eda113717 (diff) | |
| download | homebrew-802a39b26e61a46cbbc70e58d3182fb8bc2a5692.tar.bz2 | |
nginx: options come before deps
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/nginx.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/nginx.rb b/Library/Formula/nginx.rb index 843a71741..423e5e4b4 100644 --- a/Library/Formula/nginx.rb +++ b/Library/Formula/nginx.rb @@ -14,18 +14,18 @@ class Nginx < Formula env :userpaths - depends_on 'pcre' - # SPDY needs openssl >= 1.0.1 for NPN; see: - # https://tools.ietf.org/agenda/82/slides/tls-3.pdf - # http://www.openssl.org/news/changelog.html - depends_on 'openssl' if build.with? 'spdy' - option 'with-passenger', 'Compile with support for Phusion Passenger module' option 'with-webdav', 'Compile with support for WebDAV module' option 'with-debug', 'Compile with support for debug log' option 'with-spdy', 'Compile with support for SPDY module' option 'with-gunzip', 'Compile with support for gunzip module' + depends_on 'pcre' + # SPDY needs openssl >= 1.0.1 for NPN; see: + # https://tools.ietf.org/agenda/82/slides/tls-3.pdf + # http://www.openssl.org/news/changelog.html + depends_on 'openssl' if build.with? 'spdy' + skip_clean 'logs' # Changes default port to 8080 |
