From: Bruno Haible Date: Mon, 9 Jan 2023 16:29:03 +0000 (+0100) Subject: reallocarray: Fix compilation error in C++ mode on Android. X-Git-Tag: v1.0~1874 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=41a04c574dd16daf54ddc23123dc38cecb0721e4;p=gnulib.git reallocarray: Fix compilation error in C++ mode on Android. * m4/reallocarray.m4 (gl_FUNC_REALLOCARRAY): Use gl_CHECK_FUNCS_ANDROID instead of AC_CHECK_FUNCS. --- diff --git a/ChangeLog b/ChangeLog index 219d6c16a6..12171e2fff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2023-01-09 Bruno Haible + + reallocarray: Fix compilation error in C++ mode on Android. + * m4/reallocarray.m4 (gl_FUNC_REALLOCARRAY): Use gl_CHECK_FUNCS_ANDROID + instead of AC_CHECK_FUNCS. + 2023-01-09 Bruno Haible getsubopt: Fix compilation error in C++ mode on Android. diff --git a/m4/reallocarray.m4 b/m4/reallocarray.m4 index 1607b7a9ed..4be7cd1be2 100644 --- a/m4/reallocarray.m4 +++ b/m4/reallocarray.m4 @@ -1,4 +1,4 @@ -# reallocarray.m4 serial 3 +# reallocarray.m4 serial 4 dnl Copyright (C) 2017-2023 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -11,7 +11,7 @@ AC_DEFUN([gl_FUNC_REALLOCARRAY], AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) AC_REQUIRE([gl_CHECK_MALLOC_PTRDIFF]) - AC_CHECK_FUNCS([reallocarray]) + gl_CHECK_FUNCS_ANDROID([reallocarray], [[#include ]]) if test "$ac_cv_func_reallocarray" = no; then HAVE_REALLOCARRAY=0 elif test "$gl_cv_malloc_ptrdiff" = no; then