[pygobject/invoke-rewrite] [gi-invoke-ng] enable invoke-ng by default
- From: John Palmieri <johnp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pygobject/invoke-rewrite] [gi-invoke-ng] enable invoke-ng by default
- Date: Tue, 31 May 2011 21:00:21 +0000 (UTC)
commit 4c9bcedb4e11ad66a4b86174e2425c7afcafc473
Author: John (J5) Palmieri <johnp redhat com>
Date: Tue May 31 16:59:41 2011 -0400
[gi-invoke-ng] enable invoke-ng by default
configure.ac | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index ad35f96..d4fcbe3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -126,13 +126,13 @@ AC_ARG_ENABLE(thread,
dnl Build with the new caching invoker
AC_ARG_ENABLE(invoke-ng,
- AC_HELP_STRING([--enable-invoke-ng], [Enable the new caching invoke path]),,
- enable_invoke_ng=no)
-if test "${enable_invoke_ng}" != no; then
+ AC_HELP_STRING([--disable-invoke-ng], [Disable the new caching invoke path]),,
+ enable_invoke_ng=yes)
+if test "${enable_invoke_ng}" == yes; then
AC_DEFINE(ENABLE_INVOKE_NG, 1, Enable the new invoke caching code path)
fi
-AM_CONDITIONAL(ENABLE_INVOKE_NG, test x$enable_invoke_ng != xno)
+AM_CONDITIONAL(ENABLE_INVOKE_NG, test x$enable_invoke_ng == xyes)
dnl Building documentation
AC_ARG_ENABLE(docs,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]