From: Stuart Henderson Subject: Re: Update: devel/sdl3 to 3.4.0 To: yaydn@protonmail.com Cc: Matthew , Thomas Frohwein , "ports@openbsd.org" Date: Wed, 18 Feb 2026 14:47:58 +0000 On 2026/02/14 21:19, yaydn@protonmail.com wrote: > Does the SHARED_LIBS need a (major or minor) bump in the Makefile for > sdl3? I am not sure which if any would be appropriate. minor bump. > sdl3-3.4.0(devel/sdl3): > Missing: Xtst.11 (/usr/local/lib/libSDL3.so.0.0) (system lib) > Missing: sndio.8 (/usr/local/lib/libSDL3.so.0.0) (system lib) > Missing: usbhid.7 (/usr/local/lib/libSDL3.so.0.0) (system lib) > Extra: sndio.9 > WANTLIB += Xtst sndio usbhid > *** Error 1 in target 'port-lib-depends-check' (ignored) Xtst and usbhid should be added, but you have something out of sync with sndio on your machine (probably will be fixed after updating packages) this looks like the right diff I think? Index: Makefile =================================================================== RCS file: /cvs/ports/devel/sdl3/Makefile,v diff -u -p -r1.3 Makefile --- Makefile 23 Aug 2025 21:08:28 -0000 1.3 +++ Makefile 18 Feb 2026 14:47:07 -0000 @@ -1,10 +1,10 @@ COMMENT = cross-platform multimedia library -V = 3.2.20 +V = 3.4.0 DISTNAME = SDL3-${V} PKGNAME = ${DISTNAME:L} -SHARED_LIBS += SDL3 0.0 # 3.2.18 +SHARED_LIBS += SDL3 0.1 CATEGORIES = devel HOMEPAGE = https://libsdl.org/ @@ -13,9 +13,9 @@ MAINTAINER = Thomas Frohwein