Update buidlroot to version 2016.08.1
This commit is contained in:
@@ -1,28 +0,0 @@
|
||||
From 026a8c44d332b3595814ce0aceba255467cd7b6d Mon Sep 17 00:00:00 2001
|
||||
From: Angelo Compagnucci <angelo.compagnucci@gmail.com>
|
||||
Date: Sat, 5 Sep 2015 08:57:21 +0200
|
||||
Subject: [PATCH] eglib: checking for locale_charset function
|
||||
|
||||
This patch checks if locale_charset function is availabe in
|
||||
libiconv or libcharset and changes the linking options accordingly.
|
||||
|
||||
Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
|
||||
---
|
||||
eglib/configure.ac | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/eglib/configure.ac b/eglib/configure.ac
|
||||
index 9d094ea..5ea220e 100644
|
||||
--- a/eglib/configure.ac
|
||||
+++ b/eglib/configure.ac
|
||||
@@ -182,6 +182,7 @@ fi
|
||||
AC_SUBST(G_HAVE_ISO_VARARGS)
|
||||
|
||||
AC_CHECK_HEADERS(getopt.h sys/select.h sys/time.h sys/wait.h pwd.h langinfo.h iconv.h localcharset.h sys/types.h sys/resource.h)
|
||||
+AC_CHECK_LIB([iconv], [locale_charset],[],[AC_CHECK_LIB([charset], [locale_charset],[LIBS+="-liconv -lcharset"])])
|
||||
AC_CHECK_HEADER(alloca.h, [HAVE_ALLOCA_H=1], [HAVE_ALLOCA_H=0])
|
||||
AC_SUBST(HAVE_ALLOCA_H)
|
||||
|
||||
--
|
||||
1.9.1
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
From 76aa4fb62a433e61dc35eefcc3077f0463182d2f Mon Sep 17 00:00:00 2001
|
||||
From: Angelo Compagnucci <angelo.compagnucci@gmail.com>
|
||||
Date: Tue, 23 Feb 2016 22:43:39 +0100
|
||||
Subject: [PATCH] config.in: fixing wrong MonoPosixHelper location
|
||||
|
||||
This patch remove a wrong prefix for libMonoPosixHelper
|
||||
|
||||
Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
|
||||
---
|
||||
data/config.in | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/data/config.in b/data/config.in
|
||||
index b760176..41495b9 100644
|
||||
--- a/data/config.in
|
||||
+++ b/data/config.in
|
||||
@@ -10,7 +10,7 @@
|
||||
<dllmap dll="i:odbc32.dll" target="libiodbc.dylib" os="osx"/>
|
||||
<dllmap dll="oci" target="libclntsh@libsuffix@" os="!windows"/>
|
||||
<dllmap dll="db2cli" target="libdb2_36@libsuffix@" os="!windows"/>
|
||||
- <dllmap dll="MonoPosixHelper" target="@prefix@/@reloc_libdir@/libMonoPosixHelper@libsuffix@" os="!windows" />
|
||||
+ <dllmap dll="MonoPosixHelper" target="libMonoPosixHelper@libsuffix@" os="!windows" />
|
||||
<dllmap dll="i:msvcrt" target="@LIBC@" os="!windows"/>
|
||||
<dllmap dll="i:msvcrt.dll" target="@LIBC@" os="!windows"/>
|
||||
<dllmap dll="sqlite" target="@SQLITE@" os="!windows"/>
|
||||
--
|
||||
1.9.1
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
From 63f0b0246b8125ae48b15bd182bb5831be02e6c9 Mon Sep 17 00:00:00 2001
|
||||
From: Angelo Compagnucci <angelo.compagnucci@gmail.com>
|
||||
Date: Mon, 27 Jun 2016 21:32:11 +0200
|
||||
Subject: [PATCH] fix musl incorrect sigcontext include
|
||||
|
||||
On musl __GLIBC__ is not defined, so the conditional logic will
|
||||
not produce correct result. Add a specific case to handle when
|
||||
__GLIBC__ is not defined.
|
||||
|
||||
Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
|
||||
---
|
||||
libgc/os_dep.c | 2 +-
|
||||
mono/mini/exceptions-arm.c | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/libgc/os_dep.c b/libgc/os_dep.c
|
||||
index 8c8e098..34859c1 100644
|
||||
--- a/libgc/os_dep.c
|
||||
+++ b/libgc/os_dep.c
|
||||
@@ -32,7 +32,7 @@
|
||||
/* prototypes, so we have to include the top-level sigcontext.h to */
|
||||
/* make sure the former gets defined to be the latter if appropriate. */
|
||||
# include <features.h>
|
||||
-# if 2 <= __GLIBC__
|
||||
+# if 2 <= __GLIBC__ || !defined(__GLIBC__)
|
||||
# if 2 == __GLIBC__ && 0 == __GLIBC_MINOR__
|
||||
/* glibc 2.1 no longer has sigcontext.h. But signal.h */
|
||||
/* has the right declaration for glibc 2.1. */
|
||||
diff --git a/mono/mini/exceptions-arm.c b/mono/mini/exceptions-arm.c
|
||||
index b036aa7..a3e2164 100644
|
||||
--- a/mono/mini/exceptions-arm.c
|
||||
+++ b/mono/mini/exceptions-arm.c
|
||||
@@ -14,7 +14,7 @@
|
||||
#include <string.h>
|
||||
|
||||
#ifndef MONO_CROSS_COMPILE
|
||||
-#ifdef HAVE_ASM_SIGCONTEXT_H
|
||||
+#if defined(HAVE_ASM_SIGCONTEXT_H) && defined(__GLIBC__)
|
||||
#include <asm/sigcontext.h>
|
||||
#endif /* def HAVE_ASM_SIGCONTEXT_H */
|
||||
#endif
|
||||
--
|
||||
1.9.1
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
config BR2_PACKAGE_MONO_ARCH_SUPPORTS
|
||||
bool
|
||||
default y if (BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || \
|
||||
BR2_mipsel || BR2_powerpc || BR2_sparc || BR2_x86_64)
|
||||
BR2_mipsel || BR2_powerpc || BR2_x86_64)
|
||||
|
||||
config BR2_PACKAGE_MONO
|
||||
bool "mono"
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# sha256 locally computed
|
||||
sha256 b7b461fe04375f621d88166ba8c6f1cb33c439fd3e17136460f7d087a51ed792 mono-4.2.1.102.tar.bz2
|
||||
sha256 900c2cc25ee55adeec04e1ae889316efc127c82cc0c392f928421f19f8f5b633 mono-4.4.2.11.tar.bz2
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MONO_VERSION = 4.2.1.102
|
||||
MONO_VERSION = 4.4.2.11
|
||||
MONO_SITE = http://download.mono-project.com/sources/mono
|
||||
MONO_SOURCE = mono-$(MONO_VERSION).tar.bz2
|
||||
MONO_LICENSE = GPLv2 or MIT (compiler, tools), LGPLv2 (runtime libs), MIT (class libs) or commercial
|
||||
|
||||
Reference in New Issue
Block a user