view mcabber/libjabber/configure.in @ 1510:f6d4e20b9caa

MUC nickname colors depend on nicknames now MUC nick colors were chosen randomly before. Now they are generated using the simplest algorithm: the sum of all nickname letters % total colors count.
author Maxim Vuets <maxim.vuets@gmail.com>
date Sun, 31 Aug 2008 17:40:00 +0200
parents bf3d6e241714
children
line wrap: on
line source

AC_INIT(aclocal.m4)
AM_INIT_AUTOMAKE(libjabber, 0.1)

AC_PROG_RANLIB
AC_PROG_CC

AC_ARG_ENABLE(jabber, [  --disable-jabber   Build without Jabber], build_jabber="$enableval", build_jabber="yes")
AM_CONDITIONAL(BUILD_JABBER, test "x$build_jabber" = xyes)

if test "$build_jabber" = "yes"; then
    AC_PROG_CXX
fi

AC_OUTPUT(Makefile)