package/musl: bump version to 1.2.4
Removed patch which is included in this release. Switched _SITE according to http://www.musl-libc.org/ Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
3ca3304276
commit
c3cee366cb
@ -1010,7 +1010,6 @@ package/musepack/0004-missing-sys-select.patch Upstream
|
||||
package/musepack/0005-fix-build-with-gcc-10.patch Upstream
|
||||
package/musl/0001-avoid-kernel-if_ether.h.patch Upstream
|
||||
package/musl/0002-package-musl-Make-scheduler-functions-Linux-compatib.patch Upstream
|
||||
package/musl/0003-fix-incorrect-parameter-name-in-internal-netlink.h-R.patch Upstream
|
||||
package/nano/0001-lib-getrandom.c-fix-build-with-uclibc-1.0.35.patch Upstream
|
||||
package/nanocom/0001-fix-build-with-gcc-10.patch Upstream
|
||||
package/ncftp/0001-fix-gcc-10.patch Upstream
|
||||
|
@ -1,33 +0,0 @@
|
||||
From 8cf87b3027009c0acac591d9ae80262dc25daccf Mon Sep 17 00:00:00 2001
|
||||
From: Ondrej Jirman <megous@megous.com>
|
||||
Date: Wed, 21 Nov 2018 17:29:21 +0100
|
||||
Subject: [PATCH] fix incorrect parameter name in internal netlink.h RTA_OK
|
||||
macro
|
||||
|
||||
the wrong name works only by accident.
|
||||
|
||||
Signed-off-by: Ondrej Jirman <megous@megous.com>
|
||||
Signed-off-by: Rich Felker <dalias@aerifal.cx>
|
||||
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
|
||||
|
||||
[ upstream status: 8cf87b3027009c0acac591d9ae80262dc25daccf ]
|
||||
---
|
||||
src/network/netlink.h | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/network/netlink.h b/src/network/netlink.h
|
||||
index 38acb178..873fabe2 100644
|
||||
--- a/src/network/netlink.h
|
||||
+++ b/src/network/netlink.h
|
||||
@@ -86,7 +86,7 @@ struct ifaddrmsg {
|
||||
#define RTA_DATALEN(rta) ((rta)->rta_len-sizeof(struct rtattr))
|
||||
#define RTA_DATAEND(rta) ((char*)(rta)+(rta)->rta_len)
|
||||
#define RTA_NEXT(rta) (struct rtattr*)((char*)(rta)+NETLINK_ALIGN((rta)->rta_len))
|
||||
-#define RTA_OK(nlh,end) ((char*)(end)-(char*)(rta) >= sizeof(struct rtattr))
|
||||
+#define RTA_OK(rta,end) ((char*)(end)-(char*)(rta) >= sizeof(struct rtattr))
|
||||
|
||||
#define NLMSG_RTA(nlh,len) ((void*)((char*)(nlh)+sizeof(struct nlmsghdr)+NETLINK_ALIGN(len)))
|
||||
#define NLMSG_RTAOK(rta,nlh) RTA_OK(rta,NLMSG_DATAEND(nlh))
|
||||
--
|
||||
2.36.0
|
||||
|
@ -37,4 +37,4 @@ config BR2_PACKAGE_MUSL
|
||||
# Compatibility headers: cdefs.h, queue.h
|
||||
select BR2_PACKAGE_MUSL_COMPAT_HEADERS
|
||||
help
|
||||
https://www.musl-libc.org/
|
||||
http://musl.libc.org/
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Locally calculated after checking pgp signature from
|
||||
# https://musl.libc.org/releases/musl-1.2.3.tar.gz.asc
|
||||
sha256 7d5b0b6062521e4627e099e4c9dc8248d32a30285e959b7eecaa780cf8cfd4a4 musl-1.2.3.tar.gz
|
||||
# http://musl.libc.org/releases/musl-1.2.4.tar.gz.asc
|
||||
sha256 7a35eae33d5372a7c0da1188de798726f68825513b7ae3ebe97aaaa52114f039 musl-1.2.4.tar.gz
|
||||
sha256 f9bc4423732350eb0b3f7ed7e91d530298476f8fec0c6c427a1c04ade22655af COPYRIGHT
|
||||
|
@ -4,8 +4,8 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MUSL_VERSION = 1.2.3
|
||||
MUSL_SITE = http://www.musl-libc.org/releases
|
||||
MUSL_VERSION = 1.2.4
|
||||
MUSL_SITE = http://musl.libc.org/releases
|
||||
MUSL_LICENSE = MIT
|
||||
MUSL_LICENSE_FILES = COPYRIGHT
|
||||
MUSL_CPE_ID_VENDOR = musl-libc
|
||||
|
Loading…
Reference in New Issue
Block a user