aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJames Wheare2012-09-19 01:12:01 +0100
committerMax Howell2012-09-19 22:46:41 -0400
commit32647df08762d35954a0449cbf9762716d4eea39 (patch)
tree36eb4dbdb9c060689d7d3d42d2214eb2b7c4d65e /Library/Formula
parent4d75918d8abe8830799660a29a03f256460fde04 (diff)
downloadhomebrew-32647df08762d35954a0449cbf9762716d4eea39.tar.bz2
ircd-hybrid: Bump up the nickname limit to something airier.
There's no config setting for this, so we need to compile it in to something generous and useful Closes #15005. Signed-off-by: Max Howell <mxcl@me.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ircd-hybrid.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/ircd-hybrid.rb b/Library/Formula/ircd-hybrid.rb
index f46d3bd6a..82c0364bc 100644
--- a/Library/Formula/ircd-hybrid.rb
+++ b/Library/Formula/ircd-hybrid.rb
@@ -14,7 +14,9 @@ class IrcdHybrid < Formula
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
- "--localstatedir=#{var}"
+ "--localstatedir=#{var}",
+ # there's no config setting for this so set it to something generous
+ "--with-nicklen=30"
system "make install"
end