bug-gnulib
[Top][All Lists]
Advanced

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

Re: [bug-gnulib] removed many uses of HAVE_CONFIG_H from gnulib


From: Bruno Haible
Subject: Re: [bug-gnulib] removed many uses of HAVE_CONFIG_H from gnulib
Date: Thu, 14 Sep 2006 16:14:47 +0200
User-agent: KMail/1.9.1

Paul Eggert wrote:
> Since nobody needs
> HAVE_CONFIG_H any more, I installed the following change into gnulib.

I did the same for these files.

2006-09-14  Bruno Haible  <address@hidden>

        * lib/allocsa.c: Include <config.h> unconditionally.
        * lib/asnprintf.c: Likewise.
        * lib/asprintf.c: Likewise.
        * lib/c-strcasecmp.c: Likewise.
        * lib/c-strcasestr.c: Likewise.
        * lib/c-strncasecmp.c: Likewise.
        * lib/c-strstr.c: Likewise.
        * lib/classpath.c: Likewise.
        * lib/clean-temp.c: Likewise.
        * lib/concatpath.c: Likewise.
        * lib/copy-file.c: Likewise.
        * lib/csharpcomp.c: Likewise.
        * lib/csharpexec.c: Likewise.
        * lib/execute.c: Likewise.
        * lib/fatal-signal.c: Likewise.
        * lib/findprog.c: Likewise.
        * lib/fwriteerror.c: Likewise.
        * lib/gl_array_list.c: Likewise.
        * lib/gl_array_oset.c: Likewise.
        * lib/gl_avltree_list.c: Likewise.
        * lib/gl_avltree_oset.c: Likewise.
        * lib/gl_avltreehash_list.c: Likewise.
        * lib/gl_carray_list.c: Likewise.
        * lib/gl_linked_list.c: Likewise.
        * lib/gl_linkedhash_list.c: Likewise.
        * lib/gl_list.c: Likewise.
        * lib/gl_oset.c: Likewise.
        * lib/gl_rbtree_list.c: Likewise.
        * lib/gl_rbtree_oset.c: Likewise.
        * lib/gl_rbtreehash_list.c: Likewise.
        * lib/imaxabs.c: Likewise.
        * lib/imaxdiv.c: Likewise.
        * lib/javacomp.c: Likewise.
        * lib/javaexec.c: Likewise.
        * lib/javaversion.c: Likewise.
        * lib/linebreak.c: Likewise.
        * lib/localcharset.c: Likewise.
        * lib/lock.c: Likewise.
        * lib/mbchar.c: Likewise.
        * lib/mbswidth.c: Likewise.
        * lib/mkdtemp.c: Likewise.
        * lib/pipe.c: Likewise.
        * lib/printf-args.c: Likewise.
        * lib/printf-parse.c: Likewise.
        * lib/progname.c: Likewise.
        * lib/progreloc.c: Likewise.
        * lib/readlink.c: Likewise.
        * lib/sh-quote.c: Likewise.
        * lib/stpcpy.c: Likewise.
        * lib/stpncpy.c: Likewise.
        * lib/strcasecmp.c: Likewise.
        * lib/strcasestr.c: Likewise.
        * lib/strcspn.c: Likewise.
        * lib/striconv.c: Likewise.
        * lib/strncasecmp.c: Likewise.
        * lib/strnlen1.c: Likewise.
        * lib/strstr.c: Likewise.
        * lib/strtok_r.c: Likewise.
        * lib/tls.c: Likewise.
        * lib/tmpdir.c: Likewise.
        * lib/unicodeio.c: Likewise.
        * lib/unsetenv.c: Likewise.
        * lib/vasnprintf.c: Likewise.
        * lib/vasprintf.c: Likewise.
        * lib/wait-process.c: Likewise.
        * lib/xallocsa.c: Likewise.
        * lib/xsetenv.c: Likewise.
        * lib/xstriconv.c: Likewise.

