Files
bpfire/lfs/sdl2
Adolf Belka 61e6011d4e sdl2: Update to version 2.30.6
- Update from version 2.30.1 to 2.30.6
- Update of rootfile
- Changelog
    2.30.6
	    Improved detection of Nintendo Switch Pro controller report mode
	    Fixed a rare crash when a controller is disconnected
	    Fixed creating a framebuffer with KMSDRM on some systems
    2.30.5
	    Respect SDL_HINT_RENDER_DRIVER when creating an accelerated window surface
	    Clean up any accelerated renderer in SDL_DestroyWindowSurface()
	    Disable low level USB controller support on Android by default (can be
	     enabled by setting "SDL_ENV.SDL_JOYSTICK_HIDAPI" metadata to "1" in
	     AndroidManifest.xml)
	    Fixed USB permissions dialog on Android 14
	    Fixed controller mapping matching when one entry has a CRC specified and
	     another doesn't
	    Enable joystick support on FreeBSD when building using CMake
	    Reduced input latency when using an fcitx IME on Linux
	    Fixed graphical corruption on Raspberry Pi
	    Fixed crash when using an unstable sort function in SDL_qsort (you shouldn't
	     do this, but at least it won't crash)
    2.30.4
	    Android rotation will respect user rotation lock preferences
	    Fixed spurious Left-Ctrl key input when the Right Alt key (AltGr) is pressed
	     on Windows
	    Added support for the Saitek Cyborg V.3 Rumble Pad in PS3 mode
	    Added support for the Razer Kitsune in PS5 mode
	    Added Linux bindings for the Qanba Drone 2 Arcade Joystick
	    Leave Nintendo Online controllers in simple report mode so they work with
	     DirectInput games
	    Enable using libusb for GameCube controllers when available
    2.30.3
	    Fixed Win+V handling (pasting from clipboard history) on Windows
	    Fixed Caps Lock and Backspace key mapping for the Colemak keyboard layout on
	     Windows
	    Fixed mouse warp on XWayland
	    Reduced startup time when scanning for game controllers on Linux
	    Fixed building with C89 compilers
	    Fixed building with the GDK SDK on Windows
    2.30.2
	    Fixed performance regression initializing controllers on Linux
	    Added support for the 6-button SEGA Mega Drive Control Pad for Nintendo Online
	    Added support for the MadCatz Saitek Side Panel Control Deck
	    Added support for the Hori Fighting Stick EX2
	    Added support for the Yawman Arrow flightstick
	    Added a gamepad mapping for the Defender Joystick Cobra R4
	    Fixed the gamepad mapping for the Sanwa Supply JY-P76USV controller
	    Poll for the initial controller state when using DirectInput
	    Allow using SDL_RWFromFile() with named pipes

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2024-08-14 09:11:15 +00:00

91 lines
3.4 KiB
Plaintext

###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2024 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 #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 2.30.6
SUMMARY = Simple DirectMedia Layer Library
THISAPP = SDL2-$(VER)
DL_FILE = $(THISAPP).tar.gz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = sdl2
PAK_VER = 16
DEPS = alsa
SERVICES =
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_BLAKE2 = 9e253d107c2af7ff0f7f67968be2cffc2358fbabd26d4ec46454a11ac53b64ac24a620947601901e43e470ad6b2bb89e273d04c9c2de12c6ab1dd6a4f78733ff
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
b2 : $(subst %,%_BLAKE2,$(objects))
###############################################################################
# Downloading, checking, b2sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_BLAKE2,$(objects)) :
@$(B2SUM)
dist:
@$(PAK)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
$(UPDATE_AUTOMAKE)
cd $(DIR_APP) && ./configure \
--prefix=/usr \
--disable-static
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
@$(POSTBUILD)