[icinga-checkins] icinga.org: icinga-core/master: install: set --enable-idoutils/ event-broker to true as default configure flags
git at icinga.org
git at icinga.org
Thu Mar 21 17:12:36 CET 2013
Module: icinga-core
Branch: master
Commit: 6d06788aba95066bf02d517a69a6155094d01c5d
URL: https://git.icinga.org/?p=icinga-core.git;a=commit;h=6d06788aba95066bf02d517a69a6155094d01c5d
Author: Michael Friedrich <michael.friedrich at netways.de>
Date: Fri Mar 8 18:31:17 2013 +0100
install: set --enable-idoutils/event-broker to true as default configure flags
fixes #3813
---
Changelog | 4 ++++
configure | 5 +++--
configure.in | 4 ++--
3 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/Changelog b/Changelog
index 59cd573..c038128 100644
--- a/Changelog
+++ b/Changelog
@@ -30,6 +30,8 @@ ENHANCEMENTS
* idoutils: use transactions for large object dumps, opt-in config option #3527 - GB
* idoutils: add experimental socket queue proxy; opt-in via config option #3533 - GB
+* install: set --enable-idoutils/event-broker to true as default configure flags #3813 - MF
+
FIXES
* core: fix faulty macro cleaning, replacing spaces with pluses where they shouldn't be cleaned #3397 - MF
* core: fix macro escaping logs incorrect warning for $$escapes #3404 - MF
@@ -83,6 +85,8 @@ CHANGES
* icinga.spec: add idoutils as transitional package #3640
+* install: set --enable-idoutils/event-broker to true as default configure flags #3813
+
1.8.4 - 13/01/2013
diff --git a/configure b/configure
index 18fd5bb..518ee98 100755
--- a/configure
+++ b/configure
@@ -1453,6 +1453,7 @@ Optional Features:
timing
--enable-event-broker enables integration of event broker routines
--enable-idoutils enables database connectivity using idoutils
+ (default: enabled)
--enable-oracle enables idoutils with ocilib and oracle
--enable-pgsql !use libdbis pgsql support instead, libpq not yet
implemented! enables idoutils with libpq and pgsql
@@ -6421,13 +6422,13 @@ fi
OCILIB_LIB=""
-USE_IDOUTILS=no
+USE_IDOUTILS=yes
USE_IDOUTILS_ORACLE=no
# Check whether --enable-idoutils was given.
if test "${enable_idoutils+set}" = set; then :
enableval=$enable_idoutils; USE_IDOUTILS=$enableval
else
- USE_IDOUTILS=no
+ USE_IDOUTILS=yes
fi
if test x$USE_IDOUTILS = xyes; then
diff --git a/configure.in b/configure.in
index 71c4f61..d63c3f2 100644
--- a/configure.in
+++ b/configure.in
@@ -859,9 +859,9 @@ dnl Configure IDOUtils
dnl set dummy for ocilib
OCILIB_LIB=""
-USE_IDOUTILS=no
+USE_IDOUTILS=yes
USE_IDOUTILS_ORACLE=no
-AC_ARG_ENABLE(idoutils,AC_HELP_STRING([--enable-idoutils],[enables database connectivity using idoutils]),USE_IDOUTILS=$enableval,USE_IDOUTILS=no)
+AC_ARG_ENABLE(idoutils,AC_HELP_STRING([--enable-idoutils],[enables database connectivity using idoutils (default: enabled)]),USE_IDOUTILS=$enableval,USE_IDOUTILS=yes)
if test x$USE_IDOUTILS = xyes; then
if test x$USE_EVENTBROKER = xno; then
AC_MSG_ERROR([--enable-idoutils needs also --enable-event-broker])
More information about the icinga-checkins
mailing list