mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 12:44:10 -09:00
This releases fixes a compilation issue with gcc-15.
Changelog:
Version 2.6.2, 2025/02/19
Bug in C code (with gcc 15) fixed
See:
https://www.draisberghof.de/usb_modeswitch/bb/viewtopic.php?t=3122
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
[Julien: add change info in commit log]
Signed-off-by: Julien Olivain <ju.o@free.fr>
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# usb_modeswitch
|
|
#
|
|
################################################################################
|
|
|
|
USB_MODESWITCH_VERSION = 2.6.2
|
|
USB_MODESWITCH_SOURCE = usb-modeswitch-$(USB_MODESWITCH_VERSION).tar.bz2
|
|
USB_MODESWITCH_SITE = http://www.draisberghof.de/usb_modeswitch
|
|
USB_MODESWITCH_DEPENDENCIES = libusb
|
|
USB_MODESWITCH_LICENSE = GPL-2.0+, BSD-2-Clause
|
|
USB_MODESWITCH_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_TCL)$(BR2_PACKAGE_TCL_SHLIB_ONLY),y)
|
|
USB_MODESWITCH_DEPENDENCIES += tcl
|
|
USB_MODESWITCH_BUILD_TARGETS = all
|
|
USB_MODESWITCH_INSTALL_TARGETS = install-script
|
|
else
|
|
USB_MODESWITCH_DEPENDENCIES += jimtcl
|
|
USB_MODESWITCH_INSTALL_TARGETS = install-common
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
USB_MODESWITCH_BUILD_TARGETS = all-with-statlink-dispatcher
|
|
else
|
|
USB_MODESWITCH_BUILD_TARGETS = all-with-dynlink-dispatcher
|
|
endif
|
|
endif
|
|
|
|
define USB_MODESWITCH_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
|
-C $(@D) $(USB_MODESWITCH_BUILD_TARGETS)
|
|
endef
|
|
|
|
define USB_MODESWITCH_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
|
DESTDIR=$(TARGET_DIR) \
|
|
-C $(@D) $(USB_MODESWITCH_INSTALL_TARGETS)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|