From eed6c5c2edf034a44bc1fba0889a0a4e8ddf7117 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Wed, 8 May 2013 15:00:58 -0700 Subject: 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. --- Library/Formula/node.rb | 8 -------- 1 file changed, 8 deletions(-) (limited to 'Library') 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' -- cgit v1.2.3