blob: 3285f95cd70b225915d6d41fc9108c703151e6c7 [file] [log] [blame]
AC_INIT([libtelnet], [0.12], [http://github.com/elanthis/libtelnet/tree/master])
AM_INIT_AUTOMAKE
AC_PROG_CC
AC_PROG_LIBTOOL
# zlib support
AC_CHECK_LIB(z,deflate,ZLIB=yes,ZLIB=no)
if test "x$ZLIB" = "xyes" ; then
LIBS="$LIBS -lz"
AC_DEFINE(HAVE_ZLIB, 1, [We have zlib])
fi
AC_CONFIG_FILES([Makefile libtelnet.pc])
AC_OUTPUT