homebrew-core/Formula/xmlrpc-c.rb
Jack Nagel 53473b6bf5 Clean up MacOS version method usage
The MacOS.version? family of methods (other than "leopard?") are poorly
defined and lead to confusing code. Replace them in formulae with more
explicit comparisons.

"MacOS.version" is a special version object that can be compared to
numerics, symbols, and strings using the standard Ruby comparison
methods.

The old methods were moved to compat when the version comparison code
was merged, and they must remain there "forever", but they should not be
used in new code.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-09-10 16:16:54 -05:00

60 lines
1.7 KiB
Ruby

require 'formula'
class XmlrpcC < Formula
homepage 'http://xmlrpc-c.sourceforge.net/'
url 'http://downloads.sourceforge.net/sourceforge/xmlrpc-c/xmlrpc-c-1.16.42.tgz'
sha1 '7a71fabc652c2848a7226605432a2e420a02dff0'
def patches
# Backport patch for deprecated curl/types.h include, which is gone on 10.8
# On 10.6 and 10.7 it's empty, so could probably patch unconditionally
# see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=636457#10
DATA if MacOS.version >= :mountain_lion
end
def install
ENV.deparallelize
# --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
__END__
--- stable/lib/curl_transport/curltransaction.c 2011/03/26 19:32:28 2115
+++ stable/lib/curl_transport/curltransaction.c 2011/07/09 17:47:44 2150
@@ -17,7 +17,9 @@
#include "version.h"
#include <curl/curl.h>
+#ifdef NEED_CURL_TYPES_H
#include <curl/types.h>
+#endif
#include <curl/easy.h>
#include "curlversion.h"
--- stable/lib/curl_transport/curlmulti.c 2011/07/09 17:41:18 2149
+++ stable/lib/curl_transport/curlmulti.c 2011/07/09 17:47:44 2150
@@ -19,7 +19,9 @@
#endif
#include <curl/curl.h>
+#ifdef NEED_CURL_TYPES_H
#include <curl/types.h>
+#endif
#include <curl/easy.h>
#include <curl/multi.h>
--- stable/lib/curl_transport/xmlrpc_curl_transport.c 2011/07/09 17:41:18 2149
+++ stable/lib/curl_transport/xmlrpc_curl_transport.c 2011/07/09 17:47:44 2150
@@ -85,7 +85,9 @@
#include "xmlrpc-c/time_int.h"
#include <curl/curl.h>
+#ifdef NEED_CURL_TYPES_H
#include <curl/types.h>
+#endif
#include <curl/easy.h>
#include <curl/multi.h>