From 9960cc94c50b1d76e8e59ba34db7c3c9f9c32cdd Mon Sep 17 00:00:00 2001 From: JD Horelick Date: Sun, 28 Mar 2010 19:54:53 -0400 Subject: [PATCH] Enable the --enable-small-net option by default. --- configure | 4 ++-- configure.ac | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index fef36e0..ae96868 100755 --- a/configure +++ b/configure @@ -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 diff --git a/configure.ac b/configure.ac index fad4c70..b087573 100644 --- a/configure.ac +++ b/configure.ac @@ -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.])