Diff for /libaitio/configure.in between versions 1.20.2.2 and 1.20.2.3

version 1.20.2.2, 2012/05/19 00:19:55 version 1.20.2.3, 2012/05/23 11:59:51
Line 41  AC_ARG_ENABLE(debug, Line 41  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 53  AC_MSG_RESULT($DEBUG) Line 52  AC_MSG_RESULT($DEBUG)
 AIO=no  AIO=no
 AC_MSG_CHECKING(AIO Build)  AC_MSG_CHECKING(AIO Build)
 AC_ARG_ENABLE(aio,  AC_ARG_ENABLE(aio,
        [  --enable-aio            Build library with AIO operations],         [  --enable-aio            Build library with AIO operations ], 
         [ AIO=$enableval          [ AIO=$enableval
                 case "$enableval" in                  case "$enableval" in
                         yes)                          yes)
Line 63  AC_ARG_ENABLE(aio, Line 62  AC_ARG_ENABLE(aio,
                                 ;;                                  ;;
                 esac ],)                  esac ],)
 AC_MSG_RESULT($AIO)  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

Removed from v.1.20.2.2  
changed lines
  Added in v.1.20.2.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>