]> jfr.im git - irc/rqf/shadowircd.git/commitdiff
Enable the --enable-small-net option by default.
authorJD Horelick <redacted>
Sun, 28 Mar 2010 23:54:53 +0000 (19:54 -0400)
committerJD Horelick <redacted>
Sun, 28 Mar 2010 23:54:53 +0000 (19:54 -0400)
configure
configure.ac

index fef36e0d75d0883f4779e3bfdb34105795c5bd99..ae968682b85c3d6cc4cf271bf999102cccc3b732 100755 (executable)
--- 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
 
 
index fad4c705d63822342cf5cc279918dce511c323aa..b08757303c94263c02d5a9c6b4822e7ae12b547f 100644 (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.])