From: Viktor M. <mih...@us...> - 2005-05-11 11:42:11
|
Update of /cvsroot/sblim/cmpi-network In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24851 Modified Files: ChangeLog NEWS configure.ac Log Message: Bugs fixed: 1199129. Now compiles with cmpi-devel 1.0.0. Index: NEWS =================================================================== RCS file: /cvsroot/sblim/cmpi-network/NEWS,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- NEWS 4 May 2005 14:43:48 -0000 1.2 +++ NEWS 11 May 2005 11:42:02 -0000 1.3 @@ -1,3 +1,9 @@ +Changes in 1.3.5 +================ + +Bugs: +- 1199129 Added toleration for newer (spec-conforming) CMPI headers. + Changes in 1.3.4 ================ Index: configure.ac =================================================================== RCS file: /cvsroot/sblim/cmpi-network/configure.ac,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- configure.ac 4 May 2005 14:43:48 -0000 1.2 +++ configure.ac 11 May 2005 11:42:02 -0000 1.3 @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT(SBLIM BaseOS Network Providers, 1.3.4, sbl...@li...,sblim-cmpi-network) +AC_INIT(SBLIM BaseOS Network Providers, 1.3.4a, sbl...@li...,sblim-cmpi-network) AC_CONFIG_SRCDIR([OSBase_CommonNetwork.c]) AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE @@ -64,6 +64,13 @@ else TESTSUITE_SUPPORT=Enabled fi + +# Extend CPPFLAGS +if echo $CPPFLAGS | grep -v CMPI_VERSION +then + CPPFLAGS="$CPPFLAGS -DCMPI_VERSION=90" +fi + # Display configuration options echo "-------------------------------------------------------" echo "Configuration for $PACKAGE complete." Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/cmpi-network/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChangeLog 4 May 2005 14:43:48 -0000 1.2 +++ ChangeLog 11 May 2005 11:42:02 -0000 1.3 @@ -1,3 +1,8 @@ +2005-05-10 <mih...@dy...> + + * configure.ac: Bug 1199129: add -DCMPI_VERSION=90 to CPPFLAGS to + ensure compatibility when compiled with newer CMPI headers. + 2005-05-04 <mih...@dy...> * test/system/linux/Linux_IPProtocolEndpoint.system: |