package/libbsd: security bump to version 0.10.0
- Remove patch (already in version)
- Update site to get the latest version
- Update hash of license file (update in year, new file and author)
- Remove !(BR2_TOOLCHAIN_USES_UCLIBC && !BR2_USE_MMU) dependency,
__register_at_fork availability is correclty checked since
b0ebb0d4c2
- Includes Several security related fixes for nlist() reported by Daniel
Hodson and one by Coverity Scan, see
https://lists.freedesktop.org/archives/libbsd/2019-August/000229.html
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Acked-by: Yann E. MORIN <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
59856480b6
commit
1f6c7d6e0f
@ -3,7 +3,7 @@ config BR2_PACKAGE_FWTS
|
|||||||
depends on BR2_i386 || BR2_x86_64 || BR2_aarch64
|
depends on BR2_i386 || BR2_x86_64 || BR2_aarch64
|
||||||
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS # libbsd
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS # libbsd
|
||||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
|
||||||
depends on BR2_USE_MMU # libglib2, libbsd
|
depends on BR2_USE_MMU # libglib2
|
||||||
depends on BR2_USE_WCHAR # libglib2, libbsd
|
depends on BR2_USE_WCHAR # libglib2, libbsd
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2, libbsd
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2, libbsd
|
||||||
depends on BR2_TOOLCHAIN_USES_GLIBC # execinfo.h
|
depends on BR2_TOOLCHAIN_USES_GLIBC # execinfo.h
|
||||||
|
@ -1,40 +0,0 @@
|
|||||||
From 8575450b9c1226fc38196b29e33c67f2b58cacf5 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Baruch Siach <baruch@tkos.co.il>
|
|
||||||
Date: Tue, 5 Jun 2018 19:18:47 +0300
|
|
||||||
Subject: [PATCH] flopen: fix build with musl libc
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
Commit 993828d84ee (Add flopenat() function from FreeBSD) dropped the
|
|
||||||
fcntl.h header. This breaks the build with musl libc:
|
|
||||||
|
|
||||||
flopen.c: In function ‘vflopenat’:
|
|
||||||
flopen.c:60:14: error: ‘O_CREAT’ undeclared (first use in this function)
|
|
||||||
if (flags & O_CREAT) {
|
|
||||||
^~~~~~~
|
|
||||||
|
|
||||||
Restore the fcntl.h header include to fix the build.
|
|
||||||
|
|
||||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
|
||||||
---
|
|
||||||
Upstream status: sent to libbsd@lists.freedesktop.org
|
|
||||||
|
|
||||||
src/flopen.c | 1 +
|
|
||||||
1 file changed, 1 insertion(+)
|
|
||||||
|
|
||||||
diff --git a/src/flopen.c b/src/flopen.c
|
|
||||||
index b9972c94ec90..ff20d074445b 100644
|
|
||||||
--- a/src/flopen.c
|
|
||||||
+++ b/src/flopen.c
|
|
||||||
@@ -32,6 +32,7 @@
|
|
||||||
#include <sys/stat.h>
|
|
||||||
|
|
||||||
#include <errno.h>
|
|
||||||
+#include <fcntl.h>
|
|
||||||
#include <stdarg.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
--
|
|
||||||
2.17.1
|
|
||||||
|
|
@ -6,8 +6,6 @@ config BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
|||||||
depends on !BR2_arc
|
depends on !BR2_arc
|
||||||
depends on !BR2_xtensa
|
depends on !BR2_xtensa
|
||||||
depends on !BR2_nds32
|
depends on !BR2_nds32
|
||||||
# uClibc on noMMU doesn't provide __register_atfork()
|
|
||||||
depends on !(BR2_TOOLCHAIN_USES_UCLIBC && !BR2_USE_MMU)
|
|
||||||
|
|
||||||
config BR2_PACKAGE_LIBBSD
|
config BR2_PACKAGE_LIBBSD
|
||||||
bool "libbsd"
|
bool "libbsd"
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# From https://lists.freedesktop.org/archives/libbsd/2018-May/000190.html
|
# From https://lists.freedesktop.org/archives/libbsd/2019-August/000229.html
|
||||||
sha256 56d835742327d69faccd16955a60b6dcf30684a8da518c4eca0ac713b9e0a7a4 libbsd-0.9.1.tar.xz
|
sha256 34b8adc726883d0e85b3118fa13605e179a62b31ba51f676136ecb2d0bc1a887 libbsd-0.10.0.tar.xz
|
||||||
sha256 df6d8e1b5b3a5b06376c658c8ad3afc82687f1c0e0404cec4738ad14b2675708 COPYING
|
sha256 933d14a6bc89ee1fd7adbf5b6ec97f6ff0e002549d0b0c164f8a8895371d78f8 COPYING
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
LIBBSD_VERSION = 0.9.1
|
LIBBSD_VERSION = 0.10.0
|
||||||
LIBBSD_SOURCE = libbsd-$(LIBBSD_VERSION).tar.xz
|
LIBBSD_SOURCE = libbsd-$(LIBBSD_VERSION).tar.xz
|
||||||
LIBBSD_SITE = https://archive.hadrons.org/software/libbsd
|
LIBBSD_SITE = https://libbsd.freedesktop.org/releases
|
||||||
LIBBSD_LICENSE = BSD-2-Clause, BSD-3-Clause, BSD-4-Clause, BSD-5-Clause, \
|
LIBBSD_LICENSE = BSD-2-Clause, BSD-3-Clause, BSD-4-Clause, BSD-5-Clause, \
|
||||||
MIT, ISC, Beerware
|
MIT, ISC, Beerware
|
||||||
LIBBSD_LICENSE_FILES = COPYING
|
LIBBSD_LICENSE_FILES = COPYING
|
||||||
|
Loading…
Reference in New Issue
Block a user