diff options
| author | Adam Vandenberg | 2012-03-10 14:29:37 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-10 14:29:37 -0800 |
| commit | bae1bfbd126d7946f03cdbf5d8ae42729aefb43e (patch) | |
| tree | 5697d318732a58a9ca8e79433dd0dd14f7321915 | |
| parent | 11c793c3906f801d1c3928321e094a5b8fd7d0ca (diff) | |
| download | homebrew-bae1bfbd126d7946f03cdbf5d8ae42729aefb43e.tar.bz2 | |
xmlrpc-c 1.16.40
| -rw-r--r-- | Library/Formula/xmlrpc-c.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/xmlrpc-c.rb b/Library/Formula/xmlrpc-c.rb index 7ab33a05e..1811a1465 100644 --- a/Library/Formula/xmlrpc-c.rb +++ b/Library/Formula/xmlrpc-c.rb @@ -2,15 +2,15 @@ require 'formula' class XmlrpcC < Formula homepage 'http://xmlrpc-c.sourceforge.net/' - url 'http://downloads.sourceforge.net/sourceforge/xmlrpc-c/xmlrpc-c-1.16.39.tgz' - md5 'e88c9ee202890d726405b3bdfb00cfaf' + url 'http://downloads.sourceforge.net/sourceforge/xmlrpc-c/xmlrpc-c-1.16.40.tgz' + md5 '0b5c026d48c21937261d90bdadda7248' def install ENV.deparallelize - # choosing --enable-libxml2-backend to lose some weight and not statically - # link in expat - # NOTE seemingly it isn't possible to build dylibs with this thing - system "./configure", "--disable-debug", "--enable-libxml2-backend", "--prefix=#{prefix}" + # --enable-libxml2-backend to lose some weight and not statically link in expat + system "./configure", "--disable-debug", + "--enable-libxml2-backend", + "--prefix=#{prefix}" system "make install" end end |
