0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-18 18:08:21 +02:00

ircd: configure.ac: remove trailing whitespaces

This commit is contained in:
Valerii Iatsko 2016-02-06 23:17:48 +01:00 committed by William Pitcock
parent 6755009c17
commit b79edd3e79

View file

@ -214,15 +214,15 @@ AC_FUNC_ALLOCA
dnl Specialized functions checks dnl Specialized functions checks
dnl ============================ dnl ============================
dnl check for nanosleep dnl check for nanosleep
AC_CHECK_FUNC(nanosleep,,[AC_CHECK_LIB(rt,nanosleep, AC_CHECK_FUNC(nanosleep,,[AC_CHECK_LIB(rt,nanosleep,
LIBS="${LIBS} -lrt", LIBS="${LIBS} -lrt",
[AC_CHECK_LIB(posix4,nanosleep, LIBS="${LIBS} -lposix4" [AC_CHECK_LIB(posix4,nanosleep, LIBS="${LIBS} -lposix4"
)])]) )])])
if test x$ac_cv_func_nanosleep = xno && test x$ac_cv_lib_posix4_nanosleep = xno && test x$ac_cv_lib_rt_nanosleep = xno if test x$ac_cv_func_nanosleep = xno && test x$ac_cv_lib_posix4_nanosleep = xno && test x$ac_cv_lib_rt_nanosleep = xno
then then
AC_MSG_RESULT("nanosleep not found..using select for delay") AC_MSG_RESULT("nanosleep not found..using select for delay")
else else
AC_DEFINE([HAVE_NANOSLEEP], 1, [Define if nanosleep exists]) AC_DEFINE([HAVE_NANOSLEEP], 1, [Define if nanosleep exists])
fi fi
@ -310,7 +310,7 @@ if test "$cf_enable_openssl" != no; then
dnl Work around pmake/gmake conditional incompatibilities dnl Work around pmake/gmake conditional incompatibilities
AC_SUBST(ENCSPEED, encspeed) AC_SUBST(ENCSPEED, encspeed)
dnl Do all the HAVE_LIBCRYPTO magic -- and check for ciphers dnl Do all the HAVE_LIBCRYPTO magic -- and check for ciphers
CPPFLAGS="$CPPFLAGS $SSL_LIBS" CPPFLAGS="$CPPFLAGS $SSL_LIBS"
AC_CHECK_LIB(crypto, RSA_free) AC_CHECK_LIB(crypto, RSA_free)
@ -387,7 +387,7 @@ dnl Check for --with-logdir
dnl ********************************************************************** dnl **********************************************************************
AC_MSG_CHECKING([whether to modify logdir]) AC_MSG_CHECKING([whether to modify logdir])
AC_ARG_WITH(logdir, AC_ARG_WITH(logdir,
AC_HELP_STRING([--with-logdir=DIR], AC_HELP_STRING([--with-logdir=DIR],
[Directory where to write logfiles.]), [Directory where to write logfiles.]),
[ logdir=`echo $withval | sed 's/\/$//'` [ logdir=`echo $withval | sed 's/\/$//'`
@ -404,7 +404,7 @@ dnl Check for --with-helpdir
dnl ********************************************************************** dnl **********************************************************************
AC_MSG_CHECKING([whether to modify helpdir]) AC_MSG_CHECKING([whether to modify helpdir])
AC_ARG_WITH(helpdir, AC_ARG_WITH(helpdir,
AC_HELP_STRING([--with-helpdir=DIR], AC_HELP_STRING([--with-helpdir=DIR],
[Directory to install help files.]), [Directory to install help files.]),
[ helpdir=`echo $withval | sed 's/\/$//'` [ helpdir=`echo $withval | sed 's/\/$//'`
@ -421,7 +421,7 @@ dnl Check for --with-moduledir
dnl ********************************************************************** dnl **********************************************************************
AC_MSG_CHECKING([whether to modify moduledir]) AC_MSG_CHECKING([whether to modify moduledir])
AC_ARG_WITH(moduledir, AC_ARG_WITH(moduledir,
[AC_HELP_STRING([--with-moduledir=DIR], [AC_HELP_STRING([--with-moduledir=DIR],
[Directory to install modules.])], [Directory to install modules.])],
[ moduledir=`echo $withval | sed 's/\/$//'` [ moduledir=`echo $withval | sed 's/\/$//'`
@ -558,9 +558,9 @@ AC_DEFINE([AWAY_HEAP_SIZE], 512, [Size of away heap.])
AC_ARG_WITH(nicklen, AC_ARG_WITH(nicklen,
AC_HELP_STRING([--with-nicklen=LENGTH],[Set the upper-bound nick length to LENGTH (default 31, 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])
fi fi
if test $withval -gt 50; then if test $withval -gt 50; then
NICKLEN=50 NICKLEN=50
AC_MSG_WARN([NICKLEN has a hard limit of 50. Setting NICKLEN=50]) AC_MSG_WARN([NICKLEN has a hard limit of 50. Setting NICKLEN=50])
@ -572,7 +572,7 @@ AC_HELP_STRING([--with-nicklen=LENGTH],[Set the upper-bound nick length to LENGT
fi fi
], [NICKLEN=31]) ], [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)]),
[ [
if test $withval -gt 390; then if test $withval -gt 390; then
@ -646,7 +646,7 @@ AC_SUBST(IRC_CFLAGS)
AC_SUBST(SEDOBJ) AC_SUBST(SEDOBJ)
if test "$prefix" = "NONE"; then if test "$prefix" = "NONE"; then
AC_DEFINE_UNQUOTED(IRCD_PREFIX, "$ac_default_prefix", [Prefix where the ircd is installed.]) AC_DEFINE_UNQUOTED(IRCD_PREFIX, "$ac_default_prefix", [Prefix where the ircd is installed.])
else else
@ -656,7 +656,7 @@ dnl a custom prefix with a trailing slash
prefix=`echo $prefix | sed 's/\/$//'` prefix=`echo $prefix | sed 's/\/$//'`
AC_DEFINE_UNQUOTED(IRCD_PREFIX, "$prefix", [Prefix where the ircd is installed.]) AC_DEFINE_UNQUOTED(IRCD_PREFIX, "$prefix", [Prefix where the ircd is installed.])
fi fi
AC_CONFIG_FILES( \ AC_CONFIG_FILES( \