summaryrefslogtreecommitdiff
path: root/m4/aligned_alloc.m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2021-01-01 23:04:52 +0100
committerBruno Haible <bruno@clisp.org>2021-01-01 23:04:52 +0100
commit4653cdc3d3fab8bf344550b4eabec25cc7355d4f (patch)
tree2ab87fd67fa60cdba8fc67eebcef87e22712d70d /m4/aligned_alloc.m4
parentef4b4afaa5803aa04d28a96c639d2ab059f94da2 (diff)
downloadgnulib-4653cdc3d3fab8bf344550b4eabec25cc7355d4f.tar.gz
aligned_alloc: Fix test failure on OpenBSD 6.8.
* m4/aligned_alloc.m4 (gl_FUNC_ALIGNED_ALLOC): Require gl_USE_SYSTEM_EXTENSIONS.
Diffstat (limited to 'm4/aligned_alloc.m4')
-rw-r--r--m4/aligned_alloc.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/aligned_alloc.m4 b/m4/aligned_alloc.m4
index 54253edc47..d547c8eb2d 100644
--- a/m4/aligned_alloc.m4
+++ b/m4/aligned_alloc.m4
@@ -10,7 +10,7 @@ AC_DEFUN([gl_FUNC_ALIGNED_ALLOC],
AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
dnl Persuade glibc and OpenBSD <stdlib.h> to declare aligned_alloc().
- AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+ AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
AC_CHECK_FUNCS_ONCE([aligned_alloc])
if test $ac_cv_func_aligned_alloc = yes; then