Enable the --enable-small-net option by default.
This commit is contained in:
parent
e2b0cde27f
commit
9960cc94c5
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -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.])
|
||||
|
|
Loading…
Reference in New Issue