From b7c31b268151100498c4c6b48b2a5f6e318d7df9 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 10 Jul 2022 17:30:28 +0200 Subject: [PATCH] iconv: Define a summary result. Reported by Simon Josefsson in . * m4/iconv.m4 (AM_ICONV): Define also am_cv_func_iconv_summary. --- ChangeLog | 7 +++++++ m4/iconv.m4 | 18 +++++++++++++++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 21c9451313..adbed1d871 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2022-07-10 Bruno Haible + + iconv: Define a summary result. + Reported by Simon Josefsson in + . + * m4/iconv.m4 (AM_ICONV): Define also am_cv_func_iconv_summary. + 2022-07-10 Bruno Haible iconv: Remove obsolete comment. diff --git a/m4/iconv.m4 b/m4/iconv.m4 index 6f1ae2b13d..2065c9772a 100644 --- a/m4/iconv.m4 +++ b/m4/iconv.m4 @@ -1,4 +1,4 @@ -# iconv.m4 serial 25 +# iconv.m4 serial 26 dnl Copyright (C) 2000-2002, 2007-2014, 2016-2022 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation @@ -274,4 +274,20 @@ size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, si ICONV_CONST="const" fi ]) + + dnl A summary result, for those packages which want to print a summary at the + dnl end of the configuration. + if test "$am_func_iconv" = yes; then + if test -n "$LIBICONV"; then + am_cv_func_iconv_summary='yes, in libiconv' + else + am_cv_func_iconv_summary='yes, in libc' + fi + else + if test "$am_cv_func_iconv" = yes; then + am_cv_func_iconv_summary='not working, consider installing GNU libiconv' + else + am_cv_func_iconv_summary='no, consider installing GNU libiconv' + fi + fi ]) -- 2.39.5