*** allocsa.c   14 May 2005 06:03:57 -0000      1.2
--- allocsa.c   14 Sep 2006 14:13:26 -0000
***************
*** 1,5 ****
  /* Safe automatic memory allocation.
!    Copyright (C) 2003 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2003.
  
     This program is free software; you can redistribute it and/or modify
--- 1,5 ----
  /* Safe automatic memory allocation.
!    Copyright (C) 2003, 2006 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2003.
  
     This program is free software; you can redistribute it and/or modify
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "allocsa.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "allocsa.h"
*** asnprintf.c 14 May 2005 06:03:57 -0000      1.3
--- asnprintf.c 14 Sep 2006 14:13:26 -0000
***************
*** 1,5 ****
  /* Formatted output to strings.
!    Copyright (C) 1999, 2002 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
--- 1,5 ----
  /* Formatted output to strings.
!    Copyright (C) 1999, 2002, 2006 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
***************
*** 15,23 ****
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "vasnprintf.h"
--- 15,21 ----
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "vasnprintf.h"
*** asprintf.c  14 May 2005 06:03:57 -0000      1.3
--- asprintf.c  14 Sep 2006 14:13:26 -0000
***************
*** 1,5 ****
  /* Formatted output to strings.
!    Copyright (C) 1999, 2002 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
--- 1,5 ----
  /* Formatted output to strings.
!    Copyright (C) 1999, 2002, 2006 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
***************
*** 15,23 ****
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "vasprintf.h"
--- 15,21 ----
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "vasprintf.h"
*** c-strcasecmp.c      11 Oct 2005 18:48:53 -0000      1.1
--- c-strcasecmp.c      14 Sep 2006 14:13:26 -0000
***************
*** 1,5 ****
  /* c-strcasecmp.c -- case insensitive string comparator in C locale
!    Copyright (C) 1998, 1999, 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
--- 1,5 ----
  /* c-strcasecmp.c -- case insensitive string comparator in C locale
!    Copyright (C) 1998-1999, 2005-2006 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
***************
*** 15,23 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "c-strcase.h"
--- 15,21 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "c-strcase.h"
*** c-strcasestr.c      11 Oct 2005 18:50:36 -0000      1.1
--- c-strcasestr.c      14 Sep 2006 14:13:26 -0000
***************
*** 1,5 ****
  /* c-strcasestr.c -- case insensitive substring search in C locale
!    Copyright (C) 2005 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2005.
  
     This program is free software; you can redistribute it and/or modify
--- 1,5 ----
  /* c-strcasestr.c -- case insensitive substring search in C locale
!    Copyright (C) 2005-2006 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2005.
  
     This program is free software; you can redistribute it and/or modify
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "c-strcasestr.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "c-strcasestr.h"
*** c-strncasecmp.c     11 Oct 2005 18:48:53 -0000      1.1
--- c-strncasecmp.c     14 Sep 2006 14:13:26 -0000
***************
*** 1,5 ****
  /* c-strncasecmp.c -- case insensitive string comparator in C locale
!    Copyright (C) 1998, 1999, 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
--- 1,5 ----
  /* c-strncasecmp.c -- case insensitive string comparator in C locale
!    Copyright (C) 1998-1999, 2005-2006 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
***************
*** 15,23 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "c-strcase.h"
--- 15,21 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "c-strcase.h"
*** c-strstr.c  28 Aug 2006 13:04:33 -0000      1.1
--- c-strstr.c  14 Sep 2006 14:13:26 -0000
***************
*** 24,32 ****
   *
   * Stephen R. van den Berg, address@hidden    */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  #include <string.h>
  
--- 24,30 ----
   *
   * Stephen R. van den Berg, address@hidden    */
  
! #include <config.h>
  
  #include <string.h>
  
