diff options
author | Bruno Haible <bruno@clisp.org> | 2005-07-18 11:28:21 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:12:38 +0200 |
commit | c53d435e9a616a28e3bb78dc371df940519c9b16 (patch) | |
tree | e1d9135dfefb486f0561c02eb6acf5cb10af2ca6 /gettext-tools | |
parent | 6c4eda658c18d792871d4a2f3d1a7ce94692be7b (diff) | |
download | external_gettext-c53d435e9a616a28e3bb78dc371df940519c9b16.zip external_gettext-c53d435e9a616a28e3bb78dc371df940519c9b16.tar.gz external_gettext-c53d435e9a616a28e3bb78dc371df940519c9b16.tar.bz2 |
Use lock.h.
Diffstat (limited to 'gettext-tools')
19 files changed, 59 insertions, 24 deletions
diff --git a/gettext-tools/doc/ChangeLog b/gettext-tools/doc/ChangeLog index 9ef2fb3..94a0eb9 100644 --- a/gettext-tools/doc/ChangeLog +++ b/gettext-tools/doc/ChangeLog @@ -1,3 +1,7 @@ +2005-07-16 Bruno Haible <bruno@clisp.org> + + * gettext.texi (aclocal): Add lock.m4 to file list. + 2005-07-01 Bruno Haible <bruno@clisp.org> * FAQ.html (windows_howto): Mention the three debugging runtime libs. diff --git a/gettext-tools/doc/gettext.texi b/gettext-tools/doc/gettext.texi index e0cbe1e..d2046a4 100644 --- a/gettext-tools/doc/gettext.texi +++ b/gettext-tools/doc/gettext.texi @@ -6655,7 +6655,7 @@ the simplest is to concatenate the files @file{codeset.m4}, @file{gettext.m4}, @file{glibc2.m4}, @file{glibc21.m4}, @file{iconv.m4}, @file{intdiv0.m4}, @file{intmax.m4}, @file{inttypes.m4}, @file{inttypes_h.m4}, @file{inttypes-pri.m4}, @file{isc-posix.m4}, @file{lcmessage.m4}, -@file{lib-ld.m4}, @file{lib-link.m4}, @file{lib-prefix.m4}, +@file{lib-ld.m4}, @file{lib-link.m4}, @file{lib-prefix.m4}, @file{lock.m4}, @file{longdouble.m4}, @file{longlong.m4}, @file{printf-posix.m4}, @file{progtest.m4}, @file{signed.m4}, @file{size_max.m4}, @file{stdint_h.m4}, @file{uintmax_t.m4}, @file{ulonglong.m4}, diff --git a/gettext-tools/examples/ChangeLog b/gettext-tools/examples/ChangeLog index 7433894..f4ff8e7 100644 --- a/gettext-tools/examples/ChangeLog +++ b/gettext-tools/examples/ChangeLog @@ -1,3 +1,18 @@ +2005-07-16 Bruno Haible <bruno@clisp.org> + + * hello-c/m4/Makefile.am (EXTRA_DIST): Add lock.m4. + * hello-c++/m4/Makefile.am (EXTRA_DIST): Likewise. + * hello-c++-gnome/m4/Makefile.am (EXTRA_DIST): Likewise. + * hello-objc/m4/Makefile.am (EXTRA_DIST): Likewise. + * hello-objc-gnome/m4/Makefile.am (EXTRA_DIST): Likewise. + * hello-c/autoclean.sh: Remove also m4/lock.m4. + * hello-c-gnome/autoclean.sh: Likewise. + * hello-c++/autoclean.sh: Likewise. + * hello-c++-gnome/autoclean.sh: Likewise. + * hello-c++-kde/autoclean.sh: Likewise. + * hello-objc/autoclean.sh: Likewise. + * hello-objc-gnome/autoclean.sh: Likewise. + 2005-05-01 Bruno Haible <bruno@clisp.org> * hello-csharp/configure.ac, hello-csharp-forms/configure.ac: Call diff --git a/gettext-tools/examples/hello-c++-gnome/autoclean.sh b/gettext-tools/examples/hello-c++-gnome/autoclean.sh index 5efa49d..97a6bdf 100755 --- a/gettext-tools/examples/hello-c++-gnome/autoclean.sh +++ b/gettext-tools/examples/hello-c++-gnome/autoclean.sh @@ -1,6 +1,6 @@ #!/bin/sh # Example for use of GNU gettext. -# Copyright (C) 2003-2004 Free Software Foundation, Inc. +# Copyright (C) 2003-2005 Free Software Foundation, Inc. # This file is in the public domain. # # Script for cleaning all autogenerated files. @@ -25,6 +25,7 @@ rm -f m4/lcmessage.m4 rm -f m4/lib-ld.m4 rm -f m4/lib-link.m4 rm -f m4/lib-prefix.m4 +rm -f m4/lock.m4 rm -f m4/longdouble.m4 rm -f m4/longlong.m4 rm -f m4/nls.m4 diff --git a/gettext-tools/examples/hello-c++-gnome/m4/Makefile.am b/gettext-tools/examples/hello-c++-gnome/m4/Makefile.am index 65d9c85..b9234cb 100644 --- a/gettext-tools/examples/hello-c++-gnome/m4/Makefile.am +++ b/gettext-tools/examples/hello-c++-gnome/m4/Makefile.am @@ -1,7 +1,7 @@ EXTRA_DIST = \ codeset.m4 gettext.m4 glibc2.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 \ inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 \ - lib-link.m4 lib-prefix.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 \ - ulonglong.m4 \ + lib-link.m4 lib-prefix.m4 lock.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 \ + uintmax_t.m4 ulonglong.m4 \ gnome.m4 gnome-gnorba-check.m4 gnome-orbit-check.m4 \ gtk.m4 gtk--.m4 diff --git a/gettext-tools/examples/hello-c++-kde/autoclean.sh b/gettext-tools/examples/hello-c++-kde/autoclean.sh index f63eea0..a1ac65d 100755 --- a/gettext-tools/examples/hello-c++-kde/autoclean.sh +++ b/gettext-tools/examples/hello-c++-kde/autoclean.sh @@ -1,6 +1,6 @@ #!/bin/sh # Example for use of GNU gettext. -# Copyright (C) 2003-2004 Free Software Foundation, Inc. +# Copyright (C) 2003-2005 Free Software Foundation, Inc. # This file is in the public domain. # # Script for cleaning all autogenerated files. @@ -31,6 +31,7 @@ rm -f m4/lcmessage.m4 rm -f m4/lib-ld.m4 rm -f m4/lib-link.m4 rm -f m4/lib-prefix.m4 +rm -f m4/lock.m4 rm -f m4/longdouble.m4 rm -f m4/longlong.m4 rm -f m4/nls.m4 diff --git a/gettext-tools/examples/hello-c++/autoclean.sh b/gettext-tools/examples/hello-c++/autoclean.sh index c91baf0..4ba50c6 100755 --- a/gettext-tools/examples/hello-c++/autoclean.sh +++ b/gettext-tools/examples/hello-c++/autoclean.sh @@ -1,6 +1,6 @@ #!/bin/sh # Example for use of GNU gettext. -# Copyright (C) 2003-2004 Free Software Foundation, Inc. +# Copyright (C) 2003-2005 Free Software Foundation, Inc. # This file is in the public domain. # # Script for cleaning all autogenerated files. @@ -28,6 +28,7 @@ rm -f m4/lcmessage.m4 rm -f m4/lib-ld.m4 rm -f m4/lib-link.m4 rm -f m4/lib-prefix.m4 +rm -f m4/lock.m4 rm -f m4/longdouble.m4 rm -f m4/longlong.m4 rm -f m4/nls.m4 diff --git a/gettext-tools/examples/hello-c++/m4/Makefile.am b/gettext-tools/examples/hello-c++/m4/Makefile.am index 17eb691..9b035f9 100644 --- a/gettext-tools/examples/hello-c++/m4/Makefile.am +++ b/gettext-tools/examples/hello-c++/m4/Makefile.am @@ -1,5 +1,5 @@ EXTRA_DIST = \ codeset.m4 gettext.m4 glibc2.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 \ inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 \ - lib-link.m4 lib-prefix.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 \ - ulonglong.m4 + lib-link.m4 lib-prefix.m4 lock.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 \ + uintmax_t.m4 ulonglong.m4 diff --git a/gettext-tools/examples/hello-c-gnome/autoclean.sh b/gettext-tools/examples/hello-c-gnome/autoclean.sh index 5efa49d..97a6bdf 100755 --- a/gettext-tools/examples/hello-c-gnome/autoclean.sh +++ b/gettext-tools/examples/hello-c-gnome/autoclean.sh @@ -1,6 +1,6 @@ #!/bin/sh # Example for use of GNU gettext. -# Copyright (C) 2003-2004 Free Software Foundation, Inc. +# Copyright (C) 2003-2005 Free Software Foundation, Inc. # This file is in the public domain. # # Script for cleaning all autogenerated files. @@ -25,6 +25,7 @@ rm -f m4/lcmessage.m4 rm -f m4/lib-ld.m4 rm -f m4/lib-link.m4 rm -f m4/lib-prefix.m4 +rm -f m4/lock.m4 rm -f m4/longdouble.m4 rm -f m4/longlong.m4 rm -f m4/nls.m4 diff --git a/gettext-tools/examples/hello-c/autoclean.sh b/gettext-tools/examples/hello-c/autoclean.sh index c91baf0..4ba50c6 100755 --- a/gettext-tools/examples/hello-c/autoclean.sh +++ b/gettext-tools/examples/hello-c/autoclean.sh @@ -1,6 +1,6 @@ #!/bin/sh # Example for use of GNU gettext. -# Copyright (C) 2003-2004 Free Software Foundation, Inc. +# Copyright (C) 2003-2005 Free Software Foundation, Inc. # This file is in the public domain. # # Script for cleaning all autogenerated files. @@ -28,6 +28,7 @@ rm -f m4/lcmessage.m4 rm -f m4/lib-ld.m4 rm -f m4/lib-link.m4 rm -f m4/lib-prefix.m4 +rm -f m4/lock.m4 rm -f m4/longdouble.m4 rm -f m4/longlong.m4 rm -f m4/nls.m4 diff --git a/gettext-tools/examples/hello-c/m4/Makefile.am b/gettext-tools/examples/hello-c/m4/Makefile.am index 17eb691..9b035f9 100644 --- a/gettext-tools/examples/hello-c/m4/Makefile.am +++ b/gettext-tools/examples/hello-c/m4/Makefile.am @@ -1,5 +1,5 @@ EXTRA_DIST = \ codeset.m4 gettext.m4 glibc2.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 \ inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 \ - lib-link.m4 lib-prefix.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 \ - ulonglong.m4 + lib-link.m4 lib-prefix.m4 lock.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 \ + uintmax_t.m4 ulonglong.m4 diff --git a/gettext-tools/examples/hello-objc-gnome/autoclean.sh b/gettext-tools/examples/hello-objc-gnome/autoclean.sh index 5efa49d..97a6bdf 100755 --- a/gettext-tools/examples/hello-objc-gnome/autoclean.sh +++ b/gettext-tools/examples/hello-objc-gnome/autoclean.sh @@ -1,6 +1,6 @@ #!/bin/sh # Example for use of GNU gettext. -# Copyright (C) 2003-2004 Free Software Foundation, Inc. +# Copyright (C) 2003-2005 Free Software Foundation, Inc. # This file is in the public domain. # # Script for cleaning all autogenerated files. @@ -25,6 +25,7 @@ rm -f m4/lcmessage.m4 rm -f m4/lib-ld.m4 rm -f m4/lib-link.m4 rm -f m4/lib-prefix.m4 +rm -f m4/lock.m4 rm -f m4/longdouble.m4 rm -f m4/longlong.m4 rm -f m4/nls.m4 diff --git a/gettext-tools/examples/hello-objc-gnome/m4/Makefile.am b/gettext-tools/examples/hello-objc-gnome/m4/Makefile.am index 52a0787..18662e8 100644 --- a/gettext-tools/examples/hello-objc-gnome/m4/Makefile.am +++ b/gettext-tools/examples/hello-objc-gnome/m4/Makefile.am @@ -1,6 +1,6 @@ EXTRA_DIST = \ codeset.m4 gettext.m4 glibc2.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 \ inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 \ - lib-link.m4 lib-prefix.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 \ - ulonglong.m4 \ + lib-link.m4 lib-prefix.m4 lock.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 \ + uintmax_t.m4 ulonglong.m4 \ gnome.m4 gnome-gnorba-check.m4 gnome-orbit-check.m4 diff --git a/gettext-tools/examples/hello-objc/autoclean.sh b/gettext-tools/examples/hello-objc/autoclean.sh index c91baf0..4ba50c6 100755 --- a/gettext-tools/examples/hello-objc/autoclean.sh +++ b/gettext-tools/examples/hello-objc/autoclean.sh @@ -1,6 +1,6 @@ #!/bin/sh # Example for use of GNU gettext. -# Copyright (C) 2003-2004 Free Software Foundation, Inc. +# Copyright (C) 2003-2005 Free Software Foundation, Inc. # This file is in the public domain. # # Script for cleaning all autogenerated files. @@ -28,6 +28,7 @@ rm -f m4/lcmessage.m4 rm -f m4/lib-ld.m4 rm -f m4/lib-link.m4 rm -f m4/lib-prefix.m4 +rm -f m4/lock.m4 rm -f m4/longdouble.m4 rm -f m4/longlong.m4 rm -f m4/nls.m4 diff --git a/gettext-tools/examples/hello-objc/m4/Makefile.am b/gettext-tools/examples/hello-objc/m4/Makefile.am index 17eb691..9b035f9 100644 --- a/gettext-tools/examples/hello-objc/m4/Makefile.am +++ b/gettext-tools/examples/hello-objc/m4/Makefile.am @@ -1,5 +1,5 @@ EXTRA_DIST = \ codeset.m4 gettext.m4 glibc2.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 \ inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 \ - lib-link.m4 lib-prefix.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 \ - ulonglong.m4 + lib-link.m4 lib-prefix.m4 lock.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 \ + uintmax_t.m4 ulonglong.m4 diff --git a/gettext-tools/m4/ChangeLog b/gettext-tools/m4/ChangeLog index c51cbc6..b005395 100644 --- a/gettext-tools/m4/ChangeLog +++ b/gettext-tools/m4/ChangeLog @@ -1,3 +1,7 @@ +2005-07-16 Bruno Haible <bruno@clisp.org> + + * Makefile.am (aclocal_DATA): Add lock.m4. + 2005-07-05 Bruno Haible <bruno@clisp.org> * relocatable.m4 (AC_RELOCATABLE): On mingw, simply set diff --git a/gettext-tools/m4/Makefile.am b/gettext-tools/m4/Makefile.am index 8fee92a..cca4321 100644 --- a/gettext-tools/m4/Makefile.am +++ b/gettext-tools/m4/Makefile.am @@ -19,6 +19,7 @@ aclocal_DATA = \ ../../gettext-runtime/m4/inttypes-pri.m4 \ ../../gettext-runtime/m4/isc-posix.m4 \ ../../gettext-runtime/m4/lcmessage.m4 \ + ../../gettext-runtime/m4/lock.m4 \ ../../gettext-runtime/m4/longdouble.m4 \ ../../gettext-runtime/m4/longlong.m4 \ ../../gettext-runtime/m4/nls.m4 \ diff --git a/gettext-tools/misc/ChangeLog b/gettext-tools/misc/ChangeLog index a5678aa..3922c5d 100644 --- a/gettext-tools/misc/ChangeLog +++ b/gettext-tools/misc/ChangeLog @@ -1,3 +1,7 @@ +2005-07-16 Bruno Haible <bruno@clisp.org> + + * gettextize.in (m4filelist): Add lock.m4. + 2005-07-09 Bruno Haible <bruno@clisp.org> * po-mode.el (po-validate): Require the 'compile' module before diff --git a/gettext-tools/misc/gettextize.in b/gettext-tools/misc/gettextize.in index 2c10dc7..0d79b69 100644 --- a/gettext-tools/misc/gettextize.in +++ b/gettext-tools/misc/gettextize.in @@ -719,14 +719,14 @@ $do_changelog && func_poChangeLog_finish m4filelist=' codeset.m4 gettext.m4 glibc2.m4 glibc21.m4 iconv.m4 intdiv0.m4 intmax.m4 inttypes.m4 inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 - lib-ld.m4 lib-link.m4 lib-prefix.m4 longdouble.m4 longlong.m4 nls.m4 po.m4 - printf-posix.m4 progtest.m4 signed.m4 size_max.m4 stdint_h.m4 uintmax_t.m4 - ulonglong.m4 wchar_t.m4 wint_t.m4 xsize.m4' + lib-ld.m4 lib-link.m4 lib-prefix.m4 lock.m4 longdouble.m4 longlong.m4 nls.m4 + po.m4 printf-posix.m4 progtest.m4 signed.m4 size_max.m4 stdint_h.m4 + uintmax_t.m4 ulonglong.m4 wchar_t.m4 wint_t.m4 xsize.m4' # We cannot omit codeset.m4, glibc2.m4, glibc21.m4, intdiv0.m4, intmax.m4, # inttypes.m4, inttypes_h.m4, inttypes-pri.m4, isc-posix.m4, lcmessage.m4, -# longdouble.m4, longlong.m4, nls.m4, po.m4, printf-posix.m4, signed.m4, -# size_max.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, wchar_t.m4, wint_t.m4, -# xsize.m4 +# lock.m4, longdouble.m4, longlong.m4, nls.m4, po.m4, printf-posix.m4, +# signed.m4, size_max.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, wchar_t.m4, +# wint_t.m4, xsize.m4 # if test -z "$intldir", otherwise "aclocal -I m4" might give an error. # (aclocal doesn't know which macros are really needed, it looks which macros # are potentially needed.) |