summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/0001-include-stdint.h-system-header-for-UINT16_MAX.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/0001-include-stdint.h-system-header-for-UINT16_MAX.patch')
-rw-r--r--meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/0001-include-stdint.h-system-header-for-UINT16_MAX.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/0001-include-stdint.h-system-header-for-UINT16_MAX.patch b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/0001-include-stdint.h-system-header-for-UINT16_MAX.patch
new file mode 100644
index 0000000000..c2111a2c10
--- /dev/null
+++ b/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb-1.4.9/0001-include-stdint.h-system-header-for-UINT16_MAX.patch
@@ -0,0 +1,29 @@
1From 446fb15f79499f52ce01ca759dbdcfe635519a82 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 27 Jun 2017 07:09:33 -0700
4Subject: [PATCH] include stdint.h system header for UINT16_MAX
5
6Fixes build error
7
8error: 'UINT16_MAX' undeclared (first use in this function)
9
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 interopServerProvider.c | 1 +
13 1 file changed, 1 insertion(+)
14
15diff --git a/interopServerProvider.c b/interopServerProvider.c
16index 23ae182..532febe 100644
17--- a/interopServerProvider.c
18+++ b/interopServerProvider.c
19@@ -33,6 +33,7 @@
20 #include <sfcCommon/utilft.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23+#include <stdint.h>
24 #include <ctype.h>
25 #include <string.h>
26 #include <sys/types.h>
27--
282.13.2
29