[Midnightbsd-cvs] [MidnightBSD/mports] c6d788: audio/csound: Fix build failure with math/gmm++ >=...
Lucas Holt
noreply at github.com
Fri May 29 11:50:10 EDT 2026
Branch: refs/heads/master
Home: https://github.com/MidnightBSD/mports
Commit: c6d7885e50f02a37053ee17d4c9bfab0ff133603
https://github.com/MidnightBSD/mports/commit/c6d7885e50f02a37053ee17d4c9bfab0ff133603
Author: Lucas Holt <luke at foolishgames.com>
Date: 2026-05-29 (Fri, 29 May 2026)
Changed paths:
M audio/csound/Makefile
Log Message:
-----------
audio/csound: Fix build failure with math/gmm++ >= 5.4.3 (#598)
Fixes the build failure for audio/csound on MidnightBSD due to a
compatibility issue with newer versions of math/gmm++.
In math/gmm++ >= 5.4.3, gmm::lapack_ipvt is defined as a std::vector,
which does not have a .get() member. The previous workaround flag
LINALG_CXXFLAGS=-DGMM_VERSION=x forced gmm++ to use deprecated code
paths that called .get(), leading to compilation errors in
Opcodes/linear_algebra.cpp:
```
no member named 'get' in 'std::vector<unsigned long>'
```
Removing this workaround flag allows gmm++ to use the correct code paths
and compiles successfully.
AI-Assisted-by: Antigravity <antigravity-cli at google.com>
Signed-off-by: Lucas Holt <luke at foolishgames.com>
To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/mports/settings/notifications
More information about the Midnightbsd-cvs
mailing list