This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=2ef49c60a8425e4078528ffcfda1b296124cd6c9 commit 2ef49c60a8425e4078528ffcfda1b296124cd6c9 Author: Guillem Jover <[email protected]> AuthorDate: Sun Jul 28 05:30:35 2024 +0200 build: Make C++ baseline version a hard requirement --- m4/dpkg-compiler.m4 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/m4/dpkg-compiler.m4 b/m4/dpkg-compiler.m4 index cb1063d63..76c332a05 100644 --- a/m4/dpkg-compiler.m4 +++ b/m4/dpkg-compiler.m4 @@ -339,4 +339,7 @@ AC_DEFUN([DPKG_CXX_CXX11], [ dpkg_cv_cxx11=yes ]) ]) + AS_IF([test "x$dpkg_cv_cxx11" != "xyes"], [ + AC_MSG_ERROR([unsupported required C++11]) + ]) ])# DPKG_CXX_CXX11 -- Dpkg.Org's dpkg

