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: linux-ha by sunjd from
([email protected])
2. Linux-HA CVS: mgmt by sunjd from
([email protected])
----------------------------------------------------------------------
Message: 1
Date: Wed, 7 Dec 2005 02:47:32 -0700 (MST)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: linux-ha by sunjd from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : sunjd
Host :
Module : linux-ha
Dir : linux-ha
Modified Files:
configure.in
Log Message:
add configurations for management modules
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/configure.in,v
retrieving revision 1.472
retrieving revision 1.473
diff -u -3 -r1.472 -r1.473
--- configure.in 25 Nov 2005 15:19:34 -0000 1.472
+++ configure.in 7 Dec 2005 09:47:32 -0000 1.473
@@ -10,7 +10,7 @@
AC_INIT(heartbeat.spec.in)
AC_CONFIG_AUX_DIR(.)
-AC_REVISION($Revision: 1.472 $) dnl cvs revision
+AC_REVISION($Revision: 1.473 $) dnl cvs revision
AC_CANONICAL_HOST
@@ -302,6 +302,7 @@
AC_PROG_YACC
AC_DECL_YYTEXT
AM_PROG_LEX
+AM_PATH_PYTHON
AC_PROG_LIBTOOL
dnl Replacing AC_PROG_LIBTOOL with AC_CHECK_PROG because LIBTOOL
dnl was NOT being expanded all the time thus causing things to fail.
@@ -368,8 +369,8 @@
AC_SUBST(STRINGSCMD)
AC_PATH_PROGS(PERL, perl)
AC_SUBST(PERL)
-dnl AC_PATH_PROGS(SWIG, swig)
-dnl AC_SUBST(SWIG)
+AC_PATH_PROGS(SWIG, swig)
+AC_SUBST(SWIG)
AC_PATH_PROGS(EGREP, egrep)
AC_SUBST(EGREP)
@@ -2260,7 +2261,14 @@
MGMT_ENABLED=0
if test "x${enable_mgmt}" = "xyes"; then
MGMT_ENABLED=1
+ python_headers_found="yes"
+ PYTHON_HEADER_DIR="python${PYTHON_VERSION}"
+ AC_CHECK_HEADER($PYTHON_HEADER_DIR/Python.h, ,
[python_headers_found="no"],)
fi
+if test x${python_headers_found} != "xyes"; then
+ PYTHON_HEADER_DIR=
+fi
+AC_SUBST(PYTHON_HEADER_DIR)
AC_SUBST(MGMT_ENABLED)
AM_CONDITIONAL(MGMT_BUILD, test "x${enable_mgmt}" = "xyes")
------------------------------
Message: 2
Date: Wed, 7 Dec 2005 03:14:13 -0700 (MST)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: mgmt by sunjd from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : sunjd
Host :
Project : linux-ha
Module : mgmt
Dir : linux-ha/mgmt/daemon
Modified Files:
Makefile.am
Log Message:
makefile polish
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/mgmt/daemon/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Makefile.am 7 Dec 2005 09:31:27 -0000 1.4
+++ Makefile.am 7 Dec 2005 10:14:13 -0000 1.5
@@ -34,11 +34,12 @@
pam_DATA = mgmtd.pam
install-data-hook:
- mv /etc/pam.d/mgmtd.pam /etc/pam.d/mgmtd
+ mv $(pamdir)/mgmtd.pam $(pamdir)/mgmtd
halib_PROGRAMS = mgmtd
mgmtd_SOURCES = mgmtd.c
+mgmtd_LDFLAGS = -lpam
mgmtd_LDADD = $(top_builddir)/lib/mgmt/libmgmtclient.la \
$(top_builddir)/lib/mgmt/libmgmttls.la \
$(top_builddir)/mgmt/daemon/libmgmt.la \
------------------------------
_______________________________________________
Linux-ha-cvs mailing list
[email protected]
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs
End of Linux-ha-cvs Digest, Vol 25, Issue 14
********************************************