From: Rosen Penev Date: Fri, 21 Nov 2025 04:04:12 +0000 (-0800) Subject: liblo: update to 0.34 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=d97294e7af46f406963650cd97ea77af867a7965;p=feed%2Fpackages.git liblo: update to 0.34 Fixes compilation with newer CMake. Signed-off-by: Rosen Penev --- diff --git a/libs/liblo/Makefile b/libs/liblo/Makefile index 2b44ecf2ff..2d52b198de 100644 --- a/libs/liblo/Makefile +++ b/libs/liblo/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=liblo -PKG_VERSION:=0.31 -PKG_RELEASE:=2 +PKG_VERSION:=0.34 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@SF/liblo -PKG_HASH:=2b4f446e1220dcd624ecd8405248b08b7601e9a0d87a0b94730c2907dbccc750 +PKG_HASH:=69aa0cd365dba5ea7799b850a7da659ad303e6074bbd67f4ab84e4d6f5f6c3a4 PKG_MAINTAINER:= PKG_LICENSE:=LGPL-2.1-or-later diff --git a/libs/liblo/patches/010-index.patch b/libs/liblo/patches/010-index.patch deleted file mode 100644 index 160ed3a56b..0000000000 --- a/libs/liblo/patches/010-index.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- a/src/server.c -+++ b/src/server.c -@@ -2013,11 +2013,8 @@ static void dispatch_method(lo_server s, - - tmp = (char*) malloc(strlen(it->path + len) + 1); - strcpy(tmp, it->path + len); --#if defined(WIN32) || defined(_MSC_VER) - sec = strchr(tmp, '/'); --#else -- sec = index(tmp, '/'); --#endif -+ - if (sec) - *sec = '\0'; - slend = sl; diff --git a/libs/liblo/patches/020-usleep.patch b/libs/liblo/patches/020-usleep.patch deleted file mode 100644 index 2b138f602d..0000000000 --- a/libs/liblo/patches/020-usleep.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/src/tools/oscsendfile.c -+++ b/src/tools/oscsendfile.c -@@ -354,7 +354,7 @@ int send_file(lo_address target, double - lo_timetag_now(&tt_now); - double wait_time = timetag_diff(*tt_last, tt_now); - if (wait_time > 0.) { -- usleep(wait_time * 1000000); -+ sleep(wait_time); - } - if (b) { - ret = lo_send_bundle(target, b); -@@ -376,7 +376,7 @@ int send_file(lo_address target, double - lo_timetag_now(&tt_now); - double wait_time = timetag_diff(*tt_last, tt_now); - if (wait_time > 0.) { -- usleep(wait_time * 1000000); -+ sleep(wait_time); - } - lo_send_bundle(target, b); - }