elfutils: update to elfutils-0.178

This commit is contained in:
MilhouseVH 2020-01-25 21:08:42 +00:00
parent d4e4825b24
commit 488fcdca63
2 changed files with 20 additions and 17 deletions

View File

@ -3,8 +3,8 @@
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="elfutils"
PKG_VERSION="0.176"
PKG_SHA256="eb5747c371b0af0f71e86215a5ebb88728533c3a104a43d4231963f308cd1023"
PKG_VERSION="0.178"
PKG_SHA256="31e7a00e96d4e9c4bda452e1f2cdac4daf8abd24f5e154dee232131899f3a0f2"
PKG_LICENSE="GPL"
PKG_SITE="https://sourceware.org/elfutils/"
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 \
--disable-programs \
--disable-nls \
--disable-debuginfod \
--with-zlib \
--without-bzlib \
--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_PROGRAMS} \
--disable-nls \
--disable-debuginfod \
--with-zlib \
--without-bzlib \
--without-lzma"

View File

@ -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>
Date: Wed, 4 Dec 2019 09:19:19 +0000
Date: Sat, 25 Jan 2020 21:28:52 +0000
Subject: [PATCH] make executables optional
---
Makefile.am | 5 ++++-
Makefile.am | 6 +++++-
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
index 2ff444e..314083f 100644
index bd8926b..1733937 100644
--- a/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 libebl libdwelf libdwfl libdw libcpu libasm \
- backends src po tests
+ backends po tests
SUBDIRS = config m4 lib libelf libcpu backends libebl libdwelf libdwfl libdw \
- libasm src po doc tests
+ libasm po doc tests
+
+if BUILD_PROGRAMS
+ SUBDIRS += src
+endif
EXTRA_DIST = elfutils.spec GPG-KEY NOTES CONTRIBUTING \
COPYING COPYING-GPLV2 COPYING-LGPLV3
if DEBUGINFOD
SUBDIRS += debuginfod
diff --git a/configure.ac b/configure.ac
index b4e012d..0fd46cc 100644
index 5a2dc37..a1e856a 100644
--- a/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.])
@ -41,5 +42,5 @@ index b4e012d..0fd46cc 100644
AC_PROG_RANLIB
AC_PROG_YACC
--
2.20.1
2.7.4