[nemiver/varobjs-support] Add a --enable-varobjs configure switch
- From: Dodji Seketeli <dodji src gnome org>
- To: svn-commits-list gnome org
- Subject: [nemiver/varobjs-support] Add a --enable-varobjs configure switch
- Date: Sun, 5 Apr 2009 12:26:46 -0400 (EDT)
commit a41f09b304809cbd6ef5bb8aafe17941a662a767
Author: Dodji Seketeli <dodji redhat com>
Date: Sun Apr 5 15:01:58 2009 +0200
Add a --enable-varobjs configure switch
* configure.ac: Create --enable-varobjs configure switch. When
switched on, the WITH_VAROBJS C macros is defined and usable in the
source code to detect if the package has been configured with
--enable-varobjs switch.
---
configure.ac | 13 +++++++++++--
1 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 1d19335..e632735 100644
--- a/configure.ac
+++ b/configure.ac
@@ -137,7 +137,7 @@ AM_CONDITIONAL(AUTOTESTS, test x$ENABLE_AUTOTESTS = xyes)
AC_ARG_ENABLE(workbench,
AC_HELP_STRING([--enable-workbench=yes|no],
- [enable the graphical gd++ workbench (default is yes)]),
+ [enable the graphical dbg workbench (default is yes)]),
ENABLE_WORKBENCH=$enableval,
ENABLE_WORKBENCH=yes)
if test x$ENABLE_WORKBENCH = xyes ; then
@@ -212,7 +212,15 @@ AC_ARG_ENABLE(symsvis,
ENABLE_GCC_SYMBOLS_VISIBILITY=$enableval,
ENABLE_GCC_SYMBOLS_VISIBILITY=no)
-
+ENABLE_VAROBJS=yes
+AC_ARG_ENABLE(varobjs,
+ AC_HELP_STRING([--enable-varobjs=yes|no],
+ [enable variable objects support. default is yes]),
+ ENABLE_VAROBJS=$enableval,
+ ENABLE_VAROBJS=yes)
+if test x$ENABLE_VAROBJS = xyes; then
+ AC_DEFINE([WITH_VAROBJS], 1, [build with varable objects support])
+fi
dnl *******************************
dnl checking for libraries we use
dnl *******************************
@@ -462,6 +470,7 @@ cat <<EOT
Enable memory view : ${ENABLE_MEMORYVIEW} (requires gtkhex > $GTKHEX_VERSION)
gtksourceviewmm version : ${LIBGTKSOURCEVIEWMM_PKG}
VFS library : ${VFS_PKG}
+ varobjs : ${ENABLE_VAROBJS}
Enable symbols visibility ctrl : ${ENABLE_GCC_SYMBOLS_VISIBILITY}
Maintainer mode : ${USER_MAINTAINER_MODE}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]