summaryrefslogtreecommitdiff
path: root/m4/mempcpy.m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2023-01-22 13:01:14 +0100
committerBruno Haible <bruno@clisp.org>2023-01-22 15:56:53 +0100
commit9746be9cd8ccaebc0e1052c19da8d5644766caad (patch)
tree32a7fadb3a38ae8a4e76b3a544f389301171f81f /m4/mempcpy.m4
parent6f43ec52f0b6c548a974ec46244292106fc48bfe (diff)
downloadgnulib-9746be9cd8ccaebc0e1052c19da8d5644766caad.tar.gz
Resolve conflicts for functions introduced in Android API level 23.
* lib/string.in.h (mempcpy): Consider REPLACE_MEMPCPY. Disable _GL_CXXALIASWARN invocation on non-glibc systems. * m4/string_h.m4 (gl_STRING_H_DEFAULTS): Initialize REPLACE_MEMPCPY. * modules/string (Makefile.am): Substitute REPLACE_MEMPCPY. * m4/mempcpy.m4 (gl_FUNC_STPCPY): Conditionally set REPLACE_MEMPCPY. * modules/mempcpy (configure.ac): Consider REPLACE_MEMPCPY.
Diffstat (limited to 'm4/mempcpy.m4')
-rw-r--r--m4/mempcpy.m45
1 files changed, 4 insertions, 1 deletions
diff --git a/m4/mempcpy.m4 b/m4/mempcpy.m4
index d663b67174..612b77b3c1 100644
--- a/m4/mempcpy.m4
+++ b/m4/mempcpy.m4
@@ -1,4 +1,4 @@
-# mempcpy.m4 serial 13
+# mempcpy.m4 serial 14
dnl Copyright (C) 2003-2004, 2006-2007, 2009-2023 Free Software Foundation,
dnl Inc.
dnl This file is free software; the Free Software Foundation
@@ -17,6 +17,9 @@ AC_DEFUN([gl_FUNC_MEMPCPY],
gl_CHECK_FUNCS_ANDROID([mempcpy], [[#include <string.h>]])
if test $ac_cv_func_mempcpy = no; then
HAVE_MEMPCPY=0
+ case "$gl_cv_onwards_func_mempcpy" in
+ future*) REPLACE_MEMPCPY=1 ;;
+ esac
fi
])