--- libaitio/configure.in 2010/03/09 09:26:27 1.2 +++ libaitio/configure.in 2012/09/19 15:19:53 1.28 @@ -1,8 +1,8 @@ # # $Author: misho $ -# $Id: configure.in,v 1.2 2010/03/09 09:26:27 misho Exp $ +# $Id: configure.in,v 1.28 2012/09/19 15:19:53 misho Exp $ # -AC_INIT(libaitio, 1.0, misho@openbsd-bg.org) +AC_INIT(libaitio, 3.7, misho@elwix.org) AC_CONFIG_SRCDIR([src/aitio.c]) AC_CONFIG_HEADERS([inc/config.h]) @@ -19,6 +19,12 @@ AC_SUBST(MKDEP) CFLAGS="-Wall -O2 -fPIC -I/usr/local/include ${CFLAGS}" LDFLAGS="-L/usr/local/lib ${LDFLAGS}" +AC_CHECK_LIB([crypto], [EVP_CipherInit_ex]) +AC_CHECK_LIB([pthread], [pthread_mutex_init]) +AC_CHECK_LIB([util], [forkpty]) +AC_CHECK_LIB([rt], [aio_read]) +AC_CHECK_LIB([aitcrc], [crcFletcher16]) + # Checks for header files. AC_CHECK_HEADERS([stdlib.h string.h sys/ioctl.h termios.h unistd.h]) @@ -37,7 +43,6 @@ AC_ARG_ENABLE(debug, [ DEBUG=$enableval case "$enableval" in yes) - AC_DEFINE(__DEBUG,, [Build libraries with debug information and additional messages]) CFLAGS="-g ${CFLAGS}" ;; *) @@ -45,6 +50,34 @@ AC_ARG_ENABLE(debug, ;; esac ],) AC_MSG_RESULT($DEBUG) + +AIO=no +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_MSG_RESULT($AIO) + +#MPOOL=no +#AC_MSG_CHECKING(Use ELWIX MPOOL) +#AC_ARG_ENABLE(mpool, +# [ --enable-mpool Build library with MPOOL operations ], +# [ MPOOL=$enableval +# case "$enableval" in +# yes) +# AC_DEFINE(USE_MPOOL,, [Build library with MPOOL operations]) +# ;; +# *) +# ;; +# esac ],) +#AC_MSG_RESULT($MPOOL) AC_CONFIG_FILES([Makefile inc/Makefile