diff options
author | Bruno Haible <bruno@clisp.org> | 2009-01-14 23:51:24 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:15:57 +0200 |
commit | 28d8f1f0a3f889661ca217d7d88ebbef30371396 (patch) | |
tree | 7f236eb12741cd6f811f3d93e1806b1fefee5596 | |
parent | d239697467e750872c35b9b0dfe502cf1f9e1c45 (diff) | |
download | external_gettext-28d8f1f0a3f889661ca217d7d88ebbef30371396.zip external_gettext-28d8f1f0a3f889661ca217d7d88ebbef30371396.tar.gz external_gettext-28d8f1f0a3f889661ca217d7d88ebbef30371396.tar.bz2 |
More consistent m4 quoting.
-rw-r--r-- | gettext-runtime/m4/ChangeLog | 4 | ||||
-rw-r--r-- | gettext-runtime/m4/intl.m4 | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/gettext-runtime/m4/ChangeLog b/gettext-runtime/m4/ChangeLog index 11620c0..dfe660b 100644 --- a/gettext-runtime/m4/ChangeLog +++ b/gettext-runtime/m4/ChangeLog @@ -1,3 +1,7 @@ +2009-01-14 Bruno Haible <bruno@clisp.org> + + * intl.m4: More consistent m4 quoting. + 2009-01-14 Jim Meyering <meyering@redhat.com> * codeset.m4: More consistent m4 quoting. diff --git a/gettext-runtime/m4/intl.m4 b/gettext-runtime/m4/intl.m4 index eb903a5..05b4763 100644 --- a/gettext-runtime/m4/intl.m4 +++ b/gettext-runtime/m4/intl.m4 @@ -1,5 +1,5 @@ -# intl.m4 serial 10 (gettext-0.18) -dnl Copyright (C) 1995-2008 Free Software Foundation, Inc. +# intl.m4 serial 11 (gettext-0.18) +dnl Copyright (C) 1995-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, dnl with or without modifications, as long as this notice is preserved. @@ -15,9 +15,9 @@ dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper <drepper@cygnus.com>, 1995-2000. -dnl Bruno Haible <haible@clisp.cons.org>, 2000-2006. +dnl Bruno Haible <haible@clisp.cons.org>, 2000-2009. -AC_PREREQ(2.52) +AC_PREREQ([2.52]) dnl Checks for all prerequisites of the intl subdirectory, dnl except for INTL_LIBTOOL_SUFFIX_PREFIX (and possibly LIBTOOL), INTLOBJS, @@ -207,7 +207,7 @@ AC_DEFUN([gt_INTL_SUBDIR_CORE], AC_TRY_LINK( [int foo (int a) { a = __builtin_expect (a, 10); return a == 10 ? 0 : 1; }], [], - [AC_DEFINE([HAVE_BUILTIN_EXPECT], 1, + [AC_DEFINE([HAVE_BUILTIN_EXPECT], [1], [Define to 1 if the compiler understands __builtin_expect.])]) AC_CHECK_HEADERS([argz.h inttypes.h limits.h unistd.h sys/param.h]) @@ -237,7 +237,7 @@ AC_DEFUN([gt_INTL_SUBDIR_CORE], [gt_cv_nl_locale_name=no]) ]) if test $gt_cv_nl_locale_name = yes; then - AC_DEFINE([HAVE_NL_LOCALE_NAME], 1, + AC_DEFINE([HAVE_NL_LOCALE_NAME], [1], [Define if you have <langinfo.h> and it defines the NL_LOCALE_NAME macro if _GNU_SOURCE is defined.]) fi |