*** classpath.c 17 May 2006 13:16:53 -0000      1.4
--- classpath.c 14 Sep 2006 14:13:26 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "classpath.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "classpath.h"
*** clean-temp.c        24 Jul 2006 16:45:17 -0000      1.1
--- clean-temp.c        14 Sep 2006 14:13:26 -0000
***************
*** 17,25 ****
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #ifdef HAVE_CONFIG_H
! # include "config.h"
! #endif
  
  /* Specification.  */
  #include "clean-temp.h"
--- 17,23 ----
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #include <config.h>
  
  /* Specification.  */
  #include "clean-temp.h"
*** concatpath.c        14 May 2005 06:03:57 -0000      1.3
--- concatpath.c        14 Sep 2006 14:13:26 -0000
***************
*** 1,5 ****
  /* Construct a full pathname from a directory and a filename.
!    Copyright (C) 2001-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
--- 1,5 ----
  /* Construct a full pathname from a directory and a filename.
!    Copyright (C) 2001-2004, 2006 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
***************
*** 18,26 ****
  
  /* Written by Bruno Haible <address@hidden>.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "pathname.h"
--- 18,24 ----
  
  /* Written by Bruno Haible <address@hidden>.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "pathname.h"
*** copy-file.c 24 Apr 2006 11:38:06 -0000      1.7
--- copy-file.c 14 Sep 2006 14:13:26 -0000
***************
*** 17,25 ****
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "copy-file.h"
--- 17,23 ----
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #include <config.h>
  
  /* Specification.  */
  #include "copy-file.h"
*** csharpcomp.c        22 Jul 2006 14:24:37 -0000      1.5
--- csharpcomp.c        14 Sep 2006 14:13:26 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  #include <alloca.h>
  
  /* Specification.  */
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  #include <alloca.h>
  
  /* Specification.  */
*** csharpexec.c        22 Jul 2006 14:32:41 -0000      1.2
--- csharpexec.c        14 Sep 2006 14:13:26 -0000
***************
*** 1,5 ****
  /* Execute a C# program.
!    Copyright (C) 2003-2005 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2003.
  
     This program is free software; you can redistribute it and/or modify
--- 1,5 ----
  /* Execute a C# program.
!    Copyright (C) 2003-2006 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2003.
  
     This program is free software; you can redistribute it and/or modify
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  #include <alloca.h>
  
  /* Specification.  */
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  #include <alloca.h>
  
  /* Specification.  */
*** execute.c   26 Apr 2006 15:55:46 -0000      1.6
--- execute.c   14 Sep 2006 14:13:26 -0000
***************
*** 17,25 ****
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #ifdef HAVE_CONFIG_H
! # include "config.h"
! #endif
  
  /* Specification.  */
  #include "execute.h"
--- 17,23 ----
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #include <config.h>
  
  /* Specification.  */
  #include "execute.h"
*** fatal-signal.c      22 Jul 2006 14:44:27 -0000      1.8
--- fatal-signal.c      14 Sep 2006 14:13:27 -0000
***************
*** 17,25 ****
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "fatal-signal.h"
--- 17,23 ----
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #include <config.h>
  
  /* Specification.  */
  #include "fatal-signal.h"
*** findprog.c  24 Apr 2006 11:38:06 -0000      1.5
--- findprog.c  14 Sep 2006 14:13:27 -0000
***************
*** 17,25 ****
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "findprog.h"
--- 17,23 ----
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #include <config.h>
  
  /* Specification.  */
  #include "findprog.h"
