From 9a06c40481f1b141dffced600e5a9a12811b0030 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 31 Aug 2020 00:36:57 -0700 Subject: [PATCH] libuhttpd: fix compilation with uClibc-ng Upstream backport. Signed-off-by: Rosen Penev --- libs/libuhttpd/Makefile | 2 +- libs/libuhttpd/patches/010-offset.patch | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 libs/libuhttpd/patches/010-offset.patch diff --git a/libs/libuhttpd/Makefile b/libs/libuhttpd/Makefile index b19ee58ab..3cdc00910 100644 --- a/libs/libuhttpd/Makefile +++ b/libs/libuhttpd/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libuhttpd PKG_VERSION:=3.2.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL=https://github.com/zhaojh329/libuhttpd/releases/download/v$(PKG_VERSION) diff --git a/libs/libuhttpd/patches/010-offset.patch b/libs/libuhttpd/patches/010-offset.patch new file mode 100644 index 000000000..f534e030c --- /dev/null +++ b/libs/libuhttpd/patches/010-offset.patch @@ -0,0 +1,10 @@ +--- a/src/file.c ++++ b/src/file.c +@@ -24,6 +24,7 @@ + + #define _DEFAULT_SOURCE + #define _XOPEN_SOURCE ++#define _FILE_OFFSET_BITS 64 + + #include + #include