From patchwork Wed May 4 19:51:28 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 5590 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4KtnX92c6Qz3x1v for ; Wed, 4 May 2022 19:51:37 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4KtnX84jBZz1D7; Wed, 4 May 2022 19:51:36 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4KtnX84Z4gz2yk2; Wed, 4 May 2022 19:51:36 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4KtnX70s7Pz2yRl for ; Wed, 4 May 2022 19:51:35 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4KtnX66TVDzm9; Wed, 4 May 2022 19:51:34 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1651693894; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=UnnJN52eIsHb7uC+rRJBeiTgY4OZdqXuxUehXENnRmI=; b=JfbVdVhHAmeIB2MfEMXx36BTQ2MUrmZqd2+bayV4QITQ71/YpWdNVJMAWiyIG2181SkU3r LnlL31gHwnGUhiCg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1651693894; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=UnnJN52eIsHb7uC+rRJBeiTgY4OZdqXuxUehXENnRmI=; b=lHPBdhT8L6/j6/wP1MUojXbLKudPNAwuHktrR703jyL9vfRYdd2iKuezzb+hER4QqdUnzl w/ssr8DGbUWqY8MFkRPMXmpiVeKQv0ic3AK5bVcbuRb8qOfXHbXju2r/sz7fWkaVwRM/Jr S7OmpcG3SLfBlJmDSgyATTAZYtgNR6FGySqLzlylR+5HBlMljKdC+oCo6tGOx7mbtvWTwQ +PGfVhJlO4cVZ1duBt2ga6HiowSRyuMFlKqL1TH1A+dH0d+Fue/ZJQAigT7T/7QKdw1I2E 12s0e0hdqtYUg1n+9JnoGOPEL0P9snWqDBtlDdwuRl1IIPGgy43MeaIKV4aCLQ== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] sdl2: Update to version 2.0.22 Date: Wed, 4 May 2022 21:51:28 +0200 Message-Id: <20220504195128.2945089-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - Update from version 2.0.20 to 2.0.22 - Update of rootfile - Changelog 2.0.22: General: * Added SDL_RenderGetWindow() to get the window associated with a renderer * Added floating point rectangle functions: * SDL_PointInFRect() * SDL_FRectEmpty() * SDL_FRectEquals() * SDL_FRectEqualsEpsilon() * SDL_HasIntersectionF() * SDL_IntersectFRect() * SDL_UnionFRect() * SDL_EncloseFPoints() * SDL_IntersectFRectAndLine() * Added SDL_IsTextInputShown() which returns whether the IME window is currently shown * Added SDL_ClearComposition() to dismiss the composition window without disabling IME input * Added SDL_TEXTEDITING_EXT event for handling long composition text, and a hint SDL_HINT_IME_SUPPORT_EXTENDED_TEXT to enable it * Added the hint SDL_HINT_MOUSE_RELATIVE_MODE_CENTER to control whether the mouse should be constrained to the whole window or the center of the window when relative mode is enabled * The mouse is now automatically captured when mouse buttons are pressed, and the hint SDL_HINT_MOUSE_AUTO_CAPTURE allows you to control this behavior * Added the hint SDL_HINT_VIDEO_FOREIGN_WINDOW_OPENGL to let SDL know that a foreign window will be used with OpenGL * Added the hint SDL_HINT_VIDEO_FOREIGN_WINDOW_VULKAN to let SDL know that a foreign window will be used with Vulkan * Added the hint SDL_HINT_QUIT_ON_LAST_WINDOW_CLOSE to specify whether an SDL_QUIT event will be delivered when the last application window is closed * Added the hint SDL_HINT_JOYSTICK_ROG_CHAKRAM to control whether ROG Chakram mice show up as joysticks Windows: * Added support for SDL_BLENDOPERATION_MINIMUM and SDL_BLENDOPERATION_MAXIMUM to the D3D9 renderer Linux: * Compiling with Wayland support requires libwayland-client version 1.18.0 or later * Added the hint SDL_HINT_X11_WINDOW_TYPE to specify the _NET_WM_WINDOW_TYPE of SDL windows * Added the hint SDL_HINT_VIDEO_WAYLAND_PREFER_LIBDECOR to allow using libdecor with compositors that support xdg-decoration Android: * Added SDL_AndroidSendMessage() to send a custom command to the SDL java activity Signed-off-by: Adolf Belka Reviewed-by: Peter Müller --- config/rootfiles/packages/sdl2 | 2 +- lfs/sdl2 | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/rootfiles/packages/sdl2 b/config/rootfiles/packages/sdl2 index ae18130fb..a95500017 100644 --- a/config/rootfiles/packages/sdl2 +++ b/config/rootfiles/packages/sdl2 @@ -81,7 +81,7 @@ #usr/lib/cmake/SDL2/sdl2-config-version.cmake #usr/lib/cmake/SDL2/sdl2-config.cmake usr/lib/libSDL2-2.0.so.0 -usr/lib/libSDL2-2.0.so.0.18.2 +usr/lib/libSDL2-2.0.so.0.22.0 #usr/lib/libSDL2.la usr/lib/libSDL2.so #usr/lib/libSDL2_test.a diff --git a/lfs/sdl2 b/lfs/sdl2 index fb9bee353..0e1d70950 100644 --- a/lfs/sdl2 +++ b/lfs/sdl2 @@ -24,7 +24,7 @@ include Config -VER = 2.0.20 +VER = 2.0.22 SUMMARY = Simple DirectMedia Layer Library THISAPP = SDL2-$(VER) @@ -33,7 +33,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = sdl2 -PAK_VER = 6 +PAK_VER = 7 DEPS = alsa @@ -47,7 +47,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 03c6d462674aeb90559003e9f4c74f66833e193d2de3f3975f1e1684c5bdccb5c1b3c64c22c822777a63ee218d87fd04ff047b012d8db30a1565dafa34161623 +$(DL_FILE)_BLAKE2 = 7f8b3efa709a0514f6a76df4ffc8b756d287d1e372ed107d0525a22cb5e6a168709136d375b6708b2073a76dd30d1bf06203d2c5c3eb2990e80519c7d1558df5 install : $(TARGET)