openmp.m4: revert quote-adding change, for portability to older autoconf
authorJim Meyering <meyering@redhat.com>
Thu, 15 Jan 2009 12:08:05 +0000 (13:08 +0100)
committerJim Meyering <meyering@redhat.com>
Thu, 15 Jan 2009 12:08:05 +0000 (13:08 +0100)
* m4/openmp.m4: Remove the quotes added on 2009-01-14.
This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
Simon Josefsson noticed the problem when using autoconf-2.61.

ChangeLog
m4/openmp.m4

index a905ee3..fb11852 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-01-15  Jim Meyering  <meyering@redhat.com>
+
+       openmp.m4: revert quote-adding change, for portability to older autoconf
+       * m4/openmp.m4: Remove the quotes added on 2009-01-14.
+       This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
+       Simon Josefsson noticed the problem when using autoconf-2.61.
+
 2009-01-15  Bruno Haible  <bruno@clisp.org>
 
        * tests/test-fflush2.sh: Invoke test-fflush2 twice.
index 8c9c06f..116e6ce 100644 (file)
@@ -1,4 +1,4 @@
-# openmp.m4 serial 6
+# openmp.m4 serial 7
 dnl Copyright (C) 2006-2009 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -15,11 +15,11 @@ m4_ifdef([AC_OPENMP], [], [
 # Expands to some language dependent source code for testing the presence of
 # OpenMP.
 AC_DEFUN([_AC_LANG_OPENMP],
-[_AC_LANG_DISPATCH([$0], [_AC_LANG], [$@])])
+[_AC_LANG_DISPATCH([$0], _AC_LANG, $@)])
 
 # _AC_LANG_OPENMP(C)
 # ------------------
-m4_define([_AC_LANG_OPENMP([C])],
+m4_define([_AC_LANG_OPENMP(C)],
 [
 #ifndef _OPENMP
  choke me
@@ -30,16 +30,16 @@ int main () { return omp_get_num_threads (); }
 
 # _AC_LANG_OPENMP(C++)
 # --------------------
-m4_copy([_AC_LANG_OPENMP([C])], [_AC_LANG_OPENMP([C++])])
+m4_copy([_AC_LANG_OPENMP(C)], [_AC_LANG_OPENMP(C++)])
 
 # _AC_LANG_OPENMP(Fortran 77)
 # ---------------------------
-m4_define([_AC_LANG_OPENMP([Fortran 77])],
+m4_define([_AC_LANG_OPENMP(Fortran 77)],
 [AC_LANG_FUNC_LINK_TRY([omp_get_num_threads])])
 
 # _AC_LANG_OPENMP(Fortran)
 # ---------------------------
-m4_copy([_AC_LANG_OPENMP([Fortran 77])], [_AC_LANG_OPENMP([Fortran])])
+m4_copy([_AC_LANG_OPENMP(Fortran 77)], [_AC_LANG_OPENMP(Fortran)])
 
 # AC_OPENMP
 # ---------