diff options
| author | Adam Vandenberg | 2013-09-17 21:36:47 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-09-17 21:36:47 -0700 | 
| commit | d7814b415468e9cf5b85c39be5bbff13e2914f26 (patch) | |
| tree | e77d54325160a2d5fbeb186a525fedb8d708d500 /Library | |
| parent | ca956b003bd172735e2c9df79aad0eceb7abba26 (diff) | |
| download | homebrew-d7814b415468e9cf5b85c39be5bbff13e2914f26.tar.bz2 | |
v8: mark as needing lion or newer
Not compiling on Snow Leopard with or without Homebrew.
https://github.com/mxcl/homebrew/issues/21426
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/v8.rb | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/v8.rb b/Library/Formula/v8.rb index 84f2d42ee..617865d19 100644 --- a/Library/Formula/v8.rb +++ b/Library/Formula/v8.rb @@ -19,6 +19,10 @@ class V8 < Formula    option 'with-readline', 'Use readline instead of libedit' +  # not building on Snow Leopard: +  # https://github.com/mxcl/homebrew/issues/21426 +  depends_on :macos => :lion +    # gyp currently depends on a full xcode install    # https://code.google.com/p/gyp/issues/detail?id=292    depends_on :xcode  | 
