[SSAF][NFC] Rename operator new/delete pointers analysis to TypeConstrainedPointers (#208577)
There will be more such pointer entities that must retain their type
during the clang-reforge transformation. Since they are extracted and
processed similarly, combining them into a single analysis simplifies
maintenance. Therefore, we are using TypeConstrainedPointers as the
umbrella name.
[libcxx] Avoid including deprecated ClangTidyModuleRegistry.h (#208945)
Deprecated in 1bcf74006bcf528d14377173dba459759d35c961. Causes warnings
during compilation and will presumably become an error.
if_ovpn: Fix memory leak in VNET during unload
Unloading if_ovpn while it's in use by other vnets causes
memory leaks and panics.
Fix this by reverting VNET_SYSUNINIT and adjusting the SI_SUB
initialization order.
Reviewed by: markj
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D54175
(cherry picked from commit bf142ea4760bd4391092d9cc0038a0870cf7e0b2)
x11-toolkits/aquamarine: fix build on armv7
Same patch as on i386.
Approved by: portmgr (build fix blanket)
MFH: 2026Q3
(cherry picked from commit 31f505757e0feee9ea3f50053e7f86f92058f5aa)
emulators/fab-agon-emulator: Emulator of the Agon Light Computer
An emulator of the Agon Light, Olimex Agon Light 2, and Agon Console8 8-bit
computers.
The Agon Light is a modern, fully open-source, 8-bit microcomputer and
microcontroller in one small, low-cost board, designed by Bernado Kastrup aka
The Byte Attic. As a computer, it is a standalone device that requires no host
PC: it puts out its own video (VGA), audio (2 identical mono channels), accepts
a PS/2 keyboard and has its own mass-storage in the form of a micro-SD card. The
Olimex Agon Light 2 is a variation on the original Agon Light design.
The Agon Console8 is a version of the Agon Light that also includes two
Atari-compatible joystick ports, and a PS/2 mouse port, and a stylish case. It
was also designed by Bernado Kastrup aka The Byte Attic, and is manufactured by
Heber Ltd.
The Agon Light, Olimex Agon Light 2, and the Agon Console8 are all fully
compatible with each other. Software written for one will run on the other, and
[11 lines not shown]
net-im/gomuks: Add missing terminal binary and front/backend web parts
- Update to 26.06 (v0.2606.0)
- Build gomuks-terminal (TUI frontend). This version of the TUI is not
as feature rich as the previous version should be added back via
net-im/gomuks-legacy until feature complete.
- Build gomuks web frontend and backend via USES=electron:env to fetch
npm bits via upstream package.json adding @swc/core-freebsd-x64
- Take maintainership
Changelog: https://github.com/gomuks/gomuks/blob/main/CHANGELOG.md#v2606
PR: 292010
net-im/gomuks-legacy: Add net-im/gomuks-legacy from old net-im/gomuks
- net-im/gomuks introduces a new design with a web and less feature rich
termainl front web. Keep older version around until net-im/gomuks
TUI is feature complete as this version.
- Add net-im/gomuks from 47d564d873af^ base
- Appened -legacy to binary name
- Take maintainership
PR: 292371
devel/lndir: return to pool
By maintainer request.
Big thanks for your assistance in maintaining this port.
PR: 296576
Approved by: Carlos Santos <unixmania at gmail.com>
[AArch64] Lower fixed width bf16 fpext (#209194)
This was previously hitting an error with a illegal
FP_EXTEND_MERGE_PASSTHRU being created but not selectable. Split
bf16->f64 fpext into bf16->f32 and f32->f64 fpext as we do elsewhere
(the first step has no rounding).
The codegen for loads is pretty inefficient because the load gets
expanded / scalarized.
[libc][realpath] Validate path components.
This PR updates `realpath` to validate paths and return `ENOTDIR` or `ENOENT` according to https://pubs.opengroup.org/onlinepubs/9699919799/functions/realpath.html.
This PR also bumps the memory limit in `HermeticTestUtils.cpp`. The realpath unit tests allocate quite a few strings. Since memory in hermetic tests is never free'd, the unit test quickly reaches the limit.