forked from rjocoleman/homebrew-apache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ab.rb
63 lines (51 loc) · 2.07 KB
/
ab.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
require "formula"
class Ab < Formula
homepage "https://httpd.apache.org/docs/trunk/programs/ab.html"
url "https://archive.apache.org/dist/httpd/httpd-2.4.10.tar.bz2"
sha1 "00f5c3f8274139bd6160eda2cf514fa9b74549e5"
keg_only :provided_by_osx
conflicts_with "httpd22", "httpd24", :because => "both install `ab`"
depends_on "apr-util"
depends_on "libtool" => :build
option "with-ssl-patch", 'Apply patch for: Bug 49382 - ab says "SSL read failed"'
# Disable requirement for PCRE, because "ab" does not use it
patch :DATA
# Patch for https://issues.apache.org/bugzilla/show_bug.cgi?id=49382
# Upstream has not incorporated the patch. Should keep following
# what upstream does about this.
patch do
url "https://gist.githubusercontent.com/Noctem/a0ba1477dbc11b5108b2/raw/ddf33c8a8b7939bbc3f12a1eb700a12b339d9194/ab-ssl-patch.diff"
sha1 "7c4591e343c84d956e241194aac2b2804d327147"
end if build.with? "ssl-patch"
def install
# Mountain Lion requires this to be set, as otherwise libtool complains
# about being "unable to infer tagged configuration"
ENV["LTFLAGS"] = "--tag CC"
system "./configure", "--prefix=#{prefix}", "--disable-debug",
"--disable-dependency-tracking",
"--with-apr=#{Formula["apr"].opt_prefix}",
"--with-apr-util=#{Formula["apr-util"].opt_prefix}"
cd "support" do
system "make", "ab"
# We install into the "bin" directory, although "ab" would normally be
# installed to "/usr/sbin/ab"
bin.install("ab")
end
man1.install("docs/man/ab.1")
end
test do
system *%W{#{bin}/ab -k -n 10 -c 10 http://www.apple.com/}
end
end
__END__
diff --git a/configure b/configure
index 90ae8be..243e9cf 100755
--- a/configure
+++ b/configure
@@ -6156,8 +6156,6 @@ $as_echo "$as_me: Using external PCRE library from $PCRE_CONFIG" >&6;}
done
fi
-else
- as_fn_error $? "pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/" "$LINENO" 5
fi
APACHE_VAR_SUBST="$APACHE_VAR_SUBST PCRE_LIBS"