|
From: Chris B. <buc...@us...> - 2013-01-22 18:32:09
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SFCB - Small Footprint CIM Broker".
The branch, master has been updated
via 82f2f2d60f106c4366f4cc7cac8c1bc5d12bad98 (commit)
from ab54fbf546070dba77147ea57f89264d3215989f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 82f2f2d60f106c4366f4cc7cac8c1bc5d12bad98
Author: buccella <buc...@li...>
Date: Tue Jan 22 13:29:45 2013 -0500
[ 2878328 ] sfcb and mofc won't compile with --disable-qualifierrep
-----------------------------------------------------------------------
Summary of changes:
diff --git a/NEWS b/NEWS
index a4eb74c..36ae40a 100644
--- a/NEWS
+++ b/NEWS
@@ -17,6 +17,7 @@ Bugs fixed:
- 3601026 Fixup compiler warnings from -Wextra
- 3599437 missing include of <sys/resource.h>
- 3601301 Add stubs for empty CMPI functions for internal providers
+- 2878328 sfcb and mofc won't compile with --disable-qualifierrep
Changes in 1.4.3
================
diff --git a/cimXmlOps.y b/cimXmlOps.y
index 3881c84..0af0e86 100644
--- a/cimXmlOps.y
+++ b/cimXmlOps.y
@@ -44,8 +44,10 @@
extern CMPIConstClass initConstClass(ClClass * cl);
extern MsgSegment setConstClassMsgSegment(CMPIConstClass * cl);
extern MsgSegment setInstanceMsgSegment(CMPIInstance *ci);
-extern CMPIQualifierDecl initQualifier(ClQualifierDeclaration * qual);
extern MsgSegment setArgsMsgSegment(CMPIArgs * args);
+#ifdef HAVE_QUALREP
+extern CMPIQualifierDecl initQualifier(ClQualifierDeclaration * qual);
+#endif
int updateMethodParamTypes(RequestHdr * hdr);
//
@@ -1169,6 +1171,8 @@ buildSetPropertyRequest(void *parm)
binCtx->pAs = NULL;
}
+#ifdef HAVE_QUALREP
+
static void
buildGetQualifierRequest(void *parm)
{
@@ -1361,6 +1365,13 @@ buildEnumQualifiersRequest(void *parm)
binCtx->chunkedMode = 0;
binCtx->pAs = NULL;
}
+#else
+
+static void buildDeleteQualifierRequest(void *parm) { return; }
+static void buildGetQualifierRequest(void *parm) { return; }
+static void buildSetQualifierRequest(void *parm) { return; }
+static void buildEnumQualifiersRequest(void *parm) { return; }
+#endif // HAVE_QUALREP
static void
buildInvokeMethodRequest(void *parm)
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|