summaryrefslogtreecommitdiff
path: root/m4/fpending.m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2020-08-16 12:28:42 +0200
committerBruno Haible <bruno@clisp.org>2020-08-16 12:28:42 +0200
commit85d1d48f6fa89de6a5de9e7794bda3255f0f32aa (patch)
tree9e4af9f6f8e89caaa12050547c9e2485a5504c6e /m4/fpending.m4
parent15ce5a630b02af7c7104650dfb18e443b4111564 (diff)
downloadgnulib-85d1d48f6fa89de6a5de9e7794bda3255f0f32aa.tar.gz
Fix quoting of AC_LANG_PROGRAM arguments.
* m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Quote the AC_LANG_PROGRAM arguments through [[...]]. * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise. * m4/fpurge.m4 (gl_FUNC_FPURGE): Likewise. * m4/fseeko.m4 (gl_FUNC_FSEEKO): Likewise. * m4/ld-output-def.m4 (gl_LD_OUTPUT_DEF): Likewise. * m4/ld-version-script.m4 (gl_LD_VERSION_SCRIPT): Likewise. * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise. * m4/mountlist.m4 (gl_MOUNTLIST): Likewise. * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Likewise. * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Likewise. * m4/warn-on-use.m4 (gl_WARN_ON_USE_PREPARE): Likewise. * m4/warnings.m4 (gl_COMPILER_OPTION_IF): Likewise. * m4/wcstok.m4 (gl_FUNC_WCSTOK): Likewise. * m4/wctype_h.m4 (gl_WCTYPE_H): Likewise.
Diffstat (limited to 'm4/fpending.m4')
-rw-r--r--m4/fpending.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/fpending.m4 b/m4/fpending.m4
index ea9725e489..edabcec5f0 100644
--- a/m4/fpending.m4
+++ b/m4/fpending.m4
@@ -1,4 +1,4 @@
-# serial 22
+# serial 23
# Copyright (C) 2000-2001, 2004-2020 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
@@ -25,7 +25,7 @@ AC_DEFUN([gl_FUNC_FPENDING],
AC_CACHE_CHECK([for __fpending], [gl_cv_func___fpending],
[
AC_LINK_IFELSE(
- [AC_LANG_PROGRAM([$fp_headers],
+ [AC_LANG_PROGRAM([[$fp_headers]],
[[return ! __fpending (stdin);]])],
[gl_cv_func___fpending=yes],
[gl_cv_func___fpending=no])