瀏覽代碼

Use the --disable-data-rw-lock option by default from now on: this should
greatly reduce the amount of (useless) data transfers.

Cédric Augonnet 16 年之前
父節點
當前提交
5e56c035ab
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      configure.ac

+ 3 - 3
configure.ac

@@ -298,9 +298,9 @@ if test x$enable_priority = xno; then
 fi
 
 AC_MSG_CHECKING(whether data RW-lock should be used)
-AC_ARG_ENABLE(data-rw-lock, [AS_HELP_STRING([--disable-data-rw-lock],
-			[do not use data RW-locks])],
-			enable_data_rw_lock=$enableval, enable_data_rw_lock=yes)
+AC_ARG_ENABLE(data-rw-lock, [AS_HELP_STRING([--enable-data-rw-lock],
+			[use data RW-locks])],
+			enable_data_rw_lock=$enableval, enable_data_rw_lock=no)
 AC_MSG_RESULT($enable_data_rw_lock)
 if test x$enable_data_rw_lock = xno; then
 	AC_DEFINE(NO_DATA_RW_LOCK, [1], [data RW-lock are disabled])