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-iodebug Enable IO Debugging hooks
|
||||||
--enable-profile Enable profiling
|
--enable-profile Enable profiling
|
||||||
--disable-balloc Disable the block allocator.
|
--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.
|
--enable-warnings Enable all sorts of warnings for debugging.
|
||||||
|
|
||||||
Optional Packages:
|
Optional Packages:
|
||||||
|
@ -7732,7 +7732,7 @@ fi
|
||||||
if test "${enable_small_net+set}" = set; then :
|
if test "${enable_small_net+set}" = set; then :
|
||||||
enableval=$enable_small_net; small_net=$enableval
|
enableval=$enable_small_net; small_net=$enableval
|
||||||
else
|
else
|
||||||
small_net=no
|
small_net=yes
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -819,8 +819,8 @@ if test "$balloc" = no; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_ARG_ENABLE(small-net,
|
AC_ARG_ENABLE(small-net,
|
||||||
AC_HELP_STRING([--enable-small-net],[Enable small network support.]),
|
AC_HELP_STRING([--disable-small-net],[Disable small network support.]),
|
||||||
[small_net=$enableval], [small_net=no])
|
[small_net=$enableval], [small_net=yes])
|
||||||
|
|
||||||
if test "$small_net" = yes; then
|
if test "$small_net" = yes; then
|
||||||
dnl AC_DEFINE([HASHSIZE], 4096, [Max number of buckets in hash tables.])
|
dnl AC_DEFINE([HASHSIZE], 4096, [Max number of buckets in hash tables.])
|
||||||
|
|
Loading…
Reference in New Issue