From 14668df74bee94378bfebbe0b6d8c40382340717 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Tue, 11 Aug 2020 12:28:53 -0700 Subject: [PATCH] olsrd: fix compilation with musl 1.2.x Signed-off-by: Rosen Penev --- olsrd/Makefile | 2 +- olsrd/patches/010-musl.patch | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 olsrd/patches/010-musl.patch diff --git a/olsrd/Makefile b/olsrd/Makefile index 7eb05e9..8a2f33a 100644 --- a/olsrd/Makefile +++ b/olsrd/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=olsrd PKG_SOURCE_DATE:=2020-06-18 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/OLSR/olsrd.git diff --git a/olsrd/patches/010-musl.patch b/olsrd/patches/010-musl.patch new file mode 100644 index 0000000..3023f43 --- /dev/null +++ b/olsrd/patches/010-musl.patch @@ -0,0 +1,11 @@ +--- a/lib/pud/nmealib/src/info.c ++++ b/lib/pud/nmealib/src/info.c +@@ -172,7 +172,7 @@ bool nmeaTimeParseDate(const char *s, NmeaTime *date) { + void nmeaTimeSet(NmeaTime *utc, uint32_t *present, struct timeval *timeval) { + struct timeval tv; + struct tm tm; +- long usec; ++ time_t usec; + + if (!utc) { + return;