diff options
| author | David Holm | 2013-03-02 12:25:20 +0100 |
|---|---|---|
| committer | Charlie Sharpsteen | 2013-03-02 13:24:45 -0800 |
| commit | c5bbb9286764ccc06ffe3f1c07c599c12b518b7e (patch) | |
| tree | 7689bb7d5fe3fb465a7ca211eb53203add38d247 /Library/Formula | |
| parent | fd4a7b32c2b8fce52082a7736995a903461aedec (diff) | |
| download | homebrew-c5bbb9286764ccc06ffe3f1c07c599c12b518b7e.tar.bz2 | |
wine: Update devel 1.5.25
Removes the warning about compiling wine with Clang when installing the devel
version since most of the serious bugs seems to have been resolved as of 1.5.20.
Tested it against a set of binaries which would not run with older versions
built with Clang and they ran with 1.5.25.
Closes #18184.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/wine.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/wine.rb b/Library/Formula/wine.rb index 72057e530..c6296dbe7 100644 --- a/Library/Formula/wine.rb +++ b/Library/Formula/wine.rb @@ -27,8 +27,8 @@ class Wine < Formula # updating too # * http://wiki.winehq.org/Gecko # * http://wiki.winehq.org/Mono - url 'http://downloads.sourceforge.net/project/wine/Source/wine-1.5.24.tar.bz2' - sha1 'd96ad506e115659520ad24f30c87c7d04a810154' + url 'http://downloads.sourceforge.net/project/wine/Source/wine-1.5.25.tar.bz2' + sha1 'fdc0067cce2176577a61b693fcbbf98ec1d50f2a' end env :std @@ -83,7 +83,7 @@ class Wine < Formula ENV["LIBS"] = "-lGL -lGLU" ENV.append "CFLAGS", build32 - if ENV.compiler == :clang + if ENV.compiler == :clang and !build.devel? opoo <<-EOS.undent Clang currently miscompiles some parts of Wine. If you have gcc, you can get a more stable build with: |
