Enable the --enable-small-net option by default.

This commit is contained in:
JD Horelick 2010-03-28 19:54:53 -04:00
parent e2b0cde27f
commit 9960cc94c5
2 changed files with 4 additions and 4 deletions

4
configure vendored
View File

@ -1348,7 +1348,7 @@ Optional Features:
--enable-iodebug Enable IO Debugging hooks
--enable-profile Enable profiling
--disable-balloc Disable the block allocator.
--enable-small-net Enable small network support.
--disable-small-net Disable small network support.
--enable-warnings Enable all sorts of warnings for debugging.
Optional Packages:
@ -7732,7 +7732,7 @@ fi
if test "${enable_small_net+set}" = set; then :
enableval=$enable_small_net; small_net=$enableval
else
small_net=no
small_net=yes
fi

View File

@ -819,8 +819,8 @@ if test "$balloc" = no; then
fi
AC_ARG_ENABLE(small-net,
AC_HELP_STRING([--enable-small-net],[Enable small network support.]),
[small_net=$enableval], [small_net=no])
AC_HELP_STRING([--disable-small-net],[Disable small network support.]),
[small_net=$enableval], [small_net=yes])
if test "$small_net" = yes; then
dnl AC_DEFINE([HASHSIZE], 4096, [Max number of buckets in hash tables.])