package/tvheadend: bump version
Removed patch which was applied upstream:
fb7b241146
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
e7a71ba33d
commit
0846221426
@ -1,55 +0,0 @@
|
||||
From 04c01e631cb1bf47dd50b1ef92a086308e380eff Mon Sep 17 00:00:00 2001
|
||||
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
Date: Sat, 1 Jan 2022 16:53:29 +0100
|
||||
Subject: [PATCH] configure: add execinfo option
|
||||
|
||||
Add execinfo option to allow the user to disable the feature even if
|
||||
execinfo.h is found on the system
|
||||
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
[Upsteam status: https://github.com/tvheadend/tvheadend/pull/1431]
|
||||
---
|
||||
configure | 17 +++++++++++++++--
|
||||
1 file changed, 15 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/configure b/configure
|
||||
index 4dad024c4..c087502bf 100755
|
||||
--- a/configure
|
||||
+++ b/configure
|
||||
@@ -75,6 +75,7 @@ OPTIONS=(
|
||||
"ddci:yes"
|
||||
"cclang_threadsan:no"
|
||||
"gperftools:no"
|
||||
+ "execinfo:auto"
|
||||
)
|
||||
|
||||
#
|
||||
@@ -150,11 +151,23 @@ if [ ${PLATFORM} = "freebsd" ]; then
|
||||
# If we don't have libunwind then fallback to execinfo.
|
||||
if ! enabled libunwind
|
||||
then
|
||||
- check_cc_header execinfo
|
||||
+ if enabled_or_auto execinfo; then
|
||||
+ if check_cc_header execinfo; then
|
||||
+ enable execinfo
|
||||
+ else
|
||||
+ die "execinfo.h not found (use --disable-execinfo)"
|
||||
+ fi
|
||||
+ fi
|
||||
fi
|
||||
|
||||
else
|
||||
- check_cc_header execinfo
|
||||
+ if enabled_or_auto execinfo; then
|
||||
+ if check_cc_header execinfo; then
|
||||
+ enable execinfo
|
||||
+ else
|
||||
+ die "execinfo.h not found (use --disable-execinfo)"
|
||||
+ fi
|
||||
+ fi
|
||||
fi
|
||||
check_cc_option mmx
|
||||
check_cc_option sse2
|
||||
--
|
||||
2.33.0
|
||||
|
@ -1,3 +1,3 @@
|
||||
# Locally computed
|
||||
sha256 11eeca461e74fbe8306916933cab96d35a99fa89d81e26126e194875c41b6fad tvheadend-b8710206eb073c72b142bce95846b77a0ffa34a6.tar.gz
|
||||
sha256 10b8e8387cf341a8c639b3ecbab17dd245dc109afd6c99ca6b7fc3f2b5efc50e tvheadend-1295dd2be863f5beb764290fce9317b24193dfc0.tar.gz
|
||||
sha256 54dc3cbc00bf126bcba43e2af7f3ad1dc00f335985da1409fa943c7b7256d942 LICENSE.md
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
TVHEADEND_VERSION = b8710206eb073c72b142bce95846b77a0ffa34a6
|
||||
TVHEADEND_VERSION = 1295dd2be863f5beb764290fce9317b24193dfc0
|
||||
TVHEADEND_SITE = $(call github,tvheadend,tvheadend,$(TVHEADEND_VERSION))
|
||||
TVHEADEND_LICENSE = GPL-3.0+
|
||||
TVHEADEND_LICENSE_FILES = LICENSE.md
|
||||
|
Loading…
Reference in New Issue
Block a user