view mcabber/libjabber/configure.in @ 833:63707a595c2e

Fix a display bug when resizing the buffer window The g_list_position() trick was stupid, it cannot work because all the non-persistent lines are removed anyway. Let's always use the "previous persistent" line.
author Mikael Berthe <mikael@lilotux.net>
date Thu, 04 May 2006 16:02:22 +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)