--- libaitio/configure.in 2010/04/16 13:25:27 1.4 +++ libaitio/configure.in 2010/09/10 12:39:41 1.5 @@ -1,8 +1,8 @@ # # $Author: misho $ -# $Id: configure.in,v 1.4 2010/04/16 13:25:27 misho Exp $ +# $Id: configure.in,v 1.5 2010/09/10 12:39:41 misho Exp $ # -AC_INIT(libaitio, 1.2, misho@openbsd-bg.org) +AC_INIT(libaitio, 1.3, misho@openbsd-bg.org) AC_CONFIG_SRCDIR([src/aitio.c]) AC_CONFIG_HEADERS([inc/config.h]) @@ -19,8 +19,6 @@ AC_SUBST(MKDEP) CFLAGS="-Wall -O2 -fPIC -I/usr/local/include ${CFLAGS}" LDFLAGS="-L/usr/local/lib ${LDFLAGS}" -AC_CHECK_LIB(readline, [readline]) - # Checks for header files. AC_CHECK_HEADERS([stdlib.h string.h sys/ioctl.h termios.h unistd.h]) @@ -31,7 +29,6 @@ AC_C_INLINE AC_FUNC_MALLOC AC_FUNC_REALLOC AC_CHECK_FUNCS([memset regcomp strchr strerror]) -AC_CHECK_FUNCS([readline]) DEBUG=no AC_MSG_CHECKING(Debug Build) @@ -48,6 +45,20 @@ AC_ARG_ENABLE(debug, ;; esac ],) AC_MSG_RESULT($DEBUG) + +AIO=yes +AC_MSG_CHECKING(AIO Build) +AC_ARG_ENABLE(aio, + [ --enable-aio Build library with AIO operations], + [ AIO=$enableval + case "$enableval" in + yes) + AC_DEFINE(AIO_OPS,, [Build library with AIO operations]) + ;; + *) + ;; + esac ], AC_DEFINE(AIO_OPS,, [Build library with AIO operations])) +AC_MSG_RESULT($AIO) AC_CONFIG_FILES([Makefile inc/Makefile