*** fwriteerror.c       24 Apr 2006 11:32:00 -0000      1.5
--- fwriteerror.c       14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "fwriteerror.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "fwriteerror.h"
*** gl_array_list.c     17 Jul 2006 11:28:01 -0000      1.1
--- gl_array_list.c     14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "gl_array_list.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "gl_array_list.h"
*** gl_array_oset.c     17 Jul 2006 11:28:35 -0000      1.1
--- gl_array_oset.c     14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "gl_array_oset.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "gl_array_oset.h"
*** gl_avltree_list.c   17 Jul 2006 11:30:58 -0000      1.1
--- gl_avltree_list.c   14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "gl_avltree_list.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "gl_avltree_list.h"
*** gl_avltree_oset.c   17 Jul 2006 11:33:17 -0000      1.1
--- gl_avltree_oset.c   14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "gl_avltree_oset.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "gl_avltree_oset.h"
*** gl_avltreehash_list.c       17 Jul 2006 11:31:28 -0000      1.1
--- gl_avltreehash_list.c       14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "gl_avltreehash_list.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "gl_avltreehash_list.h"
*** gl_carray_list.c    17 Jul 2006 11:29:21 -0000      1.1
--- gl_carray_list.c    14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "gl_carray_list.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "gl_carray_list.h"
*** gl_linked_list.c    17 Jul 2006 11:30:07 -0000      1.1
--- gl_linked_list.c    14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "gl_linked_list.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "gl_linked_list.h"
*** gl_linkedhash_list.c        18 Jul 2006 11:29:26 -0000      1.2
--- gl_linkedhash_list.c        14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "gl_linkedhash_list.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "gl_linkedhash_list.h"
*** gl_list.c   17 Jul 2006 11:34:23 -0000      1.1
--- gl_list.c   14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "gl_list.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "gl_list.h"
*** gl_oset.c   17 Jul 2006 11:34:01 -0000      1.1
--- gl_oset.c   14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "gl_oset.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "gl_oset.h"
*** gl_rbtree_list.c    17 Jul 2006 11:32:00 -0000      1.1
--- gl_rbtree_list.c    14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "gl_rbtree_list.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "gl_rbtree_list.h"
*** gl_rbtree_oset.c    17 Jul 2006 11:32:55 -0000      1.1
--- gl_rbtree_oset.c    14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "gl_rbtree_oset.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "gl_rbtree_oset.h"
*** gl_rbtreehash_list.c        17 Jul 2006 11:32:23 -0000      1.1
--- gl_rbtreehash_list.c        14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "gl_rbtreehash_list.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "gl_rbtreehash_list.h"
*** imaxabs.c   28 Aug 2006 12:54:10 -0000      1.1
--- imaxabs.c   14 Sep 2006 14:13:27 -0000
***************
*** 15,23 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include <inttypes.h>
--- 15,21 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include <inttypes.h>
*** imaxdiv.c   28 Aug 2006 12:54:20 -0000      1.1
--- imaxdiv.c   14 Sep 2006 14:13:27 -0000
***************
*** 15,23 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include <inttypes.h>
--- 15,21 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include <inttypes.h>
*** javacomp.c  22 Jul 2006 16:03:47 -0000      1.6
--- javacomp.c  14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  #include <alloca.h>
  
  /* Specification.  */
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  #include <alloca.h>
  
  /* Specification.  */
*** javaexec.c  22 Jul 2006 15:17:55 -0000      1.3
--- javaexec.c  14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  #include <alloca.h>
  
  /* Specification.  */
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  #include <alloca.h>
  
  /* Specification.  */
*** javaversion.c       22 Jul 2006 15:28:21 -0000      1.1
--- javaversion.c       14 Sep 2006 14:13:27 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "javaversion.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "javaversion.h"
*** linebreak.c 22 Jul 2006 15:30:06 -0000      1.8
--- linebreak.c 14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* linebreak.c - line breaking of Unicode strings
!    Copyright (C) 2001-2003 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2001.
  
  This program is free software; you can redistribute it and/or modify
