blob: a90df35a4c8a0fc67dbfd14e4d75b56bd7dbff27 [file] [log] [blame]
Sean Middleditcheccc4a42009-10-24 14:53:12 -07001AC_INIT([libtelnet], [0.13], [http://github.com/elanthis/libtelnet/tree/master])
Sean Middleditch56f3c5c2009-07-31 02:02:09 -04002
3AM_INIT_AUTOMAKE
4
5AC_PROG_CC
6AC_PROG_LIBTOOL
7
Sean Middleditchbcfd3b82009-08-31 14:52:23 -07008# zlib support
9AC_CHECK_LIB(z,deflate,ZLIB=yes,ZLIB=no)
10if test "x$ZLIB" = "xyes" ; then
11 LIBS="$LIBS -lz"
12 AC_DEFINE(HAVE_ZLIB, 1, [We have zlib])
Sean Middleditchbcfd3b82009-08-31 14:52:23 -070013fi
14
Sean Middleditchd08d8122009-09-19 14:35:05 -070015AC_CONFIG_FILES([Makefile libtelnet.pc])
Sean Middleditch56f3c5c2009-07-31 02:02:09 -040016AC_OUTPUT