aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/python3.rb
diff options
context:
space:
mode:
authorJack Nagel2014-03-21 19:56:38 -0500
committerJack Nagel2014-03-21 19:56:38 -0500
commit6e26500e7f464e29287caf79f299354fdce25427 (patch)
treefc6afa42e37b3eb679b0780ce1f0c5fd883cadc8 /Library/Formula/python3.rb
parenta46be6e4c01b00d602f6ffb32bc2114f9eafee1d (diff)
downloadhomebrew-6e26500e7f464e29287caf79f299354fdce25427.tar.bz2
python[23]: always use Homebrew openssl
Diffstat (limited to 'Library/Formula/python3.rb')
-rw-r--r--Library/Formula/python3.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb
index a2a05cf73..113a883e0 100644
--- a/Library/Formula/python3.rb
+++ b/Library/Formula/python3.rb
@@ -11,14 +11,13 @@ class Python3 < Formula
option :universal
option 'quicktest', 'Run `make quicktest` after the build'
- 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)"
depends_on 'pkg-config' => :build
depends_on 'readline' => :recommended
depends_on 'sqlite' => :recommended
depends_on 'gdbm' => :recommended
- depends_on 'openssl' if build.with? 'brewed-openssl'
+ depends_on 'openssl'
depends_on 'xz' => :recommended # for the lzma module added in 3.3
depends_on 'homebrew/dupes/tcl-tk' if build.with? 'brewed-tk'
depends_on :x11 if build.with? 'brewed-tk' and Tab.for_name('tcl-tk').used_options.include?('with-x11')