openal-soft: updated to 1.25.2
openal-soft-1.25.2:
Fixed the library version string for builds made without Git repo info.
Fixed an STL hardening assertion in the reverb effect.
Fixed a potential crash for builds made with older PipeWire headers.
Fixed capturing mono from a stereo or greater WASAPI input device.
Fixed building on macOS without std::format.
Fixed height encoding for TSME output.
Fixed the Super Stereo decoder's stereo separation with TSME output.
Implemented 3D processing for the Distortion, Chorus, Flanger, Pitch
[14 lines not shown]
Pull up following revision(s) (requested by hgutch in ticket #292):
external/mit/xorg/tools/fc-cache/Makefile: revision 1.24
Build fc-cache tool with -std=gnu99 instead of -std=c99 to get necessary
function prototypes on gcc-14/glibc build hosts.
Pull up following revision(s) (requested by isaki in ticket #1268):
etc/etc.luna68k/MAKEDEV.conf: revision 1.12
luna68k: Add missing audio devices to MAKEDEV.
Pull up following revision(s) (requested by isaki in ticket #291):
etc/etc.luna68k/MAKEDEV.conf: revision 1.12
luna68k: Add missing audio devices to MAKEDEV.
Pull up following revision(s) (requested by riastradh in ticket #289):
usr.bin/ruptime/ruptime.c: revision 1.16
usr.sbin/inetd/ratelimit.c: revision 1.3
fix a couple of "allocate too little" issues GCC 14 pointed out.
both ruptime and inetd allocate a less-than-struct-sized space and
assign it to a struct pointer. neither of them actually use more
than the allocated memory, but this is still dodgy and technically
wrong. just allocate the right size.