Diff for /libaitsched/configure.in between versions 1.34.2.1 and 1.34.2.2

version 1.34.2.1, 2014/04/27 16:22:58 version 1.34.2.2, 2014/05/19 22:13:54
Line 91  AC_ARG_WITH(kq_events,  Line 91  AC_ARG_WITH(kq_events, 
 AC_DEFINE_UNQUOTED(KQ_EVENTS, $KQ_EVENTS, [ How many kqueue events can scheduling at one time ])  AC_DEFINE_UNQUOTED(KQ_EVENTS, $KQ_EVENTS, [ How many kqueue events can scheduling at one time ])
 AC_MSG_RESULT($KQ_EVENTS)  AC_MSG_RESULT($KQ_EVENTS)
   
   EPSUP=no
   AC_MSG_CHECKING(epoll support)
   AC_ARG_ENABLE(epoll,
           [  --enable-epoll          Enable epoll support (only under Linux) ],
           [ EPSUP=$enableval
                   case "$enableval" in
                           no)
                                   AC_DEFINE(EP_ENABLE,, [Enable epoll support])
                                   ;;
                           *)
                                   ;;
                   esac ],)
   AC_MSG_RESULT($EPSUP)
   
 AC_CONFIG_FILES([Makefile  AC_CONFIG_FILES([Makefile
                  inc/Makefile                   inc/Makefile
                  lib/Makefile                   lib/Makefile

Removed from v.1.34.2.1  
changed lines
  Added in v.1.34.2.2


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