--- 1,5 ----
  /* linebreak.c - line breaking of Unicode strings
!    Copyright (C) 2001-2003, 2006 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2001.
  
  This program is free software; you can redistribute it and/or modify
***************
*** 16,24 ****
  along with this program; if not, write to the Free Software Foundation,
  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "linebreak.h"
--- 16,22 ----
  along with this program; if not, write to the Free Software Foundation,
  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "linebreak.h"
*** localcharset.c      29 Aug 2006 15:44:02 -0000      1.24
--- localcharset.c      14 Sep 2006 14:13:28 -0000
***************
*** 18,26 ****
  
  /* Written by Bruno Haible <address@hidden>.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "localcharset.h"
--- 18,24 ----
  
  /* Written by Bruno Haible <address@hidden>.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "localcharset.h"
*** lock.c      14 Aug 2006 22:19:55 -0000      1.4
--- lock.c      14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Locking in multithreaded situations.
!    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
--- 1,5 ----
  /* Locking in multithreaded situations.
!    Copyright (C) 2005-2006 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
***************
*** 19,27 ****
     Based on GCC's gthr-posix.h, gthr-posix95.h, gthr-solaris.h,
     gthr-win32.h.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  #include "lock.h"
  
--- 19,25 ----
     Based on GCC's gthr-posix.h, gthr-posix95.h, gthr-solaris.h,
     gthr-win32.h.  */
  
! #include <config.h>
  
  #include "lock.h"
  
*** mbchar.c    16 Aug 2005 12:06:55 -0000      1.1
--- mbchar.c    14 Sep 2006 14:13:28 -0000
***************
*** 1,4 ****
! /* Copyright (C) 2001 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
--- 1,4 ----
! /* Copyright (C) 2001, 2006 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
***************
*** 15,23 ****
     Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  #include <limits.h>
  
--- 15,21 ----
     Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  
! #include <config.h>
  
  #include <limits.h>
  
*** mbswidth.c  28 Jul 2006 15:31:45 -0000      1.18
--- mbswidth.c  14 Sep 2006 14:13:28 -0000
***************
*** 17,25 ****
  
  /* Written by Bruno Haible <address@hidden>.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "mbswidth.h"
--- 17,23 ----
  
  /* Written by Bruno Haible <address@hidden>.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "mbswidth.h"
*** mkdtemp.c   11 Sep 2006 12:35:15 -0000      1.10
--- mkdtemp.c   14 Sep 2006 14:13:28 -0000
***************
*** 17,25 ****
  
  /* Extracted from misc/mkdtemp.c and sysdeps/posix/tempname.c.  */
  
! #ifdef HAVE_CONFIG_H
! # include "config.h"
! #endif
  
  /* Specification.  */
  #include "mkdtemp.h"
--- 17,23 ----
  
  /* Extracted from misc/mkdtemp.c and sysdeps/posix/tempname.c.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "mkdtemp.h"
*** pipe.c      24 Apr 2006 11:38:06 -0000      1.5
--- pipe.c      14 Sep 2006 14:13:28 -0000
***************
*** 17,25 ****
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "pipe.h"
--- 17,23 ----
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #include <config.h>
  
  /* Specification.  */
  #include "pipe.h"
*** printf-args.c       22 Jul 2006 16:54:42 -0000      1.6
--- printf-args.c       14 Sep 2006 14:13:28 -0000
***************
*** 15,23 ****
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "printf-args.h"
--- 15,21 ----
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "printf-args.h"
*** printf-parse.c      14 May 2005 06:03:58 -0000      1.6
--- printf-parse.c      14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Formatted output to strings.
!    Copyright (C) 1999-2000, 2002-2003 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
--- 1,5 ----
  /* Formatted output to strings.
!    Copyright (C) 1999-2000, 2002-2003, 2006 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
***************
*** 15,23 ****
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #if WIDE_CHAR_VERSION
--- 15,21 ----
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #if WIDE_CHAR_VERSION
*** progname.c  19 Sep 2005 17:28:14 -0000      1.5
--- progname.c  14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Program name management.
!    Copyright (C) 2001-2003, 2005 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2001.
  
     This program is free software; you can redistribute it and/or modify
--- 1,5 ----
  /* Program name management.
!    Copyright (C) 2001-2003, 2005-2006 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2001.
  
     This program is free software; you can redistribute it and/or modify
***************
*** 17,25 ****
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "progname.h"
--- 17,23 ----
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #include <config.h>
  
  /* Specification.  */
  #include "progname.h"
