bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

sync from gnulib to coreutils


From: Paul Eggert
Subject: sync from gnulib to coreutils
Date: Fri, 21 Jan 2005 22:28:46 -0800
User-agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (gnu/linux)

I installed this patch to sync minor gnulib changes into coreutils:

2005-01-21  Paul Eggert  <address@hidden>

        Sync from gnulib.

        * config/config.sub: Sync from gnulib.
        * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
        not needed.  This removes a dependency on the gettext module.
        [defined _LIBC]: Do not include <libintl.h>; not needed.

2005-01-21  Bruno Haible  <address@hidden>

        * m4/allocsa.m4, m4/chdir-long.m4, m4/chown.m4, m4/codeset.m4,
        m4/eealloc.m4, m4/eoverflow.m4, m4/glibc21.m4, m4/iconv.m4,
        m4/intmax_t.m4, m4/inttypes_h.m4, m4/lchown.m4, m4/lib-ld.m4,
        m4/lib-link.m4, m4/lib-prefix.m4, m4/longdouble.m4,
        m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4,
        m4/mempcpy.m4, m4/openat.m4, m4/readlink.m4, m4/safe-read.m4,
        m4/safe-write.m4, m4/setenv.m4, m4/signed.m4, m4/ssize_t.m4,
        m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/strcase.m4,
        m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4, m4/uintmax_t.m4,
        m4/ullong_max.m4, m4/ulonglong.m4, m4/unicodeio.m4, m4/utimes.m4,
        m4/vasnprintf.m4, m4/vasprintf.m4, m4/wchar_t.m4, m4/wint_t.m4:
        Use an all-permissive copyright notice, recommended by RMS.

Index: config/config.sub
===================================================================
RCS file: /fetish/cu/config/config.sub,v
retrieving revision 1.37
diff -p -u -r1.37 config.sub
--- config/config.sub   3 Dec 2004 07:10:19 -0000       1.37
+++ config/config.sub   22 Jan 2005 06:16:55 -0000
@@ -237,7 +237,7 @@ case $basic_machine in
        | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
        | i370 | i860 | i960 | ia64 \
        | ip2k | iq2000 \
-       | m32r | m32rle | m68000 | m68k | m88k | mcore \
+       | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \
        | mips | mipsbe | mipseb | mipsel | mipsle \
        | mips16 \
        | mips64 | mips64el \
@@ -310,7 +310,7 @@ case $basic_machine in
        | ip2k-* | iq2000-* \
        | m32r-* | m32rle-* \
        | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
-       | m88110-* | m88k-* | mcore-* \
+       | m88110-* | m88k-* | maxq-* | mcore-* \
        | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
        | mips16-* \
        | mips64-* | mips64el-* \
