HBSD: Re-enable PIE and RELRO for databases/redis
In order to enable PIE and RELRO, though, we have to perform a stupid
hack to trick redis' build into using the right tool for the job.
Signed-off-by: Shawn Webb <shawn.webb at hardenedbsd.org>
Fixes: a94ea544e8dd2e3ae707f21c0e63667f422c45d7
Issue: #61
filesystems/py-libzfs: fix the build on FreeBSD 15
There were two problems:
* Needed to backport a newer py-libzfs PR due to a libzfs API change
* Since 15.0 is now released, its OSVERSION reset to 1500000
PR: 291393
Sponsored by: ConnectWise
Approved by: Goran Mekić <meka at tilda.center> (maintainer)
MFH: 2025Q4
sndctl(8): Do not free and re-open device
There was a reason for this, but it does not apply anymore.
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D54031
sound: Retire snd_mixer->busy
Does not really serve any real purpose. It gets set on mixer_open() and
unset on mixer_close(), so it essentially tells us whether the mixer is
open or not.
mixer_close() uses it to return EBADF in case the mixer is not busied,
as in, the mixer has not been open()'d yet. This is redundant. The other
place where this is used is to decide whether to serve an ioctl issued
by userland, in which case it won't if, again, the mixer has not been
busied (i.e., opened). Again, seems redundant.
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Reviewed by: markj
Differential Revision: https://reviews.freebsd.org/D53859
(cherry picked from commit e5d50a679aa1a72a7cbcb0281b9420aad4a7dc7a)