math/openblas: fix build on i386
Due to a miscompilation, a stack variable accessed by the MOVAPS
instruction ends up being misaligned. With MOVAPS requiring memory
operands to be aligned, this causes a bus error on i386. The underlying
cause could be that gfortran assumes a 16-byte aligned stack as is the
case on current i386 Linux, while we have not done the same ABI change.
I have worked around the problem by passing -mpreferred-stack-boundary=2
to disable assumptions about stack alignment, though ultimately this
will need to be fixed in the gcc and gfortran ports.
PR: 293087
MFH: 2026Q3
Reported by: salvadore
See also: https://github.com/OpenMathLib/OpenBLAS/issues/5905
Approved by: portmgr (build fix blanket)
(cherry picked from commit 48bc034e072df81878dee9fc7efb3b1eb6f3e2e8)
net/gnunet: fix build on armv7
We don't have libatomic and don't need it in any case.
Approved by: portmgr (build fix blanket)
MFH: 2026Q3
(cherry picked from commit 6d0770557bb5d784a9ac3fa113b91dfd56d0e73e)
comms/inspectrum: fix build on 32 bit platforms
On such platforms size_t is int, not long, causing confusion in
std::max().
Approved by: portmgr (build fix blanket)
MFH: 2026Q3
(cherry picked from commit 22693405a70f71c8c494a05c340b26cb1006a7cb)
math/openblas: fix build on i386
Due to a miscompilation, a stack variable accessed by the MOVAPS
instruction ends up being misaligned. With MOVAPS requiring memory
operands to be aligned, this causes a bus error on i386. The underlying
cause could be that gfortran assumes a 16-byte aligned stack as is the
case on current i386 Linux, while we have not done the same ABI change.
I have worked around the problem by passing -mpreferred-stack-boundary=2
to disable assumptions about stack alignment, though ultimately this
will need to be fixed in the gcc and gfortran ports.
PR: 293087
MFH: 2026Q3
Reported by: salvadore
See also: https://github.com/OpenMathLib/OpenBLAS/issues/5905
Approved by: portmgr (build fix blanket)
devel/matreshka: Sync with main; improve Port
Update and improve:
* Drop un-testable Oracle DB support
* Patch build to increase verbosity
* Patch and modify the Port to reduce update burden with ${PLIST_SUB}
support, and abstracting the shared object, and GNAT runtime
version information in pkg-plist
* Remove all hard-coded version information, freeing the library
from the current restriction of GNAT-12
* Set ${MAINTAINER} to ada at FreeBSD.org.
* Sync with Upstream main
PR: 296453
games/OpenLoco: Open source re-implementation of Chris Sawyer's Locomotion
OpenLoco is an open-source re-implementation of Chris Sawyer's
Locomotion (CSL), the spiritual successor to Transport Tycoon. OpenLoco
aims to improve the game similar to how OpenTTD improved Transport
Tycoon, and OpenRCT2 improved RollerCoaster Tycoon.
CSL was originally written in x86 assembly, building on top of the
RollerCoaster Tycoon 2 engine. However, the engine has changed
substantially enough that OpenLoco currently does not share its codebase
with OpenRCT2.
As of December 2025, we have completed reimplementing the game in C++.
It is now our goal to get a solid multiplayer experience working in
OpenLoco. It is also our goal to increase the map and vehicle limits.
However, until creating a new save format (NSF), we are bound to the
limits imposed by the CSL save format (SV5/SC5).
WWW: https://openloco.io/
emulators/fab-agon-emulator: clean up, fix on 16-CURRENT
- CARGO_CARGO_RUN includes cd ${WRKSRC}, and running it under
SETENVI means that /usr/bin/cd was executed, which clearly
didn't do any good.
- remove double dependency on sdl3
- spell product name right in COMMENT
- reflow to 80 columns
PR: 296905
devel/sfl-library: C++ datastructure library
This is a header-only C++11 library that provides several new or
lesser-known containers, most of which can be used in C++20 constant
expressions.
Sequence containers: vector, devector, small_vector, static_vector,
compact_vector, segmented_vector, segmented_devector.
Associative containers based on red-black trees: map, set, multimap,
multiset, small_map, small_set, small_multimap, small_multiset,
static_map, static_set, static_multimap, static_multiset.
Unordered associative containers based on hash tables with separate
chaining: unordered_map, unordered_set, unordered_multimap,
unordered_multiset, small_unordered_map, small_unordered_set
small_unordered_multimap, small_unordered_multiset,
static_unordered_map, static_unordered_set, static_unordered_multimap,
static_unordered_multiset.
[13 lines not shown]
databases/ladybug: fix build on armv7
Same polyfill as the one for textproc/krep.
See also: a002d848b52bda537a6d0a90da4616001303f80b
Approved by: portmgr (build fix blanket)
MFH: 2026Q3
comms/inspectrum: fix build on 32 bit platforms
On such platforms size_t is int, not long, causing confusion in
std::max().
Approved by: portmgr (build fix blanket)
MFH: 2026Q3
mail/maildrop: Update to 4.0.4
- Update includes fix for potential crash on messages with certain
subjects
MFH: 2026Q3
(cherry picked from commit 691567c672877b073795a0cc3bcaef567823b6e8)