diff options
| author | Samuel John | 2013-04-07 19:17:35 +0200 |
|---|---|---|
| committer | Samuel John | 2013-04-07 19:17:35 +0200 |
| commit | fbf7be913a7693c05a4fa40050b7819781b26df0 (patch) | |
| tree | 3b7632fabcf29ba21b74c1269ab351528f4cbe02 /Library/Formula | |
| parent | 97c0e0dd2c4f4377f7b658d294c2d33a54f752fb (diff) | |
| download | homebrew-fbf7be913a7693c05a4fa40050b7819781b26df0.tar.bz2 | |
python: Removed --with-dtrace: patch not compatib.
http://bugs.python.org/issue13405 seems not
to be ready for 2.7.4. Neither merged nor a
patch available. Feel free to submit a pull
request if there is a 2.7.4-compatible
dtrace patch.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/python.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb index c03cd817f..22fc97f0c 100644 --- a/Library/Formula/python.rb +++ b/Library/Formula/python.rb @@ -20,8 +20,10 @@ class Python < Formula option 'with-brewed-openssl', "Use Homebrew's openSSL instead of the one from OS X" option 'with-brewed-tk', "Use Homebrew's Tk (has optional Cocoa and threads support)" option 'with-poll', 'Enable select.poll, which is not fully implemented on OS X (http://bugs.python.org/issue5154)' + + # It seems this is not available yet for 2.7.4 - I commented it out until the upstream issue gets updated --sam # --with-dtrace relies on CLT as dtrace hard-codes paths to /usr - option 'with-dtrace', 'Experimental DTrace support (http://bugs.python.org/issue13405)' if MacOS::CLT.installed? + #option 'with-dtrace', 'Experimental DTrace support (http://bugs.python.org/issue13405)' if MacOS::CLT.installed? depends_on 'pkg-config' => :build depends_on 'readline' => :recommended |
