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 Homebrew/homebrew#15005.

Signed-off-by: Max Howell <mxcl@me.com>
master
James Wheare 2012-09-19 01:12:01 +01:00 committed by Max Howell
parent f384871140
commit 13470cb3db
1 changed files with 3 additions and 1 deletions

View File

@ -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