summaryrefslogtreecommitdiff
path: root/m4/posix_openpt.m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2023-01-22 11:48:22 +0100
committerBruno Haible <bruno@clisp.org>2023-01-22 15:56:27 +0100
commitdaa77bf4aa393cbdec3a5a81ae3dc6923a981f6d (patch)
tree4d2cc0e608eb50b6d63bd5aa05adf8a2f843ce25 /m4/posix_openpt.m4
parent8c15a911325fd0166dbeb2f30b78ac02a71fb304 (diff)
downloadgnulib-daa77bf4aa393cbdec3a5a81ae3dc6923a981f6d.tar.gz
Resolve conflicts for functions introduced in Android API level 21.
* lib/stdlib.in.h (_Exit): Consider REPLACE__EXIT. Disable _GL_CXXALIASWARN invocation on non-glibc systems. (getprogname): Consider REPLACE_GETPROGNAME. Disable _GL_CXXALIASWARN invocation on non-glibc systems. (posix_openpt): Consider REPLACE_POSIX_OPENPT. Disable _GL_CXXALIASWARN invocation on non-glibc systems. * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize REPLACE__EXIT, REPLACE_GETPROGNAME, REPLACE_POSIX_OPENPT. * modules/stdlib (Makefile.am): Substitute REPLACE__EXIT, REPLACE_GETPROGNAME, REPLACE_POSIX_OPENPT. * m4/_Exit.m4 (gl_FUNC__EXIT): Conditionally set REPLACE__EXIT. * modules/_Exit (configure.ac): Consider REPLACE__EXIT. * m4/getprogname.m4 (gl_FUNC_GETPROGNAME): Conditionally set REPLACE_GETPROGNAME. * modules/getprogname (configure.ac): Consider REPLACE_GETPROGNAME. * m4/posix_openpt.m4 (gl_FUNC_POSIX_OPENPT): Conditionally set REPLACE_POSIX_OPENPT. * modules/posix_openpt (configure.ac): Consider REPLACE_POSIX_OPENPT.
Diffstat (limited to 'm4/posix_openpt.m4')
-rw-r--r--m4/posix_openpt.m45
1 files changed, 4 insertions, 1 deletions
diff --git a/m4/posix_openpt.m4 b/m4/posix_openpt.m4
index f5912a12bb..7aaa495b63 100644
--- a/m4/posix_openpt.m4
+++ b/m4/posix_openpt.m4
@@ -1,4 +1,4 @@
-# posix_openpt.m4 serial 3
+# posix_openpt.m4 serial 4
dnl Copyright (C) 2011-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,
@@ -15,5 +15,8 @@ AC_DEFUN([gl_FUNC_POSIX_OPENPT],
if test $ac_cv_func_posix_openpt != yes; then
dnl The system does not have posix_openpt.
HAVE_POSIX_OPENPT=0
+ case "$gl_cv_onwards_func_posix_openpt" in
+ future*) REPLACE_POSIX_OPENPT=1 ;;
+ esac
fi
])