From: Viktor M. <mih...@us...> - 2005-05-11 12:04:35
|
Update of /cvsroot/sblim/cmpi-fsvol In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28824 Modified Files: ChangeLog NEWS configure.ac Log Message: Bugs fixed 1199129 1199146. Added toleration for build with CMPI 1.0.0 headers. Added registration for new StatisticalData class. Index: NEWS =================================================================== RCS file: /cvsroot/sblim/cmpi-fsvol/NEWS,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- NEWS 15 Apr 2005 14:28:15 -0000 1.1 +++ NEWS 11 May 2005 12:04:26 -0000 1.2 @@ -0,0 +1,6 @@ +Changes in 1.4.1 +================ + +Bugs: +- 1199129 Added toleration for newer (spec-conforming) CMPI headers. +- 1199146 Added missing registration for BlockDeviceStatisticalData. Index: configure.ac =================================================================== RCS file: /cvsroot/sblim/cmpi-fsvol/configure.ac,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- configure.ac 20 Apr 2005 11:40:19 -0000 1.3 +++ configure.ac 11 May 2005 12:04:26 -0000 1.4 @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT(SBLIM BaseOS Filesystem Providers, 1.4.0, sbl...@li...,sblim-cmpi-fsvol) +AC_INIT(SBLIM BaseOS Filesystem Providers, 1.4.0a, sbl...@li...,sblim-cmpi-fsvol) AC_CONFIG_SRCDIR([OSBase_CommonFsvol.c]) AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE @@ -59,6 +59,12 @@ AC_CONFIG_FILES([Makefile sblim-cmpi-fsvol.spec]) +# Extend CPPFLAGS +if echo $CPPFLAGS | grep -v CMPI_VERSION +then + CPPFLAGS="$CPPFLAGS -DCMPI_VERSION=90" +fi + if test x"$TESTSUITEDIR" == x; then TESTSUITE_SUPPORT=Disabled else Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/cmpi-fsvol/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ChangeLog 2 May 2005 15:50:07 -0000 1.3 +++ ChangeLog 11 May 2005 12:04:26 -0000 1.4 @@ -1,3 +1,11 @@ +2005-05-10 <mih...@dy...> + + * mof/Linux_Fsvol.registration: Bug 1199146 added missing + line for Linux_BlockDeviceStatisticalData class. + + * configure.ac: Bug 1199129 add -DCMPI_VERSION=90 to CPPFLAGS + to ensure compatibility when compiled with newer CMPI headers. + 2005-05-02 <mih...@dy...> * mof/Linux_Fsvol.registration: New registration file format. |