kumquat-buildroot/package/mraa/0001-include-Declare-gVERSION-global-as-extern.patch
Fabrice Fontaine 5a30732769 package/mraa: bump to version 2.2.0
- Refresh upstream status of first patch
- Drop second patch (already in version)

https://github.com/eclipse/mraa/blob/v2.2.0/docs/changelog.md

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-01-04 18:32:58 +01:00

31 lines
888 B
Diff

From aaa0a5cd4e401bde4fb3691dd4e6c70a5c61e031 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= <besser82@fedoraproject.org>
Date: Mon, 13 Apr 2020 20:12:11 +0200
Subject: [PATCH] include: Declare gVERSION global as 'extern'.
Fixes build with '-fno-common'.
Signed-off-by: Thomas Ingleby <thomas.ingleby@intel.com>
[Retrieved from:
https://github.com/eclipse/mraa/commit/aaa0a5cd4e401bde4fb3691dd4e6c70a5c61e031]
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
include/version.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/version.h b/include/version.h
index 47366ef6f..3a567a1d5 100644
--- a/include/version.h
+++ b/include/version.h
@@ -11,8 +11,8 @@
extern "C" {
#endif
-const char* gVERSION;
-const char* gVERSION_SHORT;
+extern const char* gVERSION;
+extern const char* gVERSION_SHORT;
#ifdef __cplusplus
}