|
From: Bob T. <bt...@us...> - 2004-02-17 05:06:49
|
Update of /cvsroot/benson/benson3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28705 Modified Files: ChangeLog configure configure.ac Log Message: Made some changes to check for additional dependencies. Index: ChangeLog =================================================================== RCS file: /cvsroot/benson/benson3/ChangeLog,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -r1.34 -r1.35 *** ChangeLog 22 Aug 2003 00:07:58 -0000 1.34 --- ChangeLog 17 Feb 2004 04:58:12 -0000 1.35 *************** *** 2,6 **** --- 2,8 ---- - Adding in the disk/vfs monitor (and then disabled it) - Revised the network code, actually completely overhauled the network code. + - Added override attribute for suppression in Benson module. - Added duration attribute for suppress btrap to Benson module. + - Major changes to the build environment. version 3.1a4 Index: configure =================================================================== RCS file: /cvsroot/benson/benson3/configure,v retrieving revision 1.64 retrieving revision 1.65 diff -C2 -r1.64 -r1.65 *** configure 12 Dec 2003 19:14:27 -0000 1.64 --- configure 17 Feb 2004 04:58:12 -0000 1.65 *************** *** 5508,5511 **** --- 5508,5543 ---- fi + echo "$as_me:$LINENO: checking for Perl module DBI" >&5 + echo $ECHO_N "checking for Perl module DBI... $ECHO_C" >&6 + PERL_MOD_DBI=`$perlpath -MDBI -e "print 'yes';"` + if test X"$PERL_MOD_DBI" = Xyes; then + echo "$as_me:$LINENO: result: ok" >&5 + echo "${ECHO_T}ok" >&6 + else + echo "$as_me:$LINENO: result: not found" >&5 + echo "${ECHO_T}not found" >&6 + fi + + echo "$as_me:$LINENO: checking for Perl module DBD::Pg" >&5 + echo $ECHO_N "checking for Perl module DBD::Pg... $ECHO_C" >&6 + PERL_MOD_DBD_PG=`$perlpath -MDBD::Pg -e "print 'yes';"` + if test X"$PERL_MOD_DBD_PG" = Xyes; then + echo "$as_me:$LINENO: result: ok" >&5 + echo "${ECHO_T}ok" >&6 + else + echo "$as_me:$LINENO: result: not found" >&5 + echo "${ECHO_T}not found" >&6 + fi + + echo "$as_me:$LINENO: checking for Perl module XML::Simple" >&5 + echo $ECHO_N "checking for Perl module XML::Simple... $ECHO_C" >&6 + PERL_MOD_XML_SIMPLE=`$perlpath -MXML::Simple -e "print 'yes';"` + if test X"$PERL_MOD_XML_SIMPLE" = Xyes; then + echo "$as_me:$LINENO: result: ok" >&5 + echo "${ECHO_T}ok" >&6 + else + echo "$as_me:$LINENO: result: not found" >&5 + echo "${ECHO_T}not found" >&6 + fi fi Index: configure.ac =================================================================== RCS file: /cvsroot/benson/benson3/configure.ac,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** configure.ac 12 Dec 2003 19:14:27 -0000 1.12 --- configure.ac 17 Feb 2004 04:58:13 -0000 1.13 *************** *** 140,143 **** --- 140,166 ---- AC_SUBST(PERL_SLIBS) fi + AC_MSG_CHECKING(for Perl module DBI) + PERL_MOD_DBI=`$perlpath -MDBI -e "print 'yes';"` + if test X"$PERL_MOD_DBI" = Xyes; then + AC_MSG_RESULT(ok) + else + AC_MSG_RESULT(not found) + fi + + AC_MSG_CHECKING(for Perl module DBD::Pg) + PERL_MOD_DBD_PG=`$perlpath -MDBD::Pg -e "print 'yes';"` + if test X"$PERL_MOD_DBD_PG" = Xyes; then + AC_MSG_RESULT(ok) + else + AC_MSG_RESULT(not found) + fi + + AC_MSG_CHECKING(for Perl module XML::Simple) + PERL_MOD_XML_SIMPLE=`$perlpath -MXML::Simple -e "print 'yes';"` + if test X"$PERL_MOD_XML_SIMPLE" = Xyes; then + AC_MSG_RESULT(ok) + else + AC_MSG_RESULT(not found) + fi fi |