view mcabber/libjabber/configure.in @ 116:1e7e59775f12

[/trunk] Changeset 130 by mikael * Add /status command. * Fix /quit command when there is a trailing word ("/quit bye"...). * Add an extension (.txt) to the TODO file.
author mikael
date Mon, 25 Apr 2005 15:26:17 +0000
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)