view mcabber/libjabber/configure.in @ 1394:bba74a50dedf

Improve Cygwin support On Cygwin, isprint() isn't enough so we consider that key codes between 161 and 255 are printable.
author Mikael Berthe <mikael@lilotux.net>
date Sun, 09 Dec 2007 19:26:37 +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)