Change default --with-nicklen to 31, like atheme-services.
This commit is contained in:
parent
c68d30f70b
commit
b225bf93b7
3 changed files with 8 additions and 4 deletions
|
@ -893,7 +893,7 @@ dnl so enable small net unless you really need this much support
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_ARG_WITH(nicklen,
|
AC_ARG_WITH(nicklen,
|
||||||
AC_HELP_STRING([--with-nicklen=LENGTH],[Set the upper-bound nick length to LENGTH (default 50, max 50)]),
|
AC_HELP_STRING([--with-nicklen=LENGTH],[Set the upper-bound nick length to LENGTH (default 31, max 50)]),
|
||||||
[
|
[
|
||||||
if ! expr "$withval" + 0 >/dev/null 2>&1; then
|
if ! expr "$withval" + 0 >/dev/null 2>&1; then
|
||||||
AC_ERROR([NICKLEN must be a numeric value])
|
AC_ERROR([NICKLEN must be a numeric value])
|
||||||
|
@ -904,7 +904,7 @@ AC_HELP_STRING([--with-nicklen=LENGTH],[Set the upper-bound nick length to LENGT
|
||||||
else
|
else
|
||||||
NICKLEN="$withval"
|
NICKLEN="$withval"
|
||||||
fi
|
fi
|
||||||
], [NICKLEN=50])
|
], [NICKLEN=31])
|
||||||
|
|
||||||
AC_ARG_WITH(topiclen,
|
AC_ARG_WITH(topiclen,
|
||||||
AC_HELP_STRING([--with-topiclen=NUMBER],[Set the max topic length to NUMBER (default 390, max 390)]),
|
AC_HELP_STRING([--with-topiclen=NUMBER],[Set the max topic length to NUMBER (default 390, max 390)]),
|
||||||
|
|
|
@ -81,7 +81,9 @@ serverinfo {
|
||||||
*/
|
*/
|
||||||
default_max_clients = 1024;
|
default_max_clients = 1024;
|
||||||
|
|
||||||
/* nicklen: enforced nickname length (for this server only; must be 50 or smaller) */
|
/* nicklen: enforced nickname length (for this server only; must not
|
||||||
|
* be longer than the maximum length set while building).
|
||||||
|
*/
|
||||||
nicklen = 30;
|
nicklen = 30;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -161,7 +161,9 @@ serverinfo {
|
||||||
*/
|
*/
|
||||||
default_max_clients = 1024;
|
default_max_clients = 1024;
|
||||||
|
|
||||||
/* nicklen: enforced nickname length (for this server only; must be 50 or smaller) */
|
/* nicklen: enforced nickname length (for this server only; must not
|
||||||
|
* be longer than the maximum length set while building).
|
||||||
|
*/
|
||||||
nicklen = 30;
|
nicklen = 30;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue