From 0fbe6944d0feedf6529569176984419bb25e02ac Mon Sep 17 00:00:00 2001 From: Christian Lachner Date: Sun, 12 Jul 2020 09:44:42 +0200 Subject: [PATCH] liburing: Update to v0.7 - Updated download URL and hash - Removed our include-patch as the problem was fixed upstream - Removed our MUSL-specific loff_t definition as liburing switched to off_t which is supported by MUSL out-of-the-box Signed-off-by: Christian Lachner --- libs/liburing/Makefile | 6 ++---- .../patches/000-OPENWRT-add-int64_t-detection.patch | 11 ----------- 2 files changed, 2 insertions(+), 15 deletions(-) delete mode 100644 libs/liburing/patches/000-OPENWRT-add-int64_t-detection.patch diff --git a/libs/liburing/Makefile b/libs/liburing/Makefile index 7238d5bcc4..c3c59264cd 100644 --- a/libs/liburing/Makefile +++ b/libs/liburing/Makefile @@ -1,12 +1,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=liburing -PKG_VERSION:=0.6 +PKG_VERSION:=0.7 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://git.kernel.dk/cgit/liburing/snapshot -PKG_HASH:=44c99b9f148a885d882acd7aa63658141675eae251298cbf79bb9a4ab307ef9c +PKG_HASH:=05d0cf8493d573c76b11abfcf34aabc7153affebe17ff95f9ae88b0de062a59d PKG_MAINTAINER:=Christian Lachner PKG_LICENSE:=MIT @@ -33,8 +33,6 @@ endef CONFIGURE_ARGS:=--prefix=$(CONFIGURE_PREFIX) --cc=${TARGET_CC} -TARGET_CFLAGS += $(if $(CONFIG_USE_MUSL),-Dloff_t=off_t) - define Build/Compile $(MAKE) $(PKG_BUILD_DIR) \ DSTROOT="$(PKG_INSTALL_DIR)" diff --git a/libs/liburing/patches/000-OPENWRT-add-int64_t-detection.patch b/libs/liburing/patches/000-OPENWRT-add-int64_t-detection.patch deleted file mode 100644 index 6409956ee9..0000000000 --- a/libs/liburing/patches/000-OPENWRT-add-int64_t-detection.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- ./configure -+++ ./configure -@@ -301,6 +301,8 @@ - fi - if test "$__kernel_timespec" != "yes"; then - cat >> $compat_h << EOF -+#include -+ - struct __kernel_timespec { - int64_t tv_sec; - long long tv_nsec;