diff options
| author | Robin Ramael | 2011-01-12 15:35:18 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2011-02-12 17:44:53 +0000 |
| commit | e7521083224040926d13246aaa588fc13a3ff189 (patch) | |
| tree | 258efcf5ea79742f7218b3b097bdceef82d13b0c /Library/Formula/dmd.rb | |
| parent | 3c3479c192100e5304ca373057d83a9466f29537 (diff) | |
| download | homebrew-e7521083224040926d13246aaa588fc13a3ff189.tar.bz2 | |
Updated dmd (digital mars d compiler) to 2.051
the dflags env variable set in preifx/bin/mdm.conf had to be changed. Everything
seems to work, but the library in prefix/lib is not included because it caused all
compilations to fail.
Closes #3876.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/dmd.rb')
| -rw-r--r-- | Library/Formula/dmd.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/dmd.rb b/Library/Formula/dmd.rb index a9b579bb0..ac242811c 100644 --- a/Library/Formula/dmd.rb +++ b/Library/Formula/dmd.rb @@ -2,8 +2,8 @@ require 'formula' class Dmd <Formula homepage 'http://www.digitalmars.com/d/' - url 'http://ftp.digitalmars.com/dmd.1.065.zip' - md5 '10e39569dee0ea6c95806b370f837bc7' + url 'http://ftp.digitalmars.com/dmd.2.051.zip' + md5 '7952059a67995e3e74f3c27aa3942d6c' def doc #use d and not dmd, rationale: meh @@ -30,7 +30,7 @@ class Dmd <Formula (bin+'dmd.conf').open('w') do |f| f.puts "[Environment]" - f.puts "DFLAGS=-I#{prefix}/src/phobos -L#{lib}" + f.puts "DFLAGS=-I#{prefix}/src/phobos -I#{prefix}/src/druntime/import" end end end
\ No newline at end of file |
