mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
yaffs2-utils: Fix build with musl
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
(cherry picked from commit 35814672e7)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
parent
a46622071e
commit
c22aceb7d2
|
|
@ -0,0 +1,30 @@
|
|||
From 848717da4a28d33f8aa8f889377e61e6b1b8ae67 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Thu, 13 Jul 2017 18:29:52 -0700
|
||||
Subject: [PATCH] define loff_t if not already defined
|
||||
|
||||
Helps to build with musl
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
yaffs_guts.h | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/yaffs_guts.h b/yaffs_guts.h
|
||||
index 6bcf12d..4af17ce 100644
|
||||
--- a/yaffs_guts.h
|
||||
+++ b/yaffs_guts.h
|
||||
@@ -18,6 +18,10 @@
|
||||
|
||||
#include "yportenv.h"
|
||||
|
||||
+#ifndef loff_t
|
||||
+#define loff_t off_t
|
||||
+#endif
|
||||
+
|
||||
#define YAFFS_OK 1
|
||||
#define YAFFS_FAIL 0
|
||||
|
||||
--
|
||||
2.13.2
|
||||
|
||||
|
|
@ -14,7 +14,8 @@ DEPENDS = "mtd-utils"
|
|||
# Source is the HEAD of master branch at the time of writing this recipe
|
||||
SRC_URI = "git://www.aleph1.co.uk/yaffs2;protocol=git;branch=master \
|
||||
file://makefile-add-ldflags.patch \
|
||||
"
|
||||
file://0001-define-loff_t-if-not-already-defined.patch \
|
||||
"
|
||||
|
||||
SRCREV = "bc76682d93955cfb33051beb503ad9f8a5450578"
|
||||
S = "${WORKDIR}/git"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user