view mcabber/libjabber/configure.in @ 1417:783b47c9d963

Allow more than the 16 default colors (patch from mjs) If the terminal supports more than 16 colors (e.g. xterm-256color), the color numbers can be set in place of the color names.
author Mikael Berthe <mikael@lilotux.net>
date Sun, 20 Jan 2008 22:46:16 +0100
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)