Bump buildroot to version 2017-02
TG-3 #closed
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
The sed expression is wrong, any flags with '-g' in any position gets
|
||||
zapped, for example:
|
||||
|
||||
-mfloat-gprs=double (for powerpc e500) -> -mfloatprs=double.
|
||||
|
||||
Which gives build errors and is perfectly valid in real use scenarios to
|
||||
switch from e500v1 (single precision) code to e500v2 (double precision) code.
|
||||
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
|
||||
diff -Nura flac-1.3.1.orig/configure flac-1.3.1/configure
|
||||
--- flac-1.3.1.orig/configure 2014-11-27 20:43:29.921303105 -0300
|
||||
+++ flac-1.3.1/configure 2014-11-27 20:45:33.460250179 -0300
|
||||
@@ -19870,11 +19870,10 @@
|
||||
|
||||
if test "x$debug" = xtrue; then
|
||||
CPPFLAGS="-DDEBUG $CPPFLAGS"
|
||||
- CFLAGS=$(echo "$CFLAGS" | sed 's/-g//')
|
||||
- CFLAGS="-g $CFLAGS"
|
||||
+ CFLAGS=$(echo "-g $CFLAGS")
|
||||
else
|
||||
CPPFLAGS="-DNDEBUG $CPPFLAGS"
|
||||
- CFLAGS=$(echo "$CFLAGS" | sed 's/-O2//;s/-g//')
|
||||
+ CFLAGS=$(echo "$CFLAGS" | sed 's/-O2//')
|
||||
CFLAGS="-O3 -funroll-loops $CFLAGS"
|
||||
fi
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
From 8589b44c573d4228a9df3ba7bffdfdf584e7b033 Mon Sep 17 00:00:00 2001
|
||||
From: Peter Korsgaard <peter@korsgaard.com>
|
||||
Date: Mon, 9 Jan 2017 21:38:29 +0100
|
||||
Subject: [PATCH] configure.ac: relax linux OS detection
|
||||
|
||||
Not all linux hosts match the *-pc-linux-gnu wildcard, causing build
|
||||
failures for older glibc versions where we need to link with -lrt for
|
||||
clock_gettime - E.G.:
|
||||
|
||||
- arm-unknown-linux-musleabihf
|
||||
- powerpc-unknown-linux-gnuspe
|
||||
- bfin-linux-linux-uclibc
|
||||
..
|
||||
|
||||
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
|
||||
---
|
||||
configure.ac | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 070ab357..235d2717 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -186,7 +186,7 @@ esac
|
||||
AM_CONDITIONAL(OS_IS_WINDOWS, test "x$os_is_windows" = xyes)
|
||||
|
||||
case "$host" in
|
||||
- *-pc-linux-gnu)
|
||||
+ *-linux-*)
|
||||
sys_linux=true
|
||||
AC_DEFINE(FLAC__SYS_LINUX)
|
||||
AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux])
|
||||
--
|
||||
2.11.0
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
Fix musl compile since it does not define __sigemptyset
|
||||
|
||||
Downloaded from
|
||||
http://git.alpinelinux.org/cgit/aports/commit/main/flac/sigemptyset.patch?id=49fd0f4cebc46e2753d6a60e450078446f7f18a7
|
||||
|
||||
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
|
||||
--- ./src/libFLAC/cpu.c.orig
|
||||
+++ ./src/libFLAC/cpu.c
|
||||
@@ -243,7 +243,7 @@
|
||||
struct sigaction sigill_save;
|
||||
struct sigaction sigill_sse;
|
||||
sigill_sse.sa_sigaction = sigill_handler_sse_os;
|
||||
- __sigemptyset(&sigill_sse.sa_mask);
|
||||
+ sigemptyset(&sigill_sse.sa_mask);
|
||||
sigill_sse.sa_flags = SA_SIGINFO | SA_RESETHAND; /* SA_RESETHAND just in case our SIGILL return jump breaks, so we don't get stuck in a loop */
|
||||
if(0 == sigaction(SIGILL, &sigill_sse, &sigill_save))
|
||||
{
|
||||
@@ -1,2 +1,2 @@
|
||||
# From http://downloads.xiph.org/releases/flac/SHA256SUMS.txt
|
||||
sha256 4773c0099dba767d963fd92143263be338c48702172e8754b9bc5103efe1c56c flac-1.3.1.tar.xz
|
||||
sha256 91cfc3ed61dc40f47f050a109b08610667d73477af6ef36dcad31c31a4a8d53f flac-1.3.2.tar.xz
|
||||
|
||||
@@ -4,13 +4,15 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
FLAC_VERSION = 1.3.1
|
||||
FLAC_VERSION = 1.3.2
|
||||
FLAC_SITE = http://downloads.xiph.org/releases/flac
|
||||
FLAC_SOURCE = flac-$(FLAC_VERSION).tar.xz
|
||||
FLAC_INSTALL_STAGING = YES
|
||||
FLAC_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
||||
FLAC_LICENSE = Xiph BSD-like (libFLAC), GPLv2+ (tools), LGPLv2.1+ (other libraries)
|
||||
FLAC_LICENSE_FILES = COPYING.Xiph COPYING.GPL COPYING.LGPL
|
||||
# 0001-configure.ac-relax-linux-OS-detection.patch patches configure.ac
|
||||
FLAC_AUTORECONF = YES
|
||||
FLAC_CONF_OPTS = \
|
||||
--disable-cpplibs \
|
||||
--disable-xmms-plugin \
|
||||
|
||||
Reference in New Issue
Block a user