Control: tags -1 = patch On Fri, Mar 14, 2025 at 09:10:27PM +0200, Adrian Bunk wrote: > Source: ncmpcpp > Version: 0.9.2-2.2 > Severity: important > Tags: ftbfs > > https://buildd.debian.org/status/logs.php?pkg=ncmpcpp&ver=0.9.2-2.2%2Bb1 > > ... > checking for icu-i18n icu-uc... yes > checking whether boost.regex was compiled with ICU support... no > ... > > > A minimal fix (backported from 0.10) is attached.
This time with patch (and correct tag). cu Adrian
Description: Fix building with ICU 76 Author: Adrian Bunk <b...@debian.org> Origin: backport, https://github.com/ncmpcpp/ncmpcpp/commit/ba484cff1e4ac3225b6eb87dc94272daca88e613 --- ncmpcpp-0.9.2.orig/configure.ac +++ ncmpcpp-0.9.2/configure.ac @@ -73,12 +73,12 @@ CXXFLAGS="$old_CXXFLAGS $fast_math" # -std=c++14 AC_MSG_CHECKING([whether compiler supports -std=c++14]) old_CXXFLAGS="$CXXFLAGS" -CXXFLAGS="-std=c++14" +CXXFLAGS="-std=c++17" AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ ]])], AC_MSG_RESULT([yes]) - std_cpp14="-std=c++14", + std_cpp14="-std=c++17", AC_MSG_RESULT([no]) - AC_MSG_ERROR([[Your compiler doesn't seem to support C++14, please upgrade (GCC >= 5)]]) + AC_MSG_ERROR([[Your compiler doesn't seem to support C++17, please upgrade]]) ) CXXFLAGS="$old_CXXFLAGS $std_cpp14"