diff options
| author | Linus Unnebäck | 2013-10-24 03:27:46 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-10-25 12:43:09 -0700 |
| commit | 98d1490f2d9c2059b0d77e377acd16847025d51f (patch) | |
| tree | 3e78e2aaf745362c1a61a3c1b033a18e750d32f9 /Library/Formula | |
| parent | a804b56a598cfe9a12107fda448ce1e92d4b0c68 (diff) | |
| download | homebrew-98d1490f2d9c2059b0d77e377acd16847025d51f.tar.bz2 | |
wine: added patch for graphics issue
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/wine.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Library/Formula/wine.rb b/Library/Formula/wine.rb index f78fe6298..7c2c93ac4 100644 --- a/Library/Formula/wine.rb +++ b/Library/Formula/wine.rb @@ -62,14 +62,18 @@ class Wine < Formula end def patches + p = [] if build.stable? - p = [] # http://bugs.winehq.org/show_bug.cgi?id=34188 p << 'http://bugs.winehq.org/attachment.cgi?id=45507' # http://bugs.winehq.org/show_bug.cgi?id=34162 p << 'http://bugs.winehq.org/attachment.cgi?id=45562' if MacOS.version >= :mavericks - p end + if build.devel? + # http://bugs.winehq.org/show_bug.cgi?id=34166 + p << 'http://bugs.winehq.org/attachment.cgi?id=46394' + end + p end # the following libraries are currently not specified as dependencies, or not built as 32-bit: |
