]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Update after gnulib changed.
authorBruno Haible <bruno@clisp.org>
Sat, 11 Dec 2010 01:11:31 +0000 (02:11 +0100)
committerBruno Haible <bruno@clisp.org>
Tue, 7 Jun 2011 21:38:50 +0000 (23:38 +0200)
12 files changed:
ChangeLog
autogen.sh
gettext-tools/po/ChangeLog
gettext-tools/po/POTFILES.in
gettext-tools/src/ChangeLog
gettext-tools/src/msgexec.c
gettext-tools/src/msginit.c
gettext-tools/src/read-csharp.c
gettext-tools/src/read-java.c
gettext-tools/src/read-resources.c
gettext-tools/src/read-tcl.c
gettext-tools/src/write-resources.c

index 376bb84a2ac3f8653db54ca8e8e19a1f7f7338ee..4bd04b270e97f0930f6accac98334c0e5240b37f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-12-10  Bruno Haible  <bruno@clisp.org>
+
+       Update after gnulib changed.
+       * autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC): Add spawn-pipe, remove
+       pipe.
+
 2010-09-24  Bruno Haible  <bruno@clisp.org>
 
        * m4/libtool.m4: Update from libtool-2.4, with modifications.
index 5b9a02e22dc5c3ef1c5e7bf555028c89f67d869d..00c1236f2d898ba05715aaee81b10c65139b211b 100755 (executable)
@@ -162,7 +162,6 @@ if ! $skip_gnulib; then
       open
       openmp
       ostream
-      pipe
       pipe-filter-ii
       progname
       propername
@@ -171,6 +170,7 @@ if ! $skip_gnulib; then
       sh-quote
       sigpipe
       sigprocmask
+      spawn-pipe
       stdbool
       stdio
       stdlib
index 714a45dba15a553237c09a48b2854e8889527c56..17c544905a9392e3fb7db437e6f1cc0185a5ef49 100644 (file)
@@ -1,3 +1,10 @@
+2011-06-02  Bruno Haible  <bruno@clisp.org>
+
+       Update after gnulib changed.
+       * POTFILES.in: Add gnulib-lib/copy-acl.c, gnulib-lib/pipe-filter-ii.c,
+       gnulib-lib/set-mode-acl.c, gnulib-lib/spawn-pipe.c. Remove
+       gnulib-lib/pipe.c.
+
 2011-06-02  Bruno Haible  <bruno@clisp.org>
 
        * POTFILES.in: Add src/format-c-parse.h.
index fc66f5da49e4a2fcd39003ad113dae01fabff551..d4700cab94f1534df6b3441abf0bbe268d862c89 100644 (file)
@@ -1,5 +1,5 @@
 # List of files which contain translatable strings.
-# Copyright (C) 1995, 1998, 2001-2006 Free Software Foundation, Inc.
+# Copyright (C) 1995, 1998, 2001-2006, 2011 Free Software Foundation, Inc.
 
 # For updating this file, look at the result of:
 #   $ LC_ALL=C grep -l '[^A-Za-z_]_(' {gnulib-lib,src,libgettextpo}/*.[chly]
@@ -8,6 +8,7 @@
 gnulib-lib/argmatch.c
 gnulib-lib/clean-temp.c
 gnulib-lib/closeout.c
+gnulib-lib/copy-acl.c
 gnulib-lib/copy-file.c
 gnulib-lib/csharpcomp.c
 gnulib-lib/csharpexec.c
@@ -18,8 +19,10 @@ gnulib-lib/javacomp.c
 gnulib-lib/javaexec.c
 gnulib-lib/javaversion.c
 gnulib-lib/obstack.c
-gnulib-lib/pipe.c
+gnulib-lib/pipe-filter-ii.c
 gnulib-lib/quotearg.c
+gnulib-lib/set-mode-acl.c
+gnulib-lib/spawn-pipe.c
 gnulib-lib/w32spawn.h
 gnulib-lib/wait-process.c
 gnulib-lib/xmalloc.c
index 1c2db66b4dcb1adae4eb5ebcb64ec9436be6f39b..1de8cc9686af7332db61d07b4e6cd261e9015d30 100644 (file)
@@ -1,3 +1,14 @@
+2011-06-02  Bruno Haible  <bruno@clisp.org>
+
+       Update after gnulib changed.
+       * msgexec.c: Include spawn-pipe.h instead of pipe.h.
+       * msginit.c: Likewise.
+       * read-csharp.c: Likewise.
+       * read-java.c: Likewise.
+       * read-resources.c: Likewise.
+       * read-tcl.c: Likewise.
+       * write-resources.c: Likewise.
+
 2010-11-20  Bruno Haible  <bruno@clisp.org>
 
        Port to uClibc.
