aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authoredified@gmail.com2013-05-12 15:36:12 +0300
committerAdam Vandenberg2013-05-15 08:56:58 -0700
commit5c55f7875e545a7b524ccc4509f6903ba01c22dd (patch)
tree1ef908c4dfd4b3e42743b363d6f26e417366af51 /Library/Formula
parentcd454aa4319078ea8ce0106dcfa9d9baec7d6f04 (diff)
downloadhomebrew-5c55f7875e545a7b524ccc4509f6903ba01c22dd.tar.bz2
squid: disable EUI
Added --disable-eui otherwise you get a bunch of ERROR: ARP / MAC / EUI-* operations not supported on this operating system. on OS X Server 10.8.3 and presumably others, reported for 10.6.8 here: http://squid-web-proxy-cache.1019090.n4.nabble.com/ERROR-ARP-MAC-EUI-operations-not-supported-on-this-operating-system-td4659335.html Closes #19751. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/squid.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Formula/squid.rb b/Library/Formula/squid.rb
index 16692dd2c..eaefd7b8d 100644
--- a/Library/Formula/squid.rb
+++ b/Library/Formula/squid.rb
@@ -21,6 +21,8 @@ class Squid < Formula
depends_on NoBdb5
def install
+ # For --disable-eui, see:
+ # http://squid-web-proxy-cache.1019090.n4.nabble.com/ERROR-ARP-MAC-EUI-operations-not-supported-on-this-operating-system-td4659335.html
args =%W[
--disable-debug
--disable-dependency-tracking
@@ -28,6 +30,7 @@ class Squid < Formula
--localstatedir=#{var}
--enable-ssl
--enable-ssl-crtd
+ --disable-eui
]
system "./configure", *args