Diff for /libaitsched/configure between versions 1.34.2.1 and 1.34.2.6

version 1.34.2.1, 2014/04/27 16:22:58 version 1.34.2.6, 2014/05/19 23:27:48
Line 694  ac_user_opts=' Line 694  ac_user_opts='
 enable_option_checking  enable_option_checking
 enable_debug  enable_debug
 enable_aio  enable_aio
   enable_epoll
 enable_kqueue  enable_kqueue
 with_kq_events  with_kq_events
 '  '
Line 1322  Optional Features: Line 1323  Optional Features:
   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]    --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
   --enable-debug          Build library with debug information and additional messages    --enable-debug          Build library with debug information and additional messages
   --enable-aio            Build scheduler library with AIO operations    --enable-aio            Build scheduler library with AIO operations
     --enable-epoll          Enable epoll support (only under Linux)
   --disable-kqueue        Disable kqueue support    --disable-kqueue        Disable kqueue support
   
 Optional Packages:  Optional Packages:
Line 3377  $as_echo "no" >&6; } Line 3379  $as_echo "no" >&6; }
 fi  fi
   
   if test "x$ac_ct_MKDEP" = x; then    if test "x$ac_ct_MKDEP" = x; then
    MKDEP="no"    MKDEP="../mkdep"
   else    else
     case $cross_compiling:$ac_tool_warned in      case $cross_compiling:$ac_tool_warned in
 yes:)  yes:)
Line 4025  $as_echo "#define malloc rpl_malloc" >>confdefs.h Line 4027  $as_echo "#define malloc rpl_malloc" >>confdefs.h
 fi  fi
   
   
for ac_func in clock_gettime memset strerror timer_create timer_settime timer_deletefor ac_func in clock_gettime memset strerror timer_create timer_settime timer_delete strlcat strlcpy
 do :  do :
   as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`    as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
 ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"  ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
Line 4086  fi Line 4088  fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AIO" >&5  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AIO" >&5
 $as_echo "$AIO" >&6; }  $as_echo "$AIO" >&6; }
   
KQSUP=yes
 $as_echo "#define NO_SUPPORT 0" >>confdefs.h
 
 
 $as_echo "#define KQ_SUPPORT 1" >>confdefs.h
 
 
 $as_echo "#define EP_SUPPORT 2" >>confdefs.h
 
 
 
 $as_echo "#define SUP_ENABLE KQ_SUPPORT" >>confdefs.h
 
 
 EPSUP=no
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking epoll support" >&5
 $as_echo_n "checking epoll support... " >&6; }
 # Check whether --enable-epoll was given.
 if test "${enable_epoll+set}" = set; then :
   enableval=$enable_epoll;  EPSUP=$enableval
                 case "$enableval" in
                         yes)
 
 $as_echo "#define SUP_ENABLE EP_SUPPORT" >>confdefs.h
 
                                 KQSUP=no
                                 ;;
                         *)
                                 KQSUP=yes
                                 ;;
                 esac
 else
    KQSUP=yes
 fi
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $EPSUP" >&5
 $as_echo "$EPSUP" >&6; }
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking kqueue support" >&5  { $as_echo "$as_me:${as_lineno-$LINENO}: checking kqueue support" >&5
 $as_echo_n "checking kqueue support... " >&6; }  $as_echo_n "checking kqueue support... " >&6; }
 # Check whether --enable-kqueue was given.  # Check whether --enable-kqueue was given.
Line 4095  if test "${enable_kqueue+set}" = set; then : Line 4134  if test "${enable_kqueue+set}" = set; then :
                 case "$enableval" in                  case "$enableval" in
                         no)                          no)
   
$as_echo "#define KQ_DISABLE /**/" >>confdefs.h$as_echo "#define SUP_ENABLE NO_SUPPORT" >>confdefs.h
   
                                 ;;                                  ;;
                         *)                          *)

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


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