]> jfr.im git - solanum.git/blobdiff - configure.ac
Add support for customizing the usable nick length.
[solanum.git] / configure.ac
index f68652f2e4f2db295681ecbde9357b9e68f28512..a6e1b45f71b579074f6dd5683e5286f44ea48ac4 100644 (file)
@@ -893,7 +893,7 @@ dnl so enable small net unless you really need this much support
 fi
 
 AC_ARG_WITH(nicklen,
-AC_HELP_STRING([--with-nicklen=LENGTH],[Set the nick length to LENGTH (default 15, max 50)]),
+AC_HELP_STRING([--with-nicklen=LENGTH],[Set the upper-bound nick length to LENGTH (default 50, max 50)]),
 [
   if ! expr "$withval" + 0 >/dev/null 2>&1; then 
        AC_ERROR([NICKLEN must be a numeric value])
@@ -904,7 +904,7 @@ AC_HELP_STRING([--with-nicklen=LENGTH],[Set the nick length to LENGTH (default 1
   else
        NICKLEN="$withval"
   fi
-], [NICKLEN=15])
+], [NICKLEN=50])
 
 AC_ARG_WITH(topiclen,           
 AC_HELP_STRING([--with-topiclen=NUMBER],[Set the max topic length to NUMBER (default 390, max 390)]),