mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 21:56:42 +00:00
elfutils: update to elfutils-0.178
This commit is contained in:
parent
d4e4825b24
commit
488fcdca63
@ -3,8 +3,8 @@
|
|||||||
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
||||||
|
|
||||||
PKG_NAME="elfutils"
|
PKG_NAME="elfutils"
|
||||||
PKG_VERSION="0.176"
|
PKG_VERSION="0.178"
|
||||||
PKG_SHA256="eb5747c371b0af0f71e86215a5ebb88728533c3a104a43d4231963f308cd1023"
|
PKG_SHA256="31e7a00e96d4e9c4bda452e1f2cdac4daf8abd24f5e154dee232131899f3a0f2"
|
||||||
PKG_LICENSE="GPL"
|
PKG_LICENSE="GPL"
|
||||||
PKG_SITE="https://sourceware.org/elfutils/"
|
PKG_SITE="https://sourceware.org/elfutils/"
|
||||||
PKG_URL="https://sourceware.org/elfutils/ftp/$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
PKG_URL="https://sourceware.org/elfutils/ftp/$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
||||||
@ -25,6 +25,7 @@ fi
|
|||||||
PKG_CONFIGURE_OPTS_HOST="utrace_cv_cc_biarch=false \
|
PKG_CONFIGURE_OPTS_HOST="utrace_cv_cc_biarch=false \
|
||||||
--disable-programs \
|
--disable-programs \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
--disable-debuginfod \
|
||||||
--with-zlib \
|
--with-zlib \
|
||||||
--without-bzlib \
|
--without-bzlib \
|
||||||
--without-lzma"
|
--without-lzma"
|
||||||
@ -32,6 +33,7 @@ PKG_CONFIGURE_OPTS_HOST="utrace_cv_cc_biarch=false \
|
|||||||
PKG_CONFIGURE_OPTS_TARGET="utrace_cv_cc_biarch=false \
|
PKG_CONFIGURE_OPTS_TARGET="utrace_cv_cc_biarch=false \
|
||||||
${PKG_PROGRAMS} \
|
${PKG_PROGRAMS} \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
--disable-debuginfod \
|
||||||
--with-zlib \
|
--with-zlib \
|
||||||
--without-bzlib \
|
--without-bzlib \
|
||||||
--without-lzma"
|
--without-lzma"
|
||||||
|
@ -1,34 +1,35 @@
|
|||||||
From ca1a78e042fa55f378f3402559f9cfb41c603406 Mon Sep 17 00:00:00 2001
|
From be854357189b6a3bd7e846b4e7914877f0deaf9f Mon Sep 17 00:00:00 2001
|
||||||
From: MilhouseVH <milhouseVH.github@nmacleod.com>
|
From: MilhouseVH <milhouseVH.github@nmacleod.com>
|
||||||
Date: Wed, 4 Dec 2019 09:19:19 +0000
|
Date: Sat, 25 Jan 2020 21:28:52 +0000
|
||||||
Subject: [PATCH] make executables optional
|
Subject: [PATCH] make executables optional
|
||||||
|
|
||||||
---
|
---
|
||||||
Makefile.am | 5 ++++-
|
Makefile.am | 6 +++++-
|
||||||
configure.ac | 5 +++++
|
configure.ac | 5 +++++
|
||||||
2 files changed, 9 insertions(+), 1 deletion(-)
|
2 files changed, 10 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/Makefile.am b/Makefile.am
|
diff --git a/Makefile.am b/Makefile.am
|
||||||
index 2ff444e..314083f 100644
|
index bd8926b..1733937 100644
|
||||||
--- a/Makefile.am
|
--- a/Makefile.am
|
||||||
+++ b/Makefile.am
|
+++ b/Makefile.am
|
||||||
@@ -28,7 +28,10 @@ pkginclude_HEADERS = version.h
|
@@ -27,7 +27,11 @@ AM_MAKEFLAGS = --no-print-directory
|
||||||
|
pkginclude_HEADERS = version.h
|
||||||
|
|
||||||
# Add doc back when we have some real content.
|
SUBDIRS = config m4 lib libelf libcpu backends libebl libdwelf libdwfl libdw \
|
||||||
SUBDIRS = config m4 lib libelf libebl libdwelf libdwfl libdw libcpu libasm \
|
- libasm src po doc tests
|
||||||
- backends src po tests
|
+ libasm po doc tests
|
||||||
+ backends po tests
|
+
|
||||||
+if BUILD_PROGRAMS
|
+if BUILD_PROGRAMS
|
||||||
+ SUBDIRS += src
|
+ SUBDIRS += src
|
||||||
+endif
|
+endif
|
||||||
|
|
||||||
EXTRA_DIST = elfutils.spec GPG-KEY NOTES CONTRIBUTING \
|
if DEBUGINFOD
|
||||||
COPYING COPYING-GPLV2 COPYING-LGPLV3
|
SUBDIRS += debuginfod
|
||||||
diff --git a/configure.ac b/configure.ac
|
diff --git a/configure.ac b/configure.ac
|
||||||
index b4e012d..0fd46cc 100644
|
index 5a2dc37..a1e856a 100644
|
||||||
--- a/configure.ac
|
--- a/configure.ac
|
||||||
+++ b/configure.ac
|
+++ b/configure.ac
|
||||||
@@ -85,6 +85,11 @@ AS_IF([test "$use_locks" = yes],
|
@@ -87,6 +87,11 @@ AS_IF([test "$use_locks" = yes],
|
||||||
|
|
||||||
AH_TEMPLATE([USE_LOCKS], [Defined if libraries should be thread-safe.])
|
AH_TEMPLATE([USE_LOCKS], [Defined if libraries should be thread-safe.])
|
||||||
|
|
||||||
@ -41,5 +42,5 @@ index b4e012d..0fd46cc 100644
|
|||||||
AC_PROG_RANLIB
|
AC_PROG_RANLIB
|
||||||
AC_PROG_YACC
|
AC_PROG_YACC
|
||||||
--
|
--
|
||||||
2.20.1
|
2.7.4
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user