From: Viktor M. <mih...@us...> - 2005-05-11 14:07:17
|
Update of /cvsroot/sblim/indication_helper In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24773 Modified Files: ChangeLog NEWS configure.ac ind_helper.h Log Message: Bugs fixed: 1199449 (well sort of). Fixed compile errors caused by CMPI_VER_86 redefinition. Index: NEWS =================================================================== RCS file: /cvsroot/sblim/indication_helper/NEWS,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- NEWS 2 Feb 2005 19:06:51 -0000 1.1.1.1 +++ NEWS 11 May 2005 14:07:06 -0000 1.2 @@ -0,0 +1,5 @@ +Changes in 0.4.0 +================ + +Bugs: +- 1199449 fixed compile problem in connection with a cmpi-base build problem. Index: configure.ac =================================================================== RCS file: /cvsroot/sblim/indication_helper/configure.ac,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- configure.ac 19 Apr 2005 12:21:08 -0000 1.5 +++ configure.ac 11 May 2005 14:07:06 -0000 1.6 @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.53) -AC_INIT(SBLIM Indication Helper, 0.3.1a, sbl...@li...,sblim-indication_helper) +AC_INIT(SBLIM Indication Helper, 0.4.0, sbl...@li...,sblim-indication_helper) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([ind_helper.c]) AM_CONFIG_HEADER(config.h) @@ -62,7 +62,6 @@ CC_WARNINGS="\ -Wall \ - -Werror \ -Wmissing-prototypes \ -Wmissing-declarations \ -Wstrict-prototypes \ @@ -75,7 +74,6 @@ CXX_WARNINGS="\ -Wall\ - -Werror\ -Wmissing-prototypes \ -Wstrict-prototypes \ -Wpointer-arith \ Index: ind_helper.h =================================================================== RCS file: /cvsroot/sblim/indication_helper/ind_helper.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ind_helper.h 19 Apr 2005 16:04:16 -0000 1.2 +++ ind_helper.h 11 May 2005 14:07:06 -0000 1.3 @@ -14,7 +14,7 @@ * Date : 09/20/2004 */ -#define CMPI_VER_86 1 +#define CMPI_VERSION 90 #include <cmpift.h> typedef unsigned int Uint32; Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/indication_helper/ChangeLog,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- ChangeLog 2 Feb 2005 19:06:51 -0000 1.1.1.1 +++ ChangeLog 11 May 2005 14:07:06 -0000 1.2 @@ -0,0 +1,7 @@ +2005-05-11 <mih...@dy...> + + * ind_helper.h: replace CMPI_VER_nn macro by CMPI_VERSION + + * configure.ac: removed -Werror flag as this leads to make distcheck + failure. + |