summaryrefslogtreecommitdiff
path: root/m4/extensions.m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2008-04-15 01:52:03 +0200
committerBruno Haible <bruno@clisp.org>2008-04-15 01:52:03 +0200
commitb6d1202a37101d586919b49c8d0531b5bb56d4a3 (patch)
tree85144fc4f58bda212c57f632ee8d92bbd4f25dce /m4/extensions.m4
parentc966a526b7ffa96cfaa014a5301628cda815cd98 (diff)
downloadgnulib-b6d1202a37101d586919b49c8d0531b5bb56d4a3.tar.gz
Fix underquoting of AC_LANG_PROGRAM arguments.
Diffstat (limited to 'm4/extensions.m4')
-rw-r--r--m4/extensions.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/extensions.m4 b/m4/extensions.m4
index bcbb3ceee2..917af94805 100644
--- a/m4/extensions.m4
+++ b/m4/extensions.m4
@@ -1,7 +1,7 @@
# serial 5 -*- Autoconf -*-
# Enable extensions on systems that normally disable them.
-# Copyright (C) 2003, 2006, 2007 Free Software Foundation, Inc.
+# Copyright (C) 2003, 2006-2008 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
@@ -61,9 +61,9 @@ AC_BEFORE([$0], [AC_RUN_IFELSE])dnl
AC_CACHE_CHECK([whether it is safe to define __EXTENSIONS__],
[ac_cv_safe_to_define___extensions__],
[AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM([
+ [AC_LANG_PROGRAM([[
# define __EXTENSIONS__ 1
- AC_INCLUDES_DEFAULT])],
+ ]AC_INCLUDES_DEFAULT])],
[ac_cv_safe_to_define___extensions__=yes],
[ac_cv_safe_to_define___extensions__=no])])
test $ac_cv_safe_to_define___extensions__ = yes &&