diff options
author | Bruno Haible <bruno@clisp.org> | 2007-02-12 23:31:19 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:14:40 +0200 |
commit | 1257baa276e179b8d86a01c0f9914e03ab9c1205 (patch) | |
tree | b3bfb518e8083018e665d6468530335fecf674d6 /gettext-tools/m4 | |
parent | 52a086e4eaf35ea67eefa85e81de1ca0f87cc000 (diff) | |
download | external_gettext-1257baa276e179b8d86a01c0f9914e03ab9c1205.zip external_gettext-1257baa276e179b8d86a01c0f9914e03ab9c1205.tar.gz external_gettext-1257baa276e179b8d86a01c0f9914e03ab9c1205.tar.bz2 |
Fix m4 quoting bug.
Diffstat (limited to 'gettext-tools/m4')
-rw-r--r-- | gettext-tools/m4/ChangeLog | 6 | ||||
-rw-r--r-- | gettext-tools/m4/locale-fr.m4 | 6 | ||||
-rw-r--r-- | gettext-tools/m4/locale-ja.m4 | 6 |
3 files changed, 14 insertions, 4 deletions
diff --git a/gettext-tools/m4/ChangeLog b/gettext-tools/m4/ChangeLog index eb53dcc..655859c 100644 --- a/gettext-tools/m4/ChangeLog +++ b/gettext-tools/m4/ChangeLog @@ -1,3 +1,9 @@ +2007-02-12 Bruno Haible <bruno@clisp.org> + + * locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug. + * locale-ja.m4 (gt_LOCALE_JA): Likewise. + Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>. + 2006-12-10 Bruno Haible <bruno@clisp.org> * locale-ja.m4: New file. diff --git a/gettext-tools/m4/locale-fr.m4 b/gettext-tools/m4/locale-fr.m4 index 22864ce..62521a9 100644 --- a/gettext-tools/m4/locale-fr.m4 +++ b/gettext-tools/m4/locale-fr.m4 @@ -1,5 +1,5 @@ -# locale-fr.m4 serial 3 (gettext-0.15) -dnl Copyright (C) 2003, 2005-2006 Free Software Foundation, Inc. +# locale-fr.m4 serial 4 (gettext-0.16.2) +dnl Copyright (C) 2003, 2005-2007 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. @@ -13,10 +13,12 @@ AC_DEFUN([gt_LOCALE_FR], AC_REQUIRE([AM_LANGINFO_CODESET]) AC_CACHE_CHECK([for a traditional french locale], gt_cv_locale_fr, [ macosx= +changequote(,)dnl case "$host_os" in darwin[56]*) ;; darwin*) macosx=yes;; esac +changequote([,])dnl if test -n "$macosx"; then # On Darwin 7 (MacOS X), the libc supports some locales in non-UTF-8 # encodings, but the kernel does not support them. The documentation diff --git a/gettext-tools/m4/locale-ja.m4 b/gettext-tools/m4/locale-ja.m4 index cf065dd..4c81082 100644 --- a/gettext-tools/m4/locale-ja.m4 +++ b/gettext-tools/m4/locale-ja.m4 @@ -1,5 +1,5 @@ -# locale-ja.m4 serial 1 (gettext-0.16.2) -dnl Copyright (C) 2003, 2005-2006 Free Software Foundation, Inc. +# locale-ja.m4 serial 2 (gettext-0.16.2) +dnl Copyright (C) 2003, 2005-2007 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. @@ -13,10 +13,12 @@ AC_DEFUN([gt_LOCALE_JA], AC_REQUIRE([AM_LANGINFO_CODESET]) AC_CACHE_CHECK([for a traditional japanese locale], gt_cv_locale_ja, [ macosx= +changequote(,)dnl case "$host_os" in darwin[56]*) ;; darwin*) macosx=yes;; esac +changequote([,])dnl if test -n "$macosx"; then # On Darwin 7 (MacOS X), the libc supports some locales in non-UTF-8 # encodings, but the kernel does not support them. The documentation |