*** progreloc.c 22 Jul 2006 16:17:20 -0000      1.9
--- progreloc.c 14 Sep 2006 14:13:28 -0000
***************
*** 17,25 ****
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "progname.h"
--- 17,23 ----
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #include <config.h>
  
  /* Specification.  */
  #include "progname.h"
*** readlink.c  22 Jul 2006 16:21:03 -0000      1.6
--- readlink.c  14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Stub for readlink().
!    Copyright (C) 2003-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
--- 1,5 ----
  /* Stub for readlink().
!    Copyright (C) 2003-2006 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
***************
*** 15,23 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  #include <errno.h>
  #include <sys/types.h>
--- 15,21 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  #include <errno.h>
  #include <sys/types.h>
*** sh-quote.c  14 May 2005 06:03:58 -0000      1.2
--- sh-quote.c  14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Shell quoting.
!    Copyright (C) 2001-2004 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2001.
  
     This program is free software; you can redistribute it and/or modify
--- 1,5 ----
  /* Shell quoting.
!    Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2001.
  
     This program is free software; you can redistribute it and/or modify
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "sh-quote.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "sh-quote.h"
*** stpcpy.c    22 Jul 2006 16:25:49 -0000      1.13
--- stpcpy.c    14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* stpcpy.c -- copy a string and return pointer to end of new string
!    Copyright (C) 1992, 1995, 1997, 1998 Free Software Foundation, Inc.
  
     NOTE: The canonical source of this file is maintained with the GNU C 
Library.
     Bugs can be reported to address@hidden
--- 1,5 ----
  /* stpcpy.c -- copy a string and return pointer to end of new string
!    Copyright (C) 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc.
  
     NOTE: The canonical source of this file is maintained with the GNU C 
Library.
     Bugs can be reported to address@hidden
***************
*** 18,26 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  #include <string.h>
  
--- 18,24 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  #include <string.h>
  
*** stpncpy.c   22 Jul 2006 16:25:49 -0000      1.6
--- stpncpy.c   14 Sep 2006 14:13:28 -0000
***************
*** 1,4 ****
! /* Copyright (C) 1993, 1995-1997, 2002-2003, 2005 Free Software Foundation, 
Inc.
  
     NOTE: The canonical source of this file is maintained with the GNU C 
Library.
     Bugs can be reported to address@hidden
--- 1,4 ----
! /* Copyright (C) 1993, 1995-1997, 2002-2003, 2005-2006 Free Software 
Foundation, Inc.
  
     NOTE: The canonical source of this file is maintained with the GNU C 
Library.
     Bugs can be reported to address@hidden
***************
*** 19,27 ****
  
  /* This is almost copied from strncpy.c, written by Torbjorn Granlund.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "stpncpy.h"
--- 19,25 ----
  
  /* This is almost copied from strncpy.c, written by Torbjorn Granlund.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "stpncpy.h"
*** strcasecmp.c        11 Oct 2005 12:47:44 -0000      1.11
--- strcasecmp.c        14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Case-insensitive string comparison function.
!    Copyright (C) 1998, 1999, 2005 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2005,
     based on earlier glibc code.
  
--- 1,5 ----
  /* Case-insensitive string comparison function.
!    Copyright (C) 1998-1999, 2005-2006 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2005,
     based on earlier glibc code.
  
***************
*** 17,25 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "strcase.h"
--- 17,23 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "strcase.h"
*** strcasestr.c        31 Aug 2005 11:51:18 -0000      1.3
--- strcasestr.c        14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Case-insensitive searching in a string.
!    Copyright (C) 2005 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2005.
  
     This program is free software; you can redistribute it and/or modify
--- 1,5 ----
  /* Case-insensitive searching in a string.
!    Copyright (C) 2005-2006 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2005.
  
     This program is free software; you can redistribute it and/or modify
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "strcasestr.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "strcasestr.h"
*** strcspn.c   22 Jul 2006 16:27:07 -0000      1.16
--- strcspn.c   14 Sep 2006 14:13:28 -0000
***************
*** 1,4 ****
! /* Copyright (C) 1991, 1994, 1996-1997, 2002-2003, 2005 Free Software 
Foundation, Inc.
  
     NOTE: The canonical source of this file is maintained with the GNU C 
Library.
     Bugs can be reported to address@hidden
--- 1,4 ----
! /* Copyright (C) 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software 
Foundation, Inc.
  
     NOTE: The canonical source of this file is maintained with the GNU C 
Library.
     Bugs can be reported to address@hidden
***************
*** 17,25 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  #include <stddef.h>
  #include <string.h>
--- 17,23 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  #include <stddef.h>
  #include <string.h>
*** striconv.c  6 Sep 2006 12:21:39 -0000       1.1
--- striconv.c  14 Sep 2006 14:13:28 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include "config.h"
! #endif
  
  /* Specification.  */
  #include "striconv.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "striconv.h"
