From 3d9249fe2ce5226792b218ae2a1154bbc2108c8f Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Thu, 19 Jan 2023 21:55:45 +0100 Subject: [PATCH 15/15] Fix warnings for functions introduced in Android API level 34. * modules/execute-tests (configure.ac): Test for close_range using gl_CHECK_FUNCS_ANDROID instead of AC_CHECK_FUNCS. --- ChangeLog | 6 ++++++ modules/execute-tests | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b5181afca2..ddd9e2b1aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2023-01-19 Bruno Haible + + Fix warnings for functions introduced in Android API level 34. + * modules/execute-tests (configure.ac): Test for close_range using + gl_CHECK_FUNCS_ANDROID instead of AC_CHECK_FUNCS. + 2023-01-19 Bruno Haible Fix warnings for functions introduced in Android API level 30. diff --git a/modules/execute-tests b/modules/execute-tests index 14d48676c5..fc0816fd17 100644 --- a/modules/execute-tests +++ b/modules/execute-tests @@ -21,7 +21,7 @@ unistd configure.ac: dnl Test for Linux system call close_range(), declared in . -AC_CHECK_FUNCS([close_range]) +gl_CHECK_FUNCS_ANDROID([close_range], [[#include ]]) Makefile.am: TESTS += test-execute.sh -- 2.34.1