aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAlexey Palazhchenko2012-12-17 19:10:56 +0400
committerAdam Vandenberg2012-12-29 10:14:11 -0800
commit3def3628e2fa85e6b801e3185b42ccf5afc6a993 (patch)
treef9c8a21b18dbce81bd5b7be5bc477e0576e6cb19 /Library/Formula
parentb34ca1379d36cfd4539d2d3d4e9770439a97cd53 (diff)
downloadhomebrew-3def3628e2fa85e6b801e3185b42ccf5afc6a993.tar.bz2
nginx: Add --with-debug option.
Closes #16624. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/nginx.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/nginx.rb b/Library/Formula/nginx.rb
index d2147a514..93b08d6e2 100644
--- a/Library/Formula/nginx.rb
+++ b/Library/Formula/nginx.rb
@@ -16,6 +16,7 @@ class Nginx < Formula
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'
skip_clean 'logs'
@@ -55,6 +56,7 @@ class Nginx < Formula
args << passenger_config_args if build.include? 'with-passenger'
args << "--with-http_dav_module" if build.include? 'with-webdav'
+ args << "--with-debug" if build.include? 'with-debug'
system "./configure", *args
system "make"