Send Linux-ha-cvs mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]
You can reach the person managing the list at
[EMAIL PROTECTED]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Linux-ha-cvs digest..."
Today's Topics:
1. Linux-HA CVS: crm by andrew from
([email protected])
2. Linux-HA CVS: linux-ha by andrew from
([email protected])
----------------------------------------------------------------------
Message: 1
Date: Thu, 27 Jul 2006 06:23:58 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: crm by andrew from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : andrew
Host :
Project : linux-ha
Module : crm
Dir : linux-ha/crm/crmd
Modified Files:
tengine.c
Log Message:
Dont stall the FSA if we try to invoke the TE after we've stopped it.
------------------------------
Message: 2
Date: Thu, 27 Jul 2006 06:25:47 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: linux-ha by andrew from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : andrew
Host :
Module : linux-ha
Dir : linux-ha
Modified Files:
configure.in
Log Message:
Allow SNMP to be completely disabled by configure
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/configure.in,v
retrieving revision 1.539
retrieving revision 1.540
diff -u -3 -r1.539 -r1.540
--- configure.in 20 Jul 2006 14:40:12 -0000 1.539
+++ configure.in 27 Jul 2006 12:25:46 -0000 1.540
@@ -10,7 +10,7 @@
AC_INIT(heartbeat.spec.in)
AC_CONFIG_AUX_DIR(.)
-AC_REVISION($Revision: 1.539 $) dnl cvs revision
+AC_REVISION($Revision: 1.540 $) dnl cvs revision
AC_CANONICAL_HOST
@@ -1000,13 +1000,18 @@
SNMPLIB=""
SNMPAGENTLIB=""
SNMPCONFIG=""
+
ENABLE_SNMP="yes"
+if test "x${enable_snmp}" = "xno"; then
+ ENABLE_SNMP="no"
+ enable_snmp_subagent="no"
+fi
AC_CHECK_HEADERS(ucd-snmp/snmp.h,[],[],[#include <sys/types.h>
#include <ucd-snmp/asn1.h>])
AC_CHECK_HEADERS(net-snmp/net-snmp-config.h)
-if test "x${enable_snmp_subagent}" = "xno"; then
+if test "x${ENABLE_SNMP}" = "xno"; then
# nothing
:
elif test "x${ac_cv_header_net_snmp_net_snmp_config_h}" = "xyes"; then
@@ -1514,6 +1519,10 @@
[ --enable-thread-safe Enable some client libraries to be thread safe.
[default=no]])
+AC_ARG_ENABLE([snmp],
+[ --enable-snmp Enable building of SNMP related functionality.
+ [default=yes]])
+
CC_WARNINGS=""
------------------------------
_______________________________________________
Linux-ha-cvs mailing list
[email protected]
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs
End of Linux-ha-cvs Digest, Vol 32, Issue 68
********************************************