c204651923
Closes Homebrew/homebrew#28778.
47 lines
1.3 KiB
Ruby
47 lines
1.3 KiB
Ruby
require "formula"
|
|
|
|
class Minisat < Formula
|
|
homepage "http://minisat.se"
|
|
url "https://github.com/niklasso/minisat/archive/releases/2.2.0.tar.gz"
|
|
sha1 "28c14eed485f4adb8dde9e26f05476f7eedc8f77"
|
|
|
|
# Fix some declaration errors; see:
|
|
# http://groups.google.com/group/minisat/browse_thread/thread/f5b6a180cadbb214
|
|
patch :DATA
|
|
|
|
fails_with :clang do
|
|
cause "error: friend declaration specifying a default argument must be a definition"
|
|
end
|
|
|
|
def install
|
|
ENV["MROOT"] = buildpath
|
|
system "make", "-C", "simp", "r"
|
|
bin.install "simp/minisat_release" => "minisat"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/utils/System.cc b/utils/System.cc
|
|
index a7cf53f..feeaf3c 100644
|
|
--- a/utils/System.cc
|
|
+++ b/utils/System.cc
|
|
@@ -78,16 +78,17 @@ double Minisat::memUsed(void) {
|
|
struct rusage ru;
|
|
getrusage(RUSAGE_SELF, &ru);
|
|
return (double)ru.ru_maxrss / 1024; }
|
|
-double MiniSat::memUsedPeak(void) { return memUsed(); }
|
|
+double Minisat::memUsedPeak(void) { return memUsed(); }
|
|
|
|
|
|
#elif defined(__APPLE__)
|
|
#include <malloc/malloc.h>
|
|
|
|
-double Minisat::memUsed(void) {
|
|
+double Minisat::memUsed() {
|
|
malloc_statistics_t t;
|
|
malloc_zone_statistics(NULL, &t);
|
|
return (double)t.max_size_in_use / (1024*1024); }
|
|
+double Minisat::memUsedPeak() { return memUsed(); }
|
|
|
|
#else
|
|
double Minisat::memUsed() {
|