*** strncasecmp.c       11 Oct 2005 12:47:45 -0000      1.7
--- strncasecmp.c       14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* strncasecmp.c -- case insensitive string comparator
!    Copyright (C) 1998, 1999, 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
--- 1,5 ----
  /* strncasecmp.c -- case insensitive string comparator
!    Copyright (C) 1998-1999, 2005-2006 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
***************
*** 15,23 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "strcase.h"
--- 15,21 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "strcase.h"
*** strnlen1.c  14 Aug 2006 22:19:55 -0000      1.3
--- strnlen1.c  14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Find the length of STRING + 1, but scan at most MAXLEN bytes.
!    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
--- 1,5 ----
  /* Find the length of STRING + 1, but scan at most MAXLEN bytes.
!    Copyright (C) 2005-2006 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
***************
*** 15,23 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "strnlen1.h"
--- 15,21 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "strnlen1.h"
*** strstr.c    19 Sep 2005 17:28:15 -0000      1.15
--- strstr.c    14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Searching in a string.
!    Copyright (C) 2005 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2005.
  
     This program is free software; you can redistribute it and/or modify
--- 1,5 ----
  /* Searching in a string.
!    Copyright (C) 2005-2006 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2005.
  
     This program is free software; you can redistribute it and/or modify
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "strstr.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "strstr.h"
*** strtok_r.c  14 May 2005 06:03:58 -0000      1.5
--- strtok_r.c  14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Reentrant string tokenizer.  Generic version.
!    Copyright (C) 1991,1996-1999,2001,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
--- 1,5 ----
  /* Reentrant string tokenizer.  Generic version.
!    Copyright (C) 1991,1996-1999,2001,2004,2006 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
***************
*** 16,24 ****
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  #include <string.h>
  
--- 16,22 ----
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  #include <string.h>
  
*** tls.c       14 Aug 2006 22:19:55 -0000      1.2
--- tls.c       14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Thread-local storage in multithreaded situations.
!    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
--- 1,5 ----
  /* Thread-local storage in multithreaded situations.
!    Copyright (C) 2005-2006 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
***************
*** 17,25 ****
  
  /* Written by Bruno Haible <address@hidden>, 2005.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  #include "tls.h"
  
--- 17,23 ----
  
  /* Written by Bruno Haible <address@hidden>, 2005.  */
  
! #include <config.h>
  
  #include "tls.h"
  
*** tmpdir.c    14 Aug 2006 22:19:55 -0000      1.2
--- tmpdir.c    14 Sep 2006 14:13:28 -0000
***************
*** 17,25 ****
  
  /* Extracted from sysdeps/posix/tempname.c.  */
  
! #ifdef HAVE_CONFIG_H
! # include "config.h"
! #endif
  
  /* Specification.  */
  #include "tmpdir.h"