index 9ae1e3c26e698d0bd95d4fda329014bb2ebe2d74..466d3f62573f4e41c77a85712894f080e19163a5 100644 (file)
@@ -1,5 +1,5 @@
 /* Pass translations to a subprocess.
-   Copyright (C) 2001-2010 Free Software Foundation, Inc.
+   Copyright (C) 2001-2011 Free Software Foundation, Inc.
    Written by Bruno Haible <haible@clisp.cons.org>, 2001.
 
    This program is free software: you can redistribute it and/or modify
@@ -48,7 +48,7 @@
 #include "xalloc.h"
 #include "full-write.h"
 #include "findprog.h"
-#include "pipe.h"
+#include "spawn-pipe.h"
 #include "wait-process.h"
 #include "xsetenv.h"
 #include "propername.h"
index a41107ab7e5720083c8e5efcf49dfaed41c640a6..218c278ae0953ba69fada49001437f799a0ba93f 100644 (file)
@@ -1,5 +1,5 @@
 /* Initializes a new PO file.
-   Copyright (C) 2001-2010 Free Software Foundation, Inc.
+   Copyright (C) 2001-2011 Free Software Foundation, Inc.
    Written by Bruno Haible <haible@clisp.cons.org>, 2001.
 
    This program is free software: you can redistribute it and/or modify
@@ -79,7 +79,7 @@
 #include "xvasprintf.h"
 #include "msgl-english.h"
 #include "plural-count.h"
-#include "pipe.h"
+#include "spawn-pipe.h"
 #include "wait-process.h"
 #include "xsetenv.h"
 #include "str-list.h"
index e06bcba50e4a15106be5d5618f88dca341116072..df5ca83dfbddde4f45ab0f21826c4ab8b61aab71 100644 (file)
@@ -1,5 +1,5 @@
 /* Reading C# satellite assemblies.
-   Copyright (C) 2003-2004, 2006-2008 Free Software Foundation, Inc.
+   Copyright (C) 2003-2004, 2006-2008, 2011 Free Software Foundation, Inc.
    Written by Bruno Haible <bruno@clisp.org>, 2003.
 
    This program is free software: you can redistribute it and/or modify
@@ -30,7 +30,7 @@
 #include "msgunfmt.h"
 #include "relocatable.h"
 #include "csharpexec.h"
-#include "pipe.h"
+#include "spawn-pipe.h"
 #include "wait-process.h"
 #include "read-catalog.h"
 #include "read-po.h"
index 68a759e0e620cda57d7000c17260466296215a8a..bc6f2f4c034ac066d04a87a6bb5713a60c6baba6 100644 (file)
@@ -1,5 +1,5 @@
 /* Reading Java ResourceBundles.
-   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+   Copyright (C) 2001-2003, 2006-2008, 2011 Free Software Foundation, Inc.
    Written by Bruno Haible <haible@clisp.cons.org>, 2001.
 
    This program is free software: you can redistribute it and/or modify
@@ -30,7 +30,7 @@
 #include "msgunfmt.h"
 #include "relocatable.h"
 #include "javaexec.h"
-#include "pipe.h"
+#include "spawn-pipe.h"
 #include "wait-process.h"
 #include "read-catalog.h"
 #include "read-po.h"
index 355f6296b88e810f363bdd861cc4f8eee1431bd7..a5eb8eb2a2bca04ec32f73baf48845732e645ce7 100644 (file)
@@ -1,5 +1,5 @@
 /* Reading C# .resources files.
-   Copyright (C) 2003, 2006-2008 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2006-2008, 2011 Free Software Foundation, Inc.
    Written by Bruno Haible <bruno@clisp.org>, 2003.
 
    This program is free software: you can redistribute it and/or modify
@@ -30,7 +30,7 @@
 #include "msgunfmt.h"
 #include "relocatable.h"
 #include "csharpexec.h"
-#include "pipe.h"
+#include "spawn-pipe.h"
 #include "wait-process.h"
 #include "read-catalog.h"
 #include "read-po.h"
index ac74d140744e5fa893ef109e599d08dda729711f..039dcfb1e50e99cf42887f39e05daf2b0434f3c4 100644 (file)
@@ -1,5 +1,5 @@
 /* Reading tcl/msgcat .msg files.
-   Copyright (C) 2002-2003, 2005-2008 Free Software Foundation, Inc.
+   Copyright (C) 2002-2003, 2005-2008, 2011 Free Software Foundation, Inc.
    Written by Bruno Haible <bruno@clisp.org>, 2002.
 
    This program is free software: you can redistribute it and/or modify
@@ -31,7 +31,7 @@
 #include "relocatable.h"
 #include "concat-filename.h"
 #include "sh-quote.h"
-#include "pipe.h"
+#include "spawn-pipe.h"
 #include "wait-process.h"
 #include "read-catalog.h"
 #include "read-po.h"
index 002ae1cd6537f742298f2d0289233f9a0770708a..6759c1b8fb130bb80c075ee5aefaffcb4a96316f 100644 (file)
@@ -1,5 +1,5 @@
 /* Writing C# .resources files.
-   Copyright (C) 2003, 2005, 2007-2009 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2005, 2007-2009, 2011 Free Software Foundation, Inc.
    Written by Bruno Haible <bruno@clisp.org>, 2003.
 
    This program is free software: you can redistribute it and/or modify
@@ -32,7 +32,7 @@
 #include "xerror.h"
 #include "relocatable.h"
 #include "csharpexec.h"
-#include "pipe.h"
+#include "spawn-pipe.h"
 #include "wait-process.h"
 #include "message.h"
 #include "msgfmt.h"