https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=273476
--- Comment #7 from Vladimir Druzenko <v...@freebsd.org> --- (In reply to Martin Birgmeier from comment #6) After read commit https://invent.kde.org/multimedia/kmix/-/commit/dbf2ddad I created this "hack" and it fixed (partially?) the issue: --- CMakeLists.txt.orig +++ CMakeLists.txt @@ -126,7 +126,7 @@ if (${TEST_COMPILE_RESULT} AND (${TEST_RUN_RESULT} EQUAL 0)) message(STATUS "Detected OSS version ${TEST_RESULT_VERSION}") - if (${TEST_RESULT_VERSION} GREATER_EQUAL 0x040000) + if (${TEST_RESULT_VERSION} GREATER_EQUAL 0x050000) message(STATUS "Building with OSS 4 support") set(HAVE_OSS_4 true) add_definitions(-DHAVE_OSS_4) So it detects OSS4, but it isn't compatible with OSS in FreeBSD and fallback to OSS3 is a possible temporary workaround. -- You are receiving this mail because: You are the assignee for the bug.