--- 17,23 ----
  
  /* Extracted from sysdeps/posix/tempname.c.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "tmpdir.h"
*** unicodeio.c 17 Jun 2006 16:09:19 -0000      1.26
--- unicodeio.c 14 Sep 2006 14:13:28 -0000
***************
*** 21,29 ****
  /* Note: This file requires the locale_charset() function.  See in
     libiconv-1.8/libcharset/INTEGRATE for how to obtain it.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "unicodeio.h"
--- 21,27 ----
  /* Note: This file requires the locale_charset() function.  See in
     libiconv-1.8/libcharset/INTEGRATE for how to obtain it.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "unicodeio.h"
*** unsetenv.c  17 Jun 2006 16:09:19 -0000      1.9
--- unsetenv.c  14 Sep 2006 14:13:28 -0000
***************
*** 15,23 ****
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  #include <errno.h>
  #if !_LIBC
--- 15,21 ----
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
  
! #include <config.h>
  
  #include <errno.h>
  #if !_LIBC
*** vasnprintf.c        28 Aug 2006 16:04:14 -0000      1.19
--- vasnprintf.c        14 Sep 2006 14:13:28 -0000
***************
*** 22,30 ****
  # define _GNU_SOURCE    1
  #endif
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  #ifndef IN_LIBINTL
  # include <alloca.h>
  #endif
--- 22,28 ----
  # define _GNU_SOURCE    1
  #endif
  
! #include <config.h>
  #ifndef IN_LIBINTL
  # include <alloca.h>
  #endif
*** vasprintf.c 28 Aug 2006 16:04:14 -0000      1.7
--- vasprintf.c 14 Sep 2006 14:13:28 -0000
***************
*** 15,23 ****
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "vasprintf.h"
--- 15,21 ----
     with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "vasprintf.h"
*** wait-process.c      22 Jul 2006 16:32:15 -0000      1.8
--- wait-process.c      14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Waiting for a subprocess to finish.
!    Copyright (C) 2001-2003, 2005 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2001.
  
     This program is free software; you can redistribute it and/or modify
--- 1,5 ----
  /* Waiting for a subprocess to finish.
!    Copyright (C) 2001-2003, 2005-2006 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2001.
  
     This program is free software; you can redistribute it and/or modify
***************
*** 17,25 ****
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "wait-process.h"
--- 17,23 ----
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
  
! #include <config.h>
  
  /* Specification.  */
  #include "wait-process.h"
*** xallocsa.c  14 May 2005 06:03:58 -0000      1.2
--- xallocsa.c  14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Safe automatic memory allocation with out of memory checking.
!    Copyright (C) 2003 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2003.
  
     This program is free software; you can redistribute it and/or modify
--- 1,5 ----
  /* Safe automatic memory allocation with out of memory checking.
!    Copyright (C) 2003, 2006 Free Software Foundation, Inc.
     Written by Bruno Haible <address@hidden>, 2003.
  
     This program is free software; you can redistribute it and/or modify
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "xallocsa.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "xallocsa.h"
*** xsetenv.c   22 Jul 2006 16:36:17 -0000      1.4
--- xsetenv.c   14 Sep 2006 14:13:28 -0000
***************
*** 1,5 ****
  /* Setting environment variables, with out-of-memory checking.
!    Copyright (C) 2001-2002, 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
--- 1,5 ----
  /* Setting environment variables, with out-of-memory checking.
!    Copyright (C) 2001-2002, 2005-2006 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
***************
*** 15,23 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include <config.h>
! #endif
  
  /* Specification.  */
  #include "xsetenv.h"
--- 15,21 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "xsetenv.h"
*** xstriconv.c 6 Sep 2006 12:21:48 -0000       1.1
--- xstriconv.c 14 Sep 2006 14:13:28 -0000
***************
*** 16,24 ****
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #ifdef HAVE_CONFIG_H
! # include "config.h"
! #endif
  
  /* Specification.  */
  #include "xstriconv.h"
--- 16,22 ----
     along with this program; if not, write to the Free Software Foundation,
     Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
  
! #include <config.h>
  
  /* Specification.  */
  #include "xstriconv.h"




reply via email to

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