aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2013-05-08 15:00:58 -0700
committerAdam Vandenberg2013-05-08 15:00:58 -0700
commiteed6c5c2edf034a44bc1fba0889a0a4e8ddf7117 (patch)
tree0598db98f29b3b6d55344feab131a4a153e63b5c
parenta5f62d8df4c8bfba6d94e669ef6c0ce162ab8341 (diff)
downloadhomebrew-eed6c5c2edf034a44bc1fba0889a0a4e8ddf7117.tar.bz2
Node: remove --with-shared-libs
There's no guarantee that the version of V8 packaged by Homebrew is compatible with what the current version of Node expects. Closes #19686.
-rw-r--r--Library/Formula/node.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/Library/Formula/node.rb b/Library/Formula/node.rb
index 7f2a27d13..e884c7deb 100644
--- a/Library/Formula/node.rb
+++ b/Library/Formula/node.rb
@@ -53,11 +53,9 @@ class Node < Formula
option 'enable-debug', 'Build with debugger hooks'
option 'without-npm', 'npm will not be installed'
- option 'with-shared-libs', 'Use Homebrew V8 and system OpenSSL, zlib'
depends_on NpmNotInstalled unless build.without? 'npm'
depends_on PythonVersion
- depends_on 'v8' if build.with? 'shared-libs'
fails_with :llvm do
build 2326
@@ -69,12 +67,6 @@ class Node < Formula
def install
args = %W{--prefix=#{prefix}}
- if build.with? 'shared-libs'
- args << '--shared-openssl' unless MacOS.version == :leopard
- args << '--shared-v8'
- args << '--shared-zlib'
- end
-
args << "--debug" if build.include? 'enable-debug'
args << "--without-npm" if build.include? 'without-npm'