mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-01 13:40:04 +00:00
minidlna: Fix build with -fno-common
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -13,6 +13,7 @@ SRC_URI = "git://git.code.sf.net/p/minidlna/git;branch=master;module=git \
|
||||
file://minidlna.service \
|
||||
file://0001-Update-Gettext-version.patch \
|
||||
file://0001-configure-Check-for-clock_gettime-seprately-from-__N.patch \
|
||||
file://0001-Mark-setjmp_buffer-extern-declaration.patch \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
From 1c6028f5f8bbfd3fd7327a43e1bb762c2c166167 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Wed, 12 Aug 2020 18:10:54 -0700
|
||||
Subject: [PATCH] Mark setjmp_buffer extern declaration
|
||||
|
||||
Fixes build with -fno-common
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
metadata.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/metadata.c b/metadata.c
|
||||
index 8a10c77..c114091 100644
|
||||
--- a/metadata.c
|
||||
+++ b/metadata.c
|
||||
@@ -484,7 +484,7 @@ GetAudioMetadata(const char *path, const char *name)
|
||||
}
|
||||
|
||||
/* For libjpeg error handling */
|
||||
-jmp_buf setjmp_buffer;
|
||||
+extern jmp_buf setjmp_buffer;
|
||||
static void
|
||||
libjpeg_error_handler(j_common_ptr cinfo)
|
||||
{
|
||||
--
|
||||
2.28.0
|
||||
|
||||
Reference in New Issue
Block a user