]> git.ipfire.org Git - people/stevee/ipfire-2.x.git/commitdiff
libusbredir: Update to version 0.15.0
authorAdolf Belka <adolf.belka@ipfire.org>
Fri, 12 Sep 2025 10:10:41 +0000 (12:10 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 12 Sep 2025 15:49:08 +0000 (15:49 +0000)
- Update from version 0.13.0 to 0.15.0
- Update of rootfile not required
- Changelog
    0.15.0
- !74 usbredirect: Fix crash with multiple connections
- !73 usbredirect: Fix win32 cross-compile warning
- usbredirtestclient: Fix memory leak
    0.14.0
- !67 usbredirect: Fix redirecting identical devices
- !64 usbredirect: Fix CPU tight loop when run as TCP server
- !68 usbredirect: Fix some minor memory leaks
- !65 usbredirect: Add documentation about bus-device option
- !70 usbredirtestclient: Fix build on MacOS 10.5

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
lfs/libusbredir

index e7934baf38a0ee310d9c937da805c97322b5a073..652f871811de187a3977eccb79ae2f52d7e41df8 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2023  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = USB Network Redirection protocol
 
-VER        = 0.13.0
+VER        = 0.15.0
 
 THISAPP    = usbredir-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -34,7 +34,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = libusbredir
-PAK_VER    = 4
+PAK_VER    = 5
 
 DEPS       =
 
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 20a1e28be290d59d3ef25f432d6bbd4b50b40f5df434efb9013a39df77ce1aa563e7dec1cdf6abbfa703bb9c4b32dd05258011b5ce8e79812e89203f51f41f8f
+$(DL_FILE)_BLAKE2 = 33c1ef77e6c28abd00badd2ca0b49df4e583d421834b46e4dcb0ba6db0787bb2e58cf922ed7a050c96772b94d5a146bef03a5052c49093234683d07db76d6300
 
 install : $(TARGET)
 
@@ -81,7 +81,9 @@ $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
-       cd $(DIR_APP) && meson --prefix=/usr builddir/
+       cd $(DIR_APP) && meson setup \
+                               --prefix=/usr \
+                               builddir/
        cd $(DIR_APP) && ninja -C builddir/ $(MAKETUNING)
        cd $(DIR_APP) && ninja -C builddir/ install
        @rm -rf $(DIR_APP)