Diff for /libelwix/configure between versions 1.26.2.1 and 1.26.2.2

version 1.26.2.1, 2015/01/19 23:22:10 version 1.26.2.2, 2015/06/24 23:28:29
Line 693  ac_subst_files='' Line 693  ac_subst_files=''
 ac_user_opts='  ac_user_opts='
 enable_option_checking  enable_option_checking
 enable_debug  enable_debug
   with_memmgr
 '  '
       ac_precious_vars='build_alias        ac_precious_vars='build_alias
 host_alias  host_alias
Line 1319  Optional Features: Line 1320  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
   
   Optional Packages:
     --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
     --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
     --with-memmgr=<mm>      Memory manager for ELWIX (elwix|system)
   
 Some influential environment variables:  Some influential environment variables:
   CC          C compiler command    CC          C compiler command
   CFLAGS      C compiler flags    CFLAGS      C compiler flags
Line 4003  fi Line 4009  fi
   
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DEBUG" >&5  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DEBUG" >&5
 $as_echo "$DEBUG" >&6; }  $as_echo "$DEBUG" >&6; }
   
   MEMMGR="elwix"
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking Memory management" >&5
   $as_echo_n "checking Memory management... " >&6; }
   
   # Check whether --with-memmgr was given.
   if test "${with_memmgr+set}" = set; then :
     withval=$with_memmgr;  case "$withval" in
                   sys|system)
                           MEMMGR="system"
   
   $as_echo "#define MEMMGR ELWIX_SYSM" >>confdefs.h
   
                           ;;
                   *)
                           MEMMGR="elwix"
   
   $as_echo "#define MEMMGR ELWIX_MPOOL" >>confdefs.h
   
                           ;;
             esac
   else
   
   $as_echo "#define MEMMGR ELWIX_MPOOL" >>confdefs.h
   
   fi
   
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MEMMGR" >&5
   $as_echo "$MEMMGR" >&6; }
   
 ac_config_files="$ac_config_files Makefile inc/Makefile lib/Makefile src/Makefile"  ac_config_files="$ac_config_files Makefile inc/Makefile lib/Makefile src/Makefile"
   

Removed from v.1.26.2.1  
changed lines
  Added in v.1.26.2.2


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