version 1.1.1.1.2.1, 2010/02/23 22:57:50
|
version 1.28, 2012/09/19 15:19:53
|
Line 2
|
Line 2
|
# $Author$ |
# $Author$ |
# $Id$ |
# $Id$ |
# |
# |
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_SRCDIR([src/aitio.c]) |
AC_CONFIG_HEADERS([inc/config.h]) |
AC_CONFIG_HEADERS([inc/config.h]) |
|
|
Line 19 AC_SUBST(MKDEP)
|
Line 19 AC_SUBST(MKDEP)
|
CFLAGS="-Wall -O2 -fPIC -I/usr/local/include ${CFLAGS}" |
CFLAGS="-Wall -O2 -fPIC -I/usr/local/include ${CFLAGS}" |
LDFLAGS="-L/usr/local/lib ${LDFLAGS}" |
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. |
# Checks for header files. |
AC_CHECK_HEADERS([stdlib.h string.h sys/ioctl.h termios.h unistd.h]) |
AC_CHECK_HEADERS([stdlib.h string.h sys/ioctl.h termios.h unistd.h]) |
|
|
Line 37 AC_ARG_ENABLE(debug,
|
Line 43 AC_ARG_ENABLE(debug,
|
[ DEBUG=$enableval |
[ DEBUG=$enableval |
case "$enableval" in |
case "$enableval" in |
yes) |
yes) |
AC_DEFINE(__DEBUG,, [Build libraries with debug information and additional messages]) |
|
CFLAGS="-g ${CFLAGS}" |
CFLAGS="-g ${CFLAGS}" |
;; |
;; |
*) |
*) |
Line 45 AC_ARG_ENABLE(debug,
|
Line 50 AC_ARG_ENABLE(debug,
|
;; |
;; |
esac ],) |
esac ],) |
AC_MSG_RESULT($DEBUG) |
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 |
AC_CONFIG_FILES([Makefile |
inc/Makefile |
inc/Makefile |