diff options
| author | Aitor Guevara | 2014-07-05 17:32:01 +0200 |
|---|---|---|
| committer | Mike McQuaid | 2014-07-07 11:58:41 -0700 |
| commit | 3e1c8c7f5f3b3eeb57b88e6315a67153f3dde0a7 (patch) | |
| tree | 4c6a2b84323514f005791ddf20787b3c0e7d6c51 /Library | |
| parent | cd7512dc166fcbc29a1b8ebe78c0a9ec95efaa5b (diff) | |
| download | homebrew-3e1c8c7f5f3b3eeb57b88e6315a67153f3dde0a7.tar.bz2 | |
uwsgi: optionally depend on brewed Python
uwsgi didn't depend on brewed Python since system's one is enough
during the build process. If uwsgi is used to serve Python apps, though,
brewed Python should be an available option to link Python's plugin
against.
The added --with-python option will use brewed Python to build the
plugin if --build-from-source is used.
Closes #30673.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/uwsgi.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Formula/uwsgi.rb b/Library/Formula/uwsgi.rb index 7e59c51a4..eb4846b4f 100644 --- a/Library/Formula/uwsgi.rb +++ b/Library/Formula/uwsgi.rb @@ -28,6 +28,7 @@ class Uwsgi < Formula depends_on "nagios" => :optional depends_on "postgresql" => :optional depends_on "pypy" => :optional + depends_on "python" => :optional depends_on "python3" => :optional depends_on "rrdtool" => :optional depends_on "rsyslog" => :optional |
