aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authormbcoguno2014-04-09 14:55:08 +0800
committerBrett Koonce2014-04-12 09:01:36 -0500
commit7c892e10bccd1cdb557c8789dd112508cbea7dcd (patch)
treeb4108724eb7cf05ba6910e657fac9318a55459ab /Library/Formula
parent7e7ea4149d4691b06241991deb646cbd20738363 (diff)
downloadhomebrew-7c892e10bccd1cdb557c8789dd112508cbea7dcd.tar.bz2
ume & mess 0.153
* Restore optimization level in clang. Closes #28329. Signed-off-by: Brett Koonce <koonce@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mess.rb9
-rw-r--r--Library/Formula/ume.rb9
2 files changed, 4 insertions, 14 deletions
diff --git a/Library/Formula/mess.rb b/Library/Formula/mess.rb
index 934174f61..9590d108a 100644
--- a/Library/Formula/mess.rb
+++ b/Library/Formula/mess.rb
@@ -2,8 +2,8 @@ require 'formula'
class Mess < Formula
homepage 'http://www.mess.org/'
- url 'svn://dspnet.fr/mame/trunk', :revision => '26743'
- version '0.152'
+ url 'svn://dspnet.fr/mame/trunk', :revision => '29406'
+ version '0.153'
head 'svn://dspnet.fr/mame/trunk'
@@ -15,11 +15,6 @@ class Mess < Formula
ENV['INCPATH'] = "-I#{MacOS::X11.include}"
ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0')
- # Avoid memory allocation runtime error:
- # Error: attempt to free untracked memory in (null)(0)!
- # Ignoring MAME exception: Error: attempt to free untracked memory
- ENV.O2 if ENV.compiler == :clang
-
system "make", "CC=#{ENV.cc}", "LD=#{ENV.cxx}",
"TARGET=mess", "SUBTARGET=mess"
diff --git a/Library/Formula/ume.rb b/Library/Formula/ume.rb
index a22dbc0ff..320914c8e 100644
--- a/Library/Formula/ume.rb
+++ b/Library/Formula/ume.rb
@@ -2,8 +2,8 @@ require 'formula'
class Ume < Formula
homepage 'http://mamedev.org/'
- url 'svn://dspnet.fr/mame/trunk', :revision => '26743'
- version '0.152'
+ url 'svn://dspnet.fr/mame/trunk', :revision => '29406'
+ version '0.153'
head 'svn://dspnet.fr/mame/trunk'
@@ -15,11 +15,6 @@ class Ume < Formula
ENV['INCPATH'] = "-I#{MacOS::X11.include}"
ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0')
- # Avoid memory allocation runtime error:
- # Error: attempt to free untracked memory in (null)(0)!
- # Ignoring MAME exception: Error: attempt to free untracked memory
- ENV.O2 if ENV.compiler == :clang
-
system "make", "CC=#{ENV.cc}", "LD=#{ENV.cxx}", "TARGET=ume"
if MacOS.prefer_64_bit?