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=dd4d53d9784b33976ea1177e91ce5ceb896f1d63

commit dd4d53d9784b33976ea1177e91ce5ceb896f1d63
Author: Guillem Jover <[email protected]>
AuthorDate: Thu Jul 25 05:04:13 2024 +0200

    build: Simplify C standard check output
    
    Do not print that we are checking for features or that we are missing
    extensions. Just state that C standard we are looking for.
---
 m4/dpkg-compiler.m4 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/m4/dpkg-compiler.m4 b/m4/dpkg-compiler.m4
index 65ee605bc..cb1063d63 100644
--- a/m4/dpkg-compiler.m4
+++ b/m4/dpkg-compiler.m4
@@ -265,11 +265,11 @@ AC_DEFUN([DPKG_TRY_C99], [
 # ----------
 # Check whether the compiler can do C99
 AC_DEFUN([DPKG_C_C99], [
-  AC_CACHE_CHECK([whether $CC supports C99 features], [dpkg_cv_c99], [
+  AC_CACHE_CHECK([whether $CC supports C99], [dpkg_cv_c99], [
     DPKG_TRY_C99([dpkg_cv_c99=yes], [dpkg_cv_c99=no])
   ])
   AS_IF([test "x$dpkg_cv_c99" != "xyes"], [
-    AC_CACHE_CHECK([for $CC option to accept C99 features], [dpkg_cv_c99_arg], 
[
+    AC_CACHE_CHECK([for $CC option to accept C99], [dpkg_cv_c99_arg], [
       dpkg_cv_c99_arg=none
       dpkg_save_CC="$CC"
       for arg in "-std=gnu99" "-std=c99" "-c99" "-AC99" "-xc99=all" \
@@ -290,7 +290,7 @@ AC_DEFUN([DPKG_C_C99], [
     ])
   ])
   AS_IF([test "x$dpkg_cv_c99" != "xyes"], [
-    AC_MSG_ERROR([unsupported required C99 extensions])
+    AC_MSG_ERROR([unsupported required C99])
   ])
 ])# DPKG_C_C99
 

-- 
Dpkg.Org's dpkg

Reply via email to