2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-19 17:59:58 +00:00
|
|
|
|
|
|
|
class BdwGc <Formula
|
2009-11-21 06:52:02 +00:00
|
|
|
url 'http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.1.tar.gz'
|
|
|
|
homepage 'http://www.hpl.hp.com/personal/Hans_Boehm/gc/'
|
|
|
|
md5 '2ff9924c7249ef7f736ecfe6f08f3f9b'
|
2009-09-19 17:59:58 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
if MACOS_VERSION == 10.6
|
|
|
|
# LLVM gives an unsupported inline asm error
|
|
|
|
ENV.gcc_4_2
|
|
|
|
|
|
|
|
# ucontext has been deprecated in 10.6
|
|
|
|
# use this flag to force the header to compile
|
2009-11-21 06:52:02 +00:00
|
|
|
ENV.append 'CPPFLAGS', "-D_XOPEN_SOURCE"
|
2009-09-19 17:59:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|