mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
package/ell: fix build with uclibc
Fixes: - http://autobuild.buildroot.org/results/444c9deb728fb041e560d940145f96cc4f455080 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
4554610bde
commit
1bb7f78bfc
31
package/ell/0001-ell-ecc.h-fix-build-with-uclibc.patch
Normal file
31
package/ell/0001-ell-ecc.h-fix-build-with-uclibc.patch
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
From 3ca3044859f40d7c595daf0a93393352e4999fb7 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||||
|
Date: Thu, 30 May 2019 23:46:27 +0200
|
||||||
|
Subject: [PATCH] ell/ecc.h: fix build with uclibc
|
||||||
|
|
||||||
|
ssize_t is defined in sys/types.h
|
||||||
|
|
||||||
|
Fixes:
|
||||||
|
- http://autobuild.buildroot.org/results/444c9deb728fb041e560d940145f96cc4f455080
|
||||||
|
|
||||||
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||||
|
---
|
||||||
|
ell/ecc.h | 2 ++
|
||||||
|
1 file changed, 2 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/ell/ecc.h b/ell/ecc.h
|
||||||
|
index 26a5889..65c49e8 100644
|
||||||
|
--- a/ell/ecc.h
|
||||||
|
+++ b/ell/ecc.h
|
||||||
|
@@ -27,6 +27,8 @@
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
+#include <sys/types.h> // for ssize_t
|
||||||
|
+
|
||||||
|
#define L_ECC_MAX_DIGITS 6
|
||||||
|
#define L_ECC_SCALAR_MAX_BYTES L_ECC_MAX_DIGITS * 8
|
||||||
|
#define L_ECC_POINT_MAX_BYTES L_ECC_SCALAR_MAX_BYTES * 2
|
||||||
|
--
|
||||||
|
2.20.1
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user