mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
sblim-sfcc: Fix build with clang17
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -1,80 +0,0 @@
|
|||||||
From f97c26f5effd4372f7e03f9e4178d42a9ad8d4b3 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Khem Raj <raj.khem@gmail.com>
|
|
||||||
Date: Fri, 2 Sep 2022 13:33:16 -0700
|
|
||||||
Subject: [PATCH] Fix function declararions
|
|
||||||
|
|
||||||
Upstream-Status: Pending
|
|
||||||
|
|
||||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
||||||
---
|
|
||||||
TEST/v2test_ec.c | 2 ++
|
|
||||||
TEST/v2test_ein.c | 1 +
|
|
||||||
backend/cimxml/cimXmlParser.c | 6 +++++-
|
|
||||||
backend/cimxml/grammar.c | 2 ++
|
|
||||||
4 files changed, 10 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/TEST/v2test_ec.c b/TEST/v2test_ec.c
|
|
||||||
index ad34dcc..d3e566d 100644
|
|
||||||
--- a/TEST/v2test_ec.c
|
|
||||||
+++ b/TEST/v2test_ec.c
|
|
||||||
@@ -6,6 +6,8 @@
|
|
||||||
#include "cmcimacs.h"
|
|
||||||
|
|
||||||
extern char *value2Chars(CMPIType type, CMPIValue * value);
|
|
||||||
+extern void showClass( CMPIConstClass * in_class );
|
|
||||||
+
|
|
||||||
/*
|
|
||||||
* comment out this define to use v2 http XML interface
|
|
||||||
*/
|
|
||||||
diff --git a/TEST/v2test_ein.c b/TEST/v2test_ein.c
|
|
||||||
index c1b4692..5d5ef5d 100644
|
|
||||||
--- a/TEST/v2test_ein.c
|
|
||||||
+++ b/TEST/v2test_ein.c
|
|
||||||
@@ -6,6 +6,7 @@
|
|
||||||
#include "cmcimacs.h"
|
|
||||||
|
|
||||||
extern char *value2Chars(CMPIType type, CMPIValue * value);
|
|
||||||
+extern void showObjectPath( CMPIObjectPath * objectpath );
|
|
||||||
void showProperty( CMPIData , char * );
|
|
||||||
void showInstance( CMPIInstance * );
|
|
||||||
static char * CMPIState_str(CMPIValueState);
|
|
||||||
diff --git a/backend/cimxml/cimXmlParser.c b/backend/cimxml/cimXmlParser.c
|
|
||||||
index d1ab86e..9f5d1ca 100644
|
|
||||||
--- a/backend/cimxml/cimXmlParser.c
|
|
||||||
+++ b/backend/cimxml/cimXmlParser.c
|
|
||||||
@@ -34,6 +34,8 @@
|
|
||||||
|
|
||||||
#include <pthread.h>
|
|
||||||
|
|
||||||
+void startParsing(ParserControl *parm);
|
|
||||||
+
|
|
||||||
static int attrsOk(XmlBuffer * xb, const XmlElement * e, XmlAttr * r,
|
|
||||||
const char *tag, int etag);
|
|
||||||
static char *getValue(XmlBuffer * xb, const char *v);
|
|
||||||
@@ -1350,7 +1352,9 @@ ResponseHdr scanCimXmlResponse(const char *xmlData, CMPIObjectPath *cop)
|
|
||||||
|
|
||||||
control.heap = parser_heap_init();
|
|
||||||
|
|
||||||
- control.respHdr.rc = startParsing(&control);
|
|
||||||
+ control.respHdr.rc = 0;
|
|
||||||
+
|
|
||||||
+ startParsing(&control);
|
|
||||||
|
|
||||||
parser_heap_term(control.heap);
|
|
||||||
|
|
||||||
diff --git a/backend/cimxml/grammar.c b/backend/cimxml/grammar.c
|
|
||||||
index 6a0a969..a3dcdea 100644
|
|
||||||
--- a/backend/cimxml/grammar.c
|
|
||||||
+++ b/backend/cimxml/grammar.c
|
|
||||||
@@ -23,6 +23,8 @@
|
|
||||||
#include "sfcUtil/utilft.h"
|
|
||||||
#include "parserUtil.h"
|
|
||||||
|
|
||||||
+CMPIType guessType(char *val);
|
|
||||||
+void setClassMethods(CMPIConstClass *cls, XtokMethods *ms);
|
|
||||||
|
|
||||||
static int ct = 0;
|
|
||||||
static int dontLex = 0;
|
|
||||||
--
|
|
||||||
2.37.3
|
|
||||||
|
|
||||||
+80
@@ -0,0 +1,80 @@
|
|||||||
|
From 1e1ed4d58909360997648ca9524ab16441f5474b Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Thu, 6 Jul 2023 10:15:41 -0700
|
||||||
|
Subject: [PATCH] Fix implicit function declarations
|
||||||
|
|
||||||
|
Clang 17+ has been finding these errors since its enforcing C99
|
||||||
|
more than other compilers
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
TEST/v2test_ec.c | 1 +
|
||||||
|
TEST/v2test_ein.c | 1 +
|
||||||
|
backend/cimxml/cimXmlParser.c | 2 +-
|
||||||
|
backend/cimxml/grammar.c | 2 ++
|
||||||
|
backend/cimxml/grammar.h | 1 +
|
||||||
|
5 files changed, 6 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/TEST/v2test_ec.c b/TEST/v2test_ec.c
|
||||||
|
index ad34dcc..940ca57 100644
|
||||||
|
--- a/TEST/v2test_ec.c
|
||||||
|
+++ b/TEST/v2test_ec.c
|
||||||
|
@@ -4,6 +4,7 @@
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include "cmcimacs.h"
|
||||||
|
+#include "show.h"
|
||||||
|
|
||||||
|
extern char *value2Chars(CMPIType type, CMPIValue * value);
|
||||||
|
/*
|
||||||
|
diff --git a/TEST/v2test_ein.c b/TEST/v2test_ein.c
|
||||||
|
index c1b4692..ede95c1 100644
|
||||||
|
--- a/TEST/v2test_ein.c
|
||||||
|
+++ b/TEST/v2test_ein.c
|
||||||
|
@@ -4,6 +4,7 @@
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include "cmcimacs.h"
|
||||||
|
+#include "show.h"
|
||||||
|
|
||||||
|
extern char *value2Chars(CMPIType type, CMPIValue * value);
|
||||||
|
void showProperty( CMPIData , char * );
|
||||||
|
diff --git a/backend/cimxml/cimXmlParser.c b/backend/cimxml/cimXmlParser.c
|
||||||
|
index d1ab86e..14f5f5c 100644
|
||||||
|
--- a/backend/cimxml/cimXmlParser.c
|
||||||
|
+++ b/backend/cimxml/cimXmlParser.c
|
||||||
|
@@ -1350,7 +1350,7 @@ ResponseHdr scanCimXmlResponse(const char *xmlData, CMPIObjectPath *cop)
|
||||||
|
|
||||||
|
control.heap = parser_heap_init();
|
||||||
|
|
||||||
|
- control.respHdr.rc = startParsing(&control);
|
||||||
|
+ startParsing(&control);
|
||||||
|
|
||||||
|
parser_heap_term(control.heap);
|
||||||
|
|
||||||
|
diff --git a/backend/cimxml/grammar.c b/backend/cimxml/grammar.c
|
||||||
|
index 6a0a969..522ca9e 100644
|
||||||
|
--- a/backend/cimxml/grammar.c
|
||||||
|
+++ b/backend/cimxml/grammar.c
|
||||||
|
@@ -23,6 +23,8 @@
|
||||||
|
#include "sfcUtil/utilft.h"
|
||||||
|
#include "parserUtil.h"
|
||||||
|
|
||||||
|
+extern CMPIType guessType(char *val);
|
||||||
|
+extern void setClassMethods(CMPIConstClass *cls, XtokMethods *ms);
|
||||||
|
|
||||||
|
static int ct = 0;
|
||||||
|
static int dontLex = 0;
|
||||||
|
diff --git a/backend/cimxml/grammar.h b/backend/cimxml/grammar.h
|
||||||
|
index 00d364f..bafdd42 100644
|
||||||
|
--- a/backend/cimxml/grammar.h
|
||||||
|
+++ b/backend/cimxml/grammar.h
|
||||||
|
@@ -79,3 +79,4 @@ static void valueRefArray(ParserControl *parm, parseUnion *stateUnion);
|
||||||
|
static void valueReference(ParserControl *parm, parseUnion *stateUnion);
|
||||||
|
static void valueReferenceData(ParserControl *parm, parseUnion *stateUnion);
|
||||||
|
|
||||||
|
+void startParsing(ParserControl *parm);
|
||||||
|
--
|
||||||
|
2.41.0
|
||||||
|
|
||||||
@@ -4,7 +4,7 @@ HOMEPAGE = "http://www.sblim.org"
|
|||||||
|
|
||||||
SRC_URI = "http://netcologne.dl.sourceforge.net/project/sblim/${BPN}/${BPN}-${PV}.tar.bz2 \
|
SRC_URI = "http://netcologne.dl.sourceforge.net/project/sblim/${BPN}/${BPN}-${PV}.tar.bz2 \
|
||||||
file://0001-cimxml-Include-sys-select.h-for-fd_set.patch \
|
file://0001-cimxml-Include-sys-select.h-for-fd_set.patch \
|
||||||
file://0001-Fix-function-declararions.patch \
|
file://0001-Fix-implicit-function-declarations.patch \
|
||||||
"
|
"
|
||||||
|
|
||||||
SRC_URI[md5sum] = "0bac0dec19f17ec065b6c332a56d7bae"
|
SRC_URI[md5sum] = "0bac0dec19f17ec065b6c332a56d7bae"
|
||||||
|
|||||||
Reference in New Issue
Block a user