summaryrefslogtreecommitdiff
path: root/m4/stdint.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/stdint.m4
parentc966a526b7ffa96cfaa014a5301628cda815cd98 (diff)
downloadgnulib-b6d1202a37101d586919b49c8d0531b5bb56d4a3.tar.gz
Fix underquoting of AC_LANG_PROGRAM arguments.
Diffstat (limited to 'm4/stdint.m4')
-rw-r--r--m4/stdint.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/stdint.m4 b/m4/stdint.m4
index 9b5001a52d..b255692567 100644
--- a/m4/stdint.m4
+++ b/m4/stdint.m4
@@ -1,4 +1,4 @@
-# stdint.m4 serial 30
+# stdint.m4 serial 31
dnl Copyright (C) 2001-2008 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -337,9 +337,9 @@ AC_DEFUN([gl_INTEGER_TYPE_SUFFIX],
ui64)gltype1='unsigned __int64';;
esac
AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM([$2
+ [AC_LANG_PROGRAM([$2[
extern $gltype foo;
- extern $gltype1 foo;])],
+ extern $gltype1 foo;]])],
[eval gl_cv_type_${gltype}_suffix=\$glsuf])
eval result=\$gl_cv_type_${gltype}_suffix
test "$result" != no && break