Skip to content
Snippets Groups Projects
Commit 6d5ea5b1 authored by Dmitry Marakasov's avatar Dmitry Marakasov
Browse files

devel/sdl3: Fix joystick support

PR:		284919
Submitted by:	bsdcode@disroot.org
parent 099952a2
No related branches found
No related tags found
No related merge requests found
PORTNAME= sdl3
DISTVERSIONPREFIX= release-
DISTVERSION= 3.2.8
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= devel
MAINTAINER= amdmi3@FreeBSD.org
......@@ -12,7 +12,7 @@ WWW= https://www.libsdl.org/ \
LICENSE= ZLIB
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= cmake iconv pkgconfig
USES= cmake iconv localbase pkgconfig
USE_GITHUB= yes
GH_ACCOUNT= libsdl-org
GH_PROJECT= SDL
......@@ -36,6 +36,7 @@ OPTIONS_DEFINE_powerpc= ALTIVEC
OPTIONS_DEFINE_powerpc64= ALTIVEC
OPTIONS_DEFAULT_powerpc= ALTIVEC
OPTIONS_DEFAULT_powerpc64= ALTIVEC
OPTIONS_SUB= yes
AUDIO_DESC= Audio drivers
VIDEO_DESC= Video drivers
......
--- cmake/FindLibUSB.cmake.orig 2025-03-04 22:37:06 UTC
+++ cmake/FindLibUSB.cmake
@@ -10,7 +10,7 @@ find_library(LibUSB_LIBRARY
endif()
find_library(LibUSB_LIBRARY
- NAMES usb-1.0 libusb-1.0
+ NAMES usb-1.0 libusb-1.0 usb
HINTS ${PC_LibUSB_LIBRARY_DIRS}
)
--- src/hidapi/SDL_hidapi.c.orig 2025-03-04 22:37:06 UTC
+++ src/hidapi/SDL_hidapi.c
@@ -710,7 +710,7 @@ static struct
);
void (LIBUSB_CALL *free_config_descriptor)(struct libusb_config_descriptor *config);
uint8_t (LIBUSB_CALL *get_bus_number)(libusb_device *dev);
- int (LIBUSB_CALL *get_port_numbers)(libusb_device *dev, uint8_t *port_numbers, int port_numbers_len);
+ int (LIBUSB_CALL *get_port_numbers)(libusb_device *dev, uint8_t *port_numbers, uint8_t port_numbers_len);
uint8_t (LIBUSB_CALL *get_device_address)(libusb_device *dev);
int (LIBUSB_CALL *open)(libusb_device *dev, libusb_device_handle **dev_handle);
void (LIBUSB_CALL *close)(libusb_device_handle *dev_handle);
@@ -1188,7 +1188,7 @@ int SDL_hid_init(void)
LOAD_LIBUSB_SYMBOL(int (LIBUSB_CALL *)(libusb_device *, uint8_t, struct libusb_config_descriptor **), get_config_descriptor)
LOAD_LIBUSB_SYMBOL(void (LIBUSB_CALL *)(struct libusb_config_descriptor *), free_config_descriptor)
LOAD_LIBUSB_SYMBOL(uint8_t (LIBUSB_CALL *)(libusb_device *), get_bus_number)
- LOAD_LIBUSB_SYMBOL(int (LIBUSB_CALL *)(libusb_device *dev, uint8_t *port_numbers, int port_numbers_len), get_port_numbers)
+ LOAD_LIBUSB_SYMBOL(int (LIBUSB_CALL *)(libusb_device *dev, uint8_t *port_numbers, uint8_t port_numbers_len), get_port_numbers)
LOAD_LIBUSB_SYMBOL(uint8_t (LIBUSB_CALL *)(libusb_device *), get_device_address)
LOAD_LIBUSB_SYMBOL(int (LIBUSB_CALL *)(libusb_device *, libusb_device_handle **), open)
LOAD_LIBUSB_SYMBOL(void (LIBUSB_CALL *)(libusb_device_handle *), close)
......@@ -83,6 +83,8 @@ include/SDL3/SDL_tray.h
include/SDL3/SDL_version.h
include/SDL3/SDL_video.h
include/SDL3/SDL_vulkan.h
%%HIDAPI%%lib/cmake/SDL3/FindLibUSB.cmake
%%HIDAPI%%lib/cmake/SDL3/PkgConfigHelper.cmake
lib/cmake/SDL3/SDL3Config.cmake
lib/cmake/SDL3/SDL3ConfigVersion.cmake
lib/cmake/SDL3/SDL3headersTargets.cmake
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment