liblo: update to 0.34
authorRosen Penev <[email protected]>
Fri, 21 Nov 2025 04:04:12 +0000 (20:04 -0800)
committerHannu Nyman <[email protected]>
Fri, 21 Nov 2025 16:53:25 +0000 (18:53 +0200)
Fixes compilation with newer CMake.

Signed-off-by: Rosen Penev <[email protected]>
libs/liblo/Makefile
libs/liblo/patches/010-index.patch [deleted file]
libs/liblo/patches/020-usleep.patch [deleted file]

index 2b44ecf2ffa308fd3694183f0811100acbf2c12b..2d52b198deaeb4bf55ee3a0446017edb736eb2c4 100644 (file)
@@ -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 (file)
index 160ed3a..0000000
+++ /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 (file)
index 2b138f6..0000000
+++ /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);
-     }