Index: lib/error.c
===================================================================
RCS file: /fetish/cu/lib/error.c,v
retrieving revision 1.35
diff -p -u -r1.35 error.c
--- lib/error.c 5 Oct 2004 06:05:20 -0000       1.35
+++ lib/error.c 22 Jan 2005 06:16:56 -0000
@@ -1,5 +1,5 @@
 /* Error handler for noninteractive utilities
-   Copyright (C) 1990-1998, 2000-2002, 2003, 2004 Free Software Foundation, 
Inc.
+   Copyright (C) 1990-1998, 2000-2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    This program is free software; you can redistribute it and/or modify
@@ -29,9 +29,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-#ifdef _LIBC
-# include <libintl.h>
-#else
+#if !_LIBC && ENABLE_NLS
 # include "gettext.h"
 #endif
 
Index: m4/allocsa.m4
===================================================================
RCS file: /fetish/cu/m4/allocsa.m4,v
retrieving revision 1.2
diff -p -u -r1.2 allocsa.m4
--- m4/allocsa.m4       13 Apr 2004 15:28:45 -0000      1.2
+++ m4/allocsa.m4       22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # allocsa.m4 serial 3
 dnl Copyright (C) 2003-2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_ALLOCSA],
 [
Index: m4/chdir-long.m4
===================================================================
RCS file: /fetish/cu/m4/chdir-long.m4,v
retrieving revision 1.4
diff -p -u -r1.4 chdir-long.m4
--- m4/chdir-long.m4    10 Dec 2004 00:02:08 -0000      1.4
+++ m4/chdir-long.m4    22 Jan 2005 06:16:56 -0000
@@ -1,12 +1,18 @@
-#serial 3
+#serial 4
 
-# Written by Jim Meyering.
 # Use Gnulib's robust chdir function.
 # It can handle arbitrarily long directory names, which means
 # that when it is given the name of an existing directory, it
 # never fails with ENAMETOOLONG.
 # Arrange to compile chdir-long.c only on systems that define PATH_MAX.
 
+dnl Copyright (C) 2004 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.
+
+# Written by Jim Meyering.
+
 AC_DEFUN([gl_FUNC_CHDIR_LONG],
 [
   AC_LIBSOURCES([chdir-long.c, chdir-long.h])
Index: m4/chown.m4
===================================================================
RCS file: /fetish/cu/m4/chown.m4,v
retrieving revision 1.18
diff -p -u -r1.18 chown.m4
--- m4/chown.m4 4 Jan 2005 09:40:23 -0000       1.18
+++ m4/chown.m4 22 Jan 2005 06:16:56 -0000
@@ -1,7 +1,17 @@
-#serial 11
-# Determine whether we need the chown wrapper.  chown should accept
-# arguments of -1 for uid and gid, and it should dereference symlinks.
-# If it doesn't, arrange to use the replacement function.
+#serial 12
+# Determine whether we need the chown wrapper.
+
+dnl Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 Free
+dnl 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.
+
+# chown should accept arguments of -1 for uid and gid, and it should
+# dereference symlinks.  If it doesn't, arrange to use the replacement
+# function.
+
 # From Jim Meyering.
 
 AC_DEFUN([gl_FUNC_CHOWN],
Index: m4/codeset.m4
===================================================================
RCS file: /fetish/cu/m4/codeset.m4,v
retrieving revision 1.4
diff -p -u -r1.4 codeset.m4
--- m4/codeset.m4       16 Feb 2002 14:58:48 -0000      1.4
+++ m4/codeset.m4       22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # codeset.m4 serial AM1 (gettext-0.10.40)
 dnl Copyright (C) 2000-2002 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Bruno Haible.
 
Index: m4/eealloc.m4
===================================================================
RCS file: /fetish/cu/m4/eealloc.m4,v
retrieving revision 1.1
diff -p -u -r1.1 eealloc.m4
--- m4/eealloc.m4       4 Apr 2004 06:53:53 -0000       1.1
+++ m4/eealloc.m4       22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # eealloc.m4 serial 1
 dnl Copyright (C) 2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_EEALLOC],
 [
Index: m4/eoverflow.m4
===================================================================
RCS file: /fetish/cu/m4/eoverflow.m4,v
retrieving revision 1.1
diff -p -u -r1.1 eoverflow.m4
--- m4/eoverflow.m4     4 Oct 2004 04:09:41 -0000       1.1
+++ m4/eoverflow.m4     22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # eoverflow.m4 serial 1
 dnl Copyright (C) 2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Bruno Haible.
 
Index: m4/glibc21.m4
===================================================================
RCS file: /fetish/cu/m4/glibc21.m4,v
retrieving revision 1.7
diff -p -u -r1.7 glibc21.m4
--- m4/glibc21.m4       13 Apr 2004 15:28:45 -0000      1.7
+++ m4/glibc21.m4       22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # glibc21.m4 serial 3
 dnl Copyright (C) 2000-2002, 2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 # Test for the GNU C Library, version 2.1 or newer.
 # From Bruno Haible.
Index: m4/iconv.m4
===================================================================
RCS file: /fetish/cu/m4/iconv.m4,v
retrieving revision 1.6
diff -p -u -r1.6 iconv.m4
--- m4/iconv.m4 20 Jul 2002 06:35:12 -0000      1.6
+++ m4/iconv.m4 22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # iconv.m4 serial AM4 (gettext-0.11.3)
 dnl Copyright (C) 2000-2002 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Bruno Haible.
 
Index: m4/intmax_t.m4
===================================================================
RCS file: /fetish/cu/m4/intmax_t.m4,v
retrieving revision 1.4
diff -p -u -r1.4 intmax_t.m4
--- m4/intmax_t.m4      5 Aug 2004 23:01:06 -0000       1.4
+++ m4/intmax_t.m4      22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # intmax_t.m4 serial 4
 dnl Copyright (C) 1997-2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Paul Eggert.
 
Index: m4/inttypes_h.m4
===================================================================
RCS file: /fetish/cu/m4/inttypes_h.m4,v
retrieving revision 1.8
diff -p -u -r1.8 inttypes_h.m4
--- m4/inttypes_h.m4    5 Aug 2004 23:01:06 -0000       1.8
+++ m4/inttypes_h.m4    22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # inttypes_h.m4 serial 6
 dnl Copyright (C) 1997-2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Paul Eggert.
 
Index: m4/lchown.m4
===================================================================
RCS file: /fetish/cu/m4/lchown.m4,v
retrieving revision 1.5
diff -p -u -r1.5 lchown.m4
--- m4/lchown.m4        6 Dec 2004 10:02:18 -0000       1.5
+++ m4/lchown.m4        22 Jan 2005 06:16:56 -0000
@@ -1,4 +1,9 @@
-#serial 5
+#serial 6
+
+dnl Copyright (C) 1998, 2001, 2003, 2004 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.
 
 dnl From Jim Meyering.
 dnl Provide lchown on systems that lack it.
Index: m4/lib-ld.m4
===================================================================
RCS file: /fetish/cu/m4/lib-ld.m4,v
retrieving revision 1.7
diff -p -u -r1.7 lib-ld.m4
--- m4/lib-ld.m4        12 Jan 2004 23:38:26 -0000      1.7
+++ m4/lib-ld.m4        22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # lib-ld.m4 serial 3 (gettext-0.13)
 dnl Copyright (C) 1996-2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl Subroutines of libtool.m4,
 dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision
Index: m4/lib-link.m4
===================================================================
RCS file: /fetish/cu/m4/lib-link.m4,v
retrieving revision 1.4
diff -p -u -r1.4 lib-link.m4
--- m4/lib-link.m4      17 Aug 2003 17:57:38 -0000      1.4
+++ m4/lib-link.m4      22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # lib-link.m4 serial 4 (gettext-0.12)
 dnl Copyright (C) 2001-2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Bruno Haible.
 
Index: m4/lib-prefix.m4
===================================================================
RCS file: /fetish/cu/m4/lib-prefix.m4,v
retrieving revision 1.3
diff -p -u -r1.3 lib-prefix.m4
--- m4/lib-prefix.m4    12 Jan 2004 23:38:26 -0000      1.3
+++ m4/lib-prefix.m4    22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # lib-prefix.m4 serial 3 (gettext-0.13)
 dnl Copyright (C) 2001-2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Bruno Haible.
 
Index: m4/longdouble.m4
===================================================================
RCS file: /fetish/cu/m4/longdouble.m4,v
retrieving revision 1.1
diff -p -u -r1.1 longdouble.m4
--- m4/longdouble.m4    10 Jul 2003 11:23:31 -0000      1.1
+++ m4/longdouble.m4    22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # longdouble.m4 serial 1 (gettext-0.12)
 dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Bruno Haible.
 dnl Test whether the compiler supports the 'long double' type.
Index: m4/longlong.m4
===================================================================
RCS file: /fetish/cu/m4/longlong.m4,v
retrieving revision 1.4
diff -p -u -r1.4 longlong.m4
--- m4/longlong.m4      13 Apr 2004 15:28:45 -0000      1.4
+++ m4/longlong.m4      22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # longlong.m4 serial 5
 dnl Copyright (C) 1999-2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Paul Eggert.
 
Index: m4/mbrtowc.m4
===================================================================
RCS file: /fetish/cu/m4/mbrtowc.m4,v
retrieving revision 1.8
diff -p -u -r1.8 mbrtowc.m4
--- m4/mbrtowc.m4       5 Aug 2004 23:01:06 -0000       1.8
+++ m4/mbrtowc.m4       22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # mbrtowc.m4 serial 7
 dnl Copyright (C) 2001-2002, 2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Paul Eggert
 
Index: m4/mbstate_t.m4
===================================================================
RCS file: /fetish/cu/m4/mbstate_t.m4,v
retrieving revision 1.12
diff -p -u -r1.12 mbstate_t.m4
--- m4/mbstate_t.m4     4 Apr 2004 06:53:53 -0000       1.12
+++ m4/mbstate_t.m4     22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # mbstate_t.m4 serial 9
 dnl Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 # From Paul Eggert.
 
Index: m4/mbswidth.m4
===================================================================
RCS file: /fetish/cu/m4/mbswidth.m4,v
retrieving revision 1.11
diff -p -u -r1.11 mbswidth.m4
--- m4/mbswidth.m4      4 Oct 2004 04:09:41 -0000       1.11
+++ m4/mbswidth.m4      22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # mbswidth.m4 serial 11
 dnl Copyright (C) 2000-2002, 2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl autoconf tests required for use of mbswidth.c
 dnl From Bruno Haible.
Index: m4/mempcpy.m4
===================================================================
RCS file: /fetish/cu/m4/mempcpy.m4,v
retrieving revision 1.2
diff -p -u -r1.2 mempcpy.m4
--- m4/mempcpy.m4       6 Dec 2004 10:03:39 -0000       1.2
+++ m4/mempcpy.m4       22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
-# mempcpy.m4 serial 2
+# mempcpy.m4 serial 3
 dnl Copyright (C) 2003, 2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_FUNC_MEMPCPY],
 [
Index: m4/openat.m4
===================================================================
RCS file: /fetish/cu/m4/openat.m4,v
retrieving revision 1.3
diff -p -u -r1.3 openat.m4
--- m4/openat.m4        6 Dec 2004 10:00:14 -0000       1.3
+++ m4/openat.m4        22 Jan 2005 06:16:56 -0000
@@ -1,21 +1,10 @@
-#serial 2
+#serial 3
 # See if we need to use our replacement for Solaris' openat function.
 
-# Copyright (C) 2004 Free Software Foundation, Inc.
-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+dnl Copyright (C) 2004 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.
 
 # Written by Jim Meyering.
 
Index: m4/readlink.m4
===================================================================
RCS file: /fetish/cu/m4/readlink.m4,v
retrieving revision 1.1
diff -p -u -r1.1 readlink.m4
--- m4/readlink.m4      17 Aug 2003 17:58:01 -0000      1.1
+++ m4/readlink.m4      22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # readlink.m4 serial 2
 dnl Copyright (C) 2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_FUNC_READLINK],
 [
Index: m4/safe-read.m4
===================================================================
RCS file: /fetish/cu/m4/safe-read.m4,v
retrieving revision 1.1
diff -p -u -r1.1 safe-read.m4
--- m4/safe-read.m4     17 Aug 2003 17:58:01 -0000      1.1
+++ m4/safe-read.m4     22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # safe-read.m4 serial 2
 dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_SAFE_READ],
 [
Index: m4/safe-write.m4
===================================================================
RCS file: /fetish/cu/m4/safe-write.m4,v
retrieving revision 1.1
diff -p -u -r1.1 safe-write.m4
--- m4/safe-write.m4    17 Aug 2003 17:58:01 -0000      1.1
+++ m4/safe-write.m4    22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # safe-write.m4 serial 1
 dnl Copyright (C) 2002 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_SAFE_WRITE],
 [
Index: m4/setenv.m4
===================================================================
RCS file: /fetish/cu/m4/setenv.m4,v
retrieving revision 1.3
diff -p -u -r1.3 setenv.m4
--- m4/setenv.m4        3 Nov 2004 23:04:03 -0000       1.3
+++ m4/setenv.m4        22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # setenv.m4 serial 5
 dnl Copyright (C) 2001-2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gt_FUNC_SETENV],
 [
Index: m4/signed.m4
===================================================================
RCS file: /fetish/cu/m4/signed.m4,v
retrieving revision 1.1
diff -p -u -r1.1 signed.m4
--- m4/signed.m4        10 Jul 2003 11:23:31 -0000      1.1
+++ m4/signed.m4        22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # signed.m4 serial 1 (gettext-0.10.40)
 dnl Copyright (C) 2001-2002 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Bruno Haible.
 
Index: m4/ssize_t.m4
===================================================================
RCS file: /fetish/cu/m4/ssize_t.m4,v
retrieving revision 1.7
diff -p -u -r1.7 ssize_t.m4
--- m4/ssize_t.m4       16 Jan 2004 08:32:04 -0000      1.7
+++ m4/ssize_t.m4       22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # ssize_t.m4 serial 3 (gettext-0.13)
 dnl Copyright (C) 2001-2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Bruno Haible.
 dnl Test whether ssize_t is defined.
Index: m4/stdbool.m4
===================================================================
RCS file: /fetish/cu/m4/stdbool.m4,v
retrieving revision 1.3
diff -p -u -r1.3 stdbool.m4
--- m4/stdbool.m4       1 Jun 2004 15:24:11 -0000       1.3
+++ m4/stdbool.m4       22 Jan 2005 06:16:56 -0000
@@ -1,21 +1,9 @@
 # Check for stdbool.h that conforms to C99.
 
-# Copyright (C) 2002-2004 Free Software Foundation, Inc.
-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-# 02111-1307, USA.
+dnl Copyright (C) 2002-2004 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.
 
 # Prepare for substituting <stdbool.h> if it is not supported.
 
Index: m4/stdint_h.m4
===================================================================
RCS file: /fetish/cu/m4/stdint_h.m4,v
retrieving revision 1.3
diff -p -u -r1.3 stdint_h.m4
--- m4/stdint_h.m4      5 Aug 2004 23:01:07 -0000       1.3
+++ m4/stdint_h.m4      22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # stdint_h.m4 serial 5
 dnl Copyright (C) 1997-2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Paul Eggert.
 
Index: m4/stpcpy.m4
===================================================================
RCS file: /fetish/cu/m4/stpcpy.m4,v
retrieving revision 1.1
diff -p -u -r1.1 stpcpy.m4
--- m4/stpcpy.m4        17 Aug 2003 17:58:01 -0000      1.1
+++ m4/stpcpy.m4        22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # stpcpy.m4 serial 1
 dnl Copyright (C) 2002 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_FUNC_STPCPY],
 [
Index: m4/strcase.m4
===================================================================
RCS file: /fetish/cu/m4/strcase.m4,v
retrieving revision 1.1
diff -p -u -r1.1 strcase.m4
--- m4/strcase.m4       17 Aug 2003 17:58:01 -0000      1.1
+++ m4/strcase.m4       22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # strcase.m4 serial 1
 dnl Copyright (C) 2002 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_STRCASE],
 [
Index: m4/strcspn.m4
===================================================================
RCS file: /fetish/cu/m4/strcspn.m4,v
retrieving revision 1.2
diff -p -u -r1.2 strcspn.m4
--- m4/strcspn.m4       13 Sep 2003 10:07:41 -0000      1.2
+++ m4/strcspn.m4       22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # strcspn.m4 serial 2
 dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_FUNC_STRCSPN],
 [
Index: m4/strpbrk.m4
===================================================================
RCS file: /fetish/cu/m4/strpbrk.m4,v
retrieving revision 1.2
diff -p -u -r1.2 strpbrk.m4
--- m4/strpbrk.m4       13 Sep 2003 10:08:14 -0000      1.2
+++ m4/strpbrk.m4       22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # strpbrk.m4 serial 2
 dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_FUNC_STRPBRK],
 [
Index: m4/strstr.m4
===================================================================
RCS file: /fetish/cu/m4/strstr.m4,v
retrieving revision 1.2
diff -p -u -r1.2 strstr.m4
--- m4/strstr.m4        13 Sep 2003 10:08:23 -0000      1.2
+++ m4/strstr.m4        22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # strstr.m4 serial 2
 dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_FUNC_STRSTR],
 [
Index: m4/uintmax_t.m4
===================================================================
RCS file: /fetish/cu/m4/uintmax_t.m4,v
retrieving revision 1.13
diff -p -u -r1.13 uintmax_t.m4
--- m4/uintmax_t.m4     5 Aug 2004 23:01:07 -0000       1.13
+++ m4/uintmax_t.m4     22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # uintmax_t.m4 serial 9
 dnl Copyright (C) 1997-2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Paul Eggert.
 
Index: m4/ullong_max.m4
===================================================================
RCS file: /fetish/cu/m4/ullong_max.m4,v
retrieving revision 1.1
diff -p -u -r1.1 ullong_max.m4
--- m4/ullong_max.m4    3 Jan 2005 23:43:39 -0000       1.1
+++ m4/ullong_max.m4    22 Jan 2005 06:16:56 -0000
@@ -1,20 +1,9 @@
 # ullong_max.m4 - define ULLONG_MAX if necessary
 
-# Copyright (C) 2005 Free Software Foundation, Inc.
-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+dnl Copyright (C) 2005 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.
 
 # Written by Paul Eggert.
 
Index: m4/ulonglong.m4
===================================================================
RCS file: /fetish/cu/m4/ulonglong.m4,v
retrieving revision 1.6
diff -p -u -r1.6 ulonglong.m4
--- m4/ulonglong.m4     13 Apr 2004 15:28:46 -0000      1.6
+++ m4/ulonglong.m4     22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # ulonglong.m4 serial 4
 dnl Copyright (C) 1999-2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Paul Eggert.
 
Index: m4/unicodeio.m4
===================================================================
RCS file: /fetish/cu/m4/unicodeio.m4,v
retrieving revision 1.2
diff -p -u -r1.2 unicodeio.m4
--- m4/unicodeio.m4     13 Sep 2003 10:08:50 -0000      1.2
+++ m4/unicodeio.m4     22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # unicodeio.m4 serial 2
 dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_UNICODEIO],
 [
Index: m4/utimes.m4
===================================================================
RCS file: /fetish/cu/m4/utimes.m4,v
retrieving revision 1.14
diff -p -u -r1.14 utimes.m4
--- m4/utimes.m4        14 Jan 2005 13:33:26 -0000      1.14
+++ m4/utimes.m4        22 Jan 2005 06:16:56 -0000
@@ -1,3 +1,10 @@
+# Detect some bugs in glibc's implementation of utimes.
+
+dnl Copyright (C) 2003, 2004, 2005 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.
+
 # See if we need to work around bugs in glibc's implementation of
 # utimes from 2003-07-12 to 2003-09-17.
 # First, there was a bug that would make utimes set mtime
Index: m4/vasnprintf.m4
===================================================================
RCS file: /fetish/cu/m4/vasnprintf.m4,v
retrieving revision 1.6
diff -p -u -r1.6 vasnprintf.m4
--- m4/vasnprintf.m4    4 Oct 2004 04:09:41 -0000       1.6
+++ m4/vasnprintf.m4    22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # vasnprintf.m4 serial 5
 dnl Copyright (C) 2002-2004 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_FUNC_VASNPRINTF],
 [
Index: m4/vasprintf.m4
===================================================================
RCS file: /fetish/cu/m4/vasprintf.m4,v
retrieving revision 1.1
diff -p -u -r1.1 vasprintf.m4
--- m4/vasprintf.m4     10 Jul 2003 11:23:31 -0000      1.1
+++ m4/vasprintf.m4     22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # vasprintf.m4 serial 1
 dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 AC_DEFUN([gl_FUNC_VASPRINTF],
 [
Index: m4/wchar_t.m4
===================================================================
RCS file: /fetish/cu/m4/wchar_t.m4,v
retrieving revision 1.1
diff -p -u -r1.1 wchar_t.m4
--- m4/wchar_t.m4       10 Jul 2003 11:23:31 -0000      1.1
+++ m4/wchar_t.m4       22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # wchar_t.m4 serial 1 (gettext-0.12)
 dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Bruno Haible.
 dnl Test whether <stddef.h> has the 'wchar_t' type.
Index: m4/wint_t.m4
===================================================================
RCS file: /fetish/cu/m4/wint_t.m4,v
retrieving revision 1.1
diff -p -u -r1.1 wint_t.m4
--- m4/wint_t.m4        10 Jul 2003 11:23:31 -0000      1.1
+++ m4/wint_t.m4        22 Jan 2005 06:16:56 -0000
@@ -1,10 +1,8 @@
 # wint_t.m4 serial 1 (gettext-0.12)
 dnl Copyright (C) 2003 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License.  As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
+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.
 
 dnl From Bruno Haible.
 dnl Test whether <wchar.h> has the 'wint_t' type.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]