--- libaitio/configure.in 2010/02/23 22:54:48 1.1 +++ libaitio/configure.in 2012/08/28 08:53:32 1.26.2.2 @@ -1,8 +1,8 @@ # # $Author: misho $ -# $Id: configure.in,v 1.1 2010/02/23 22:54:48 misho Exp $ +# $Id: configure.in,v 1.26.2.2 2012/08/28 08:53:32 misho Exp $ # -AC_INIT(libaitio, 1.0, misho@openbsd-bg.org) +AC_INIT(libaitio, 3.6, 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}" ;; *) @@ -46,8 +51,35 @@ 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 - example/Makefile inc/Makefile lib/Makefile src/Makefile])