fix removing deleted files from files.yaml
authorIan Beckwith <ianb@erislabs.net>
Wed, 16 Sep 2009 02:00:03 +0000 (03:00 +0100)
committerIan Beckwith <ianb@erislabs.net>
Wed, 16 Sep 2009 02:00:03 +0000 (03:00 +0100)
debian/clscan/clscan
debian/clscan/files.yaml
debian/clscan/new.txt

index 049cb09..9f877da 100755 (executable)
@@ -88,6 +88,7 @@ our @filenames=();
 our %overrides=();
 our $files={};
 our $new={};
+our @deleted_files=();
 
 # actions
 my $scan=0;
@@ -114,8 +115,8 @@ sub scan
     {
        scan_file($file);
     }
-    write_new();
     find_deleted();
+    write_new();
 }
 
 sub merge
@@ -462,7 +463,6 @@ sub write_new
     unless(keys(%$new))
     {
        warn("$me: no new/changed files found\n");
-       return;
     }
     unless(open(NEW,">$NEWFILES"))
     {
@@ -493,6 +493,10 @@ sub write_new
        print NEW join("\n", @headerlines);
        print NEW "\n\n";
     }
+    if(@deleted_files)
+    {
+       print NEW map { "Deleted: $_\n"; } @deleted_files;
+    }
     close NEW;
 }
 
@@ -554,6 +558,13 @@ sub merge_new
            $in_license_text=1;
            $license_text='';
        }
+       elsif(/^Deleted:\s*(.*)/)
+       {
+           if(exists($files->{$1}))
+           {
+               delete($files->{$1});
+           }
+       }
        else
        {
            warn("$me: $NEWFILES: line $line not recognized\n");
@@ -572,19 +583,18 @@ sub merge_new
 
 sub find_deleted
 {
-    my @deleted=();
     my %newnames = map { $_ => 1 } @filenames;
     for my $file (sort keys(%$files))
     {
        unless(exists($newnames{$file}))
        {
-           push(@deleted, $file);
+           push(@deleted_files, $file);
        }
     }
-    if(@deleted)
+    if(@deleted_files)
     {
        print "Removed files:\n";
-       print join("\n", @deleted),"\n";
+       print join("\n", @deleted_files),"\n";
     }
 }
 
index c2af7b6..0e9fc0b 100644 (file)
   hash: 26cc2a58a305192996a7e8ee065b4bf8254c9b13d4e9f4efbe3c77777e2fc065
   license: GPL-2+
   license_text: "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\n"
-./tests/test-link.sh: 
-  copyright: ''
-  hash: 1b15e579dd41f894ef55727093cb2490e586dd857fcd726339f4a59203a8fa68
-  license: ''
-  license_text: ''
 ./tests/test-linked_list.c: 
   copyright: 2006-2008 Free Software Foundation, Inc.
   hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
index 3d0d63a..26b0fb7 100644 (file)
@@ -1,1147 +1 @@
-File: ./ChangeLog
-Hash: 527441b007e864497608113c8bf0061f5b7eb735f7dcb0774ff661ab7a5b93bb
-Copyright:
-#Copyright_guess: header to match GPLv3 / Likewise / header in build-aux scripts
-License:
-#Header:
-#2009-09-13  Jim Meyering  <meyering@redhat.com>
-#
-#      posixtm: don't reject a time that specify "60" as the number of seconds
-#      * lib/posixtm.c (posixtime): The code to reject invalid dates
-#      would also reject a time specified with the .60 suffix.
-#      But POSIX allows that, in order to accommodate leap seconds.
-#      So don't reject it.
-#      (main): Adjust tests accordingly.
-#      * modules/posixtm (Depends-on): Add stpcpy.
-#
-#2009-09-11  Jim Meyering  <meyering@redhat.com>
-#
-#      announce-gen: include [$release_type] in emitted Subject:
-#      * build-aux/announce-gen (get_tool_versions): Include [$release_type],
-#      e.g., [stable] in the emitted Subject: line.
-
-File: ./build-aux/announce-gen
-Hash: 6d87315ab5f67291782820d249efffba4fd0981004256e66a0925a39174618b8
-Copyright: 2002-2009 Free Software Foundation, Inc.
-#Copyright_guess: 2002-2009 Free Software Foundation, Inc
-License: GPL-3+
-#License_guess: GPL-3+
-       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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
-#Header:
-##!/usr/bin/perl -w
-## Generate a release announcement message.
-#
-#my $VERSION = '2009-09-11 09:50'; # UTC
-## The definition above must lie within the first 8 lines in order
-## for the Emacs time-stamp write hook (at end) to update it.
-## If you change this file with Emacs, please let the write hook
-## do its job.  Otherwise, update this string manually.
-#
-## Copyright (C) 2002-2009 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 3 of the License, or
-## (at your option) any later version.
-
-File: ./build-aux/gendocs.sh
-Hash: d644a9f8afb358feacb6277afc5f9a189781c36746c9d44a9637ee137f846f00
-Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2009 Free Software Foundation, Inc / 2003, 2004, 2005, 2006, 2007, 2008, 2009
-License: GPL-3+
-#License_guess: GPL-3+
-       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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
-#Header:
-##!/bin/sh
-## gendocs.sh -- generate a GNU manual in many formats.  This script is
-##   mentioned in maintain.texi.  See the help message below for usage details.
-#
-#scriptversion=2009-09-09.22
-#
-## Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009
-## 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 3 of the License, or
-## (at your option) any later version.
-##
-## This program is distributed in the hope that it will be useful,
-
-File: ./build-aux/git-version-gen
-Hash: ee8d2fb3acce7f1e619d1f6fc4afd8798fa90137ddcc2792182b497701ea2511
-Copyright: 2007-2009 Free Software Foundation, Inc.
-#Copyright_guess: 2007-2009 Free Software Foundation
-License: GPL-3+
-#License_guess: GPL-3+
-       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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
-#Header:
-##!/bin/sh
-## Print a version string.
-#scriptversion=2009-09-09.22
-#
-## Copyright (C) 2007-2009 Free Software Foundation
-##
-## 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 3 of the License, 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.
-
-File: ./build-aux/ncftpput-ftp
-Hash: f818fd0b028e38b369dcf4078476ba56ecae9ab96f242303c5fc847c91b77315
-Copyright: 2008, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2008, 2009 Free Software Foundation
-License: GPL-3+
-#License_guess: GPL-3+
-       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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
-#Header:
-##!/bin/sh
-##
-## Copyright 2008, 2009 Free Software Foundation.
-##
-## 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 3 of the License, 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
-
-File: ./build-aux/update-copyright
-Hash: f4450dd44153a558ac76d5343c5f68acc3e269eb58145bda877a59d2bc29824e
-Copyright: 2009 Free Software Foundation, Inc.
-#Copyright_guess: target rule in maint.mk from gnulib's / 1990-2005, 2007-2009 Free Software / statement is not recognized because the / statements to be updated. For example, you might wish to / &copy; 90,2005,2007-2009 / statement must be formated correctly in / year list to include the current year / 2009 Free Software Foundation, Inc / year intervals. (See "Environment variables" / @{} 1990-2005, 2007-2009 Free Software / statement is recognized in a file and the final
-License: GPL-3+
-#License_guess: GPL
-       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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
-#Header:
-##!/usr/bin/perl -0777 -pi
-## Update an FSF copyright year list to include the current year.
-#
-#my $VERSION = '2009-09-09.22:00'; # UTC
-#
-## Copyright (C) 2009 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 3, 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
-
-File: ./doc/posix-functions/link.texi
-Hash: e8f2ae04d9da96f26fbedcfe51455a915d26e9441c1b1aff8363797cefe5a6c1
-Copyright:
-License:
-#Header:
-#@node link
-#@section @code{link}
-#@findex link
-#
-#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/link.html}
-#
-#Gnulib module: link
-#
-#Portability problems fixed by Gnulib:
-#@itemize
-#@item
-#This function is missing on some platforms:
-#mingw.
-#@item
-#This function fails to reject trailing slashes on non-directories on
-
-File: ./doc/posix-functions/mkfifoat.texi
-Hash: 2ef49e81b7a30554b4c83d55f907c113be4173a9ea55d625bad10d053e240aff
-Copyright:
-License:
-#Header:
-#@node mkfifoat
-#@section @code{mkfifoat}
-#@findex mkfifoat
-#
-#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mkfifoat.html}
-#
-#Gnulib module: mkfifoat
-#
-#Portability problems fixed by Gnulib:
-#@itemize
-#@item
-#This function is missing on some platforms:
-#glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
-#5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw,
-#Interix 3.5, BeOS.
-
-File: ./doc/posix-functions/mknodat.texi
-Hash: f0b695d83c9966844f693fbc4b6ed9cf6d64ad96ef3736160a32234af25d740e
-Copyright:
-License:
-#Header:
-#@node mknodat
-#@section @code{mknodat}
-#@findex mknodat
-#
-#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mknodat.html}
-#
-#Gnulib module: mkfifoat
-#
-#Portability problems fixed by Gnulib:
-#@itemize
-#@item
-#This function is missing on some platforms:
-#glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
-#5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw,
-#Interix 3.5, BeOS.
-
-File: ./doc/posix-functions/towlower.texi
-Hash: 0b763fc4460bb7fb189fc0a28a0d48f2f59ac68c9f455a12d4db813aa4cb4b8b
-Copyright:
-License:
-#Header:
-#@node towlower
-#@section @code{towlower}
-#@findex towlower
-#
-#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/towlower.html}
-#
-#Gnulib module: wctype
-#
-#Portability problems fixed by Gnulib:
-#@itemize
-#@item
-#This function is missing on some platforms:
-#IRIX 5.3, Solaris 2.5.1.
-#@item
-#This function returns values of which the upper 16 bits are incorrect
-
-File: ./doc/posix-functions/towupper.texi
-Hash: d8f49c25c827a7bb8e280f26f80154d65c09c281910c4a15a65d9f065c99a09c
-Copyright:
-License:
-#Header:
-#@node towupper
-#@section @code{towupper}
-#@findex towupper
-#
-#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/towupper.html}
-#
-#Gnulib module: wctype
-#
-#Portability problems fixed by Gnulib:
-#@itemize
-#@item
-#This function is missing on some platforms:
-#IRIX 5.3, Solaris 2.5.1.
-#@item
-#This function returns values of which the upper 16 bits are incorrect
-
-File: ./doc/standards.texi
-Hash: 0493499811ddfe5c28d64a0aba19ebb3f2ab87c13ff7b9e53a190f25a0a4f3d5
-Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-#Copyright_guess: @{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
-License: GFDL-1.3+-NIV
-       Permission is granted to copy, distribute and/or modify this document
-       under the terms of the GNU Free Documentation License, Version 1.3 or
-       any later version published by the Free Software Foundation; with no
-       Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
-       Texts.  A copy of the license is included in the ``GNU Free
-       Documentation License'' file as part of this distribution.
-#Header:
-#\input texinfo @c -*-texinfo-*-
-#@c %**start of header
-#@setfilename standards.info
-#@settitle GNU Coding Standards
-#@c This date is automagically updated when you save this file:
-#@set lastupdate September 14, 2009
-#@c %**end of header
-#
-#@dircategory GNU organization
-#@direntry
-#* Standards: (standards).       GNU coding standards.
-#@end direntry
-#
-#@c @setchapternewpage odd
-#@setchapternewpage off
-
-File: ./lib/mkfifoat.c
-Hash: 577247f31bc991a8bd17f62e7235253fcc84990a42d88085b948543adcbfabc5
-Copyright: 2009 Free Software Foundation, Inc
-License: GPL-3+
-#Header:
-#/* Create a named fifo relative to an open directory.
-#   Copyright (C) 2009 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.  */
-
-File: ./lib/posixtm.c
-Hash: 69198b47d98811cbf80123cc2d1aec9d541cbef3baff3b000252417fac644c26
-Copyright: 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
-#Copyright_guess: ((unsigned int) - '0' <= 9) / 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004
-License: GPL-3+
-#License_guess: GPL-3+
-       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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
-#Header:
-#/* Parse dates for touch and date.
-#
-#   Copyright (C) 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004,
-#   2005, 2006, 2007, 2009 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 3 of the License, 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.
-
-File: ./m4/c-stack.m4
-Hash: 9619fede154ac3537254df952692a5cb948e036b189d4f5a8fb5e60ce82884ad
-Copyright: 2002, 2003, 2004, 2008, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2002, 2003, 2004, 2008, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## Check prerequisites for compiling lib/c-stack.c.
-#
-## Copyright (C) 2002, 2003, 2004, 2008, 2009 Free Software Foundation, Inc.
-## This file is free software; the Free Software Foundation
-## gives unlimited permission to copy and/or distribute it,
-## with or without modifications, as long as this notice is preserved.
-#
-## Written by Paul Eggert.
-#
-## serial 10
-#
-#AC_DEFUN([AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC],
-#  [# for STACK_DIRECTION
-#   AC_REQUIRE([AC_FUNC_ALLOCA])
-#   AC_REQUIRE([AC_CANONICAL_HOST])
-
-File: ./m4/check-math-lib.m4
-Hash: d6c0a8ab9329a32396def8a77aac5eef6f17cc503c07c755e577c82cf4a7cb82
-Copyright: 2007 Free Software Foundation, Inc.
-#Copyright_guess: 2007 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## check-math-lib.m4 serial 3
-#dnl Copyright (C) 2007 Free Software Foundation, Inc.
-#dnl This file is free software; the Free Software Foundation
-#dnl gives unlimited permission to copy and/or distribute it,
-#dnl with or without modifications, as long as this notice is preserved.
-#dnl
-#dnl gl_CHECK_MATH_LIB (VARIABLE, EXPRESSION)
-#dnl
-#dnl Sets the shell VARIABLE according to the libraries needed by EXPRESSION
-#dnl to compile and link: to the empty string if no extra libraries are needed,
-#dnl to "-lm" if -lm is needed, or to "missing" if it does not compile and
-#dnl link either way.
-#dnl
-#dnl Example: gl_CHECK_MATH_LIB([ROUNDF_LIBM], [x = roundf (x);])
-#AC_DEFUN([gl_CHECK_MATH_LIB], [
-
-File: ./m4/gc-camellia.m4
-Hash: 7fdc884e05e35d2c7a5158925a96b489dc7a781c1ab577ef7ad574b1194b6789
-Copyright: 2007, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2007, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## gc-camellia.m4 serial 3
-#dnl Copyright (C) 2007, 2009 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.
-#
-#AC_DEFUN([gl_GC_CAMELLIA],
-#[
-#  AC_REQUIRE([gl_GC])
-#  if test "$ac_cv_libgcrypt" = yes; then
-#    AC_CACHE_CHECK([for camellia in libgcrypt], [gl_cv_libgcrypt_camellia], [
-#      AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <gcrypt.h>]],
-#          [[return gcry_cipher_open (NULL, GCRY_CIPHER_CAMELLIA128, 0, 0);]])],
-#        [gl_cv_libgcrypt_camellia=yes],
-#        [gl_cv_libgcrypt_camellia=no])])
-
-File: ./m4/getaddrinfo.m4
-Hash: 2e782cdea5a35f94a592f95296ea676f710c4102e2c1f6e745ce6246150753fb
-Copyright: 2004-2009 Free Software Foundation, Inc.
-#Copyright_guess: 2004-2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## getaddrinfo.m4 serial 21
-#dnl Copyright (C) 2004-2009 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.
-#
-#AC_DEFUN([gl_GETADDRINFO],
-#[
-#  AC_REQUIRE([gl_HEADER_SYS_SOCKET])dnl for HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H
-#  AC_REQUIRE([gl_HEADER_NETDB])dnl for HAVE_NETDB_H
-#  AC_MSG_NOTICE([checking how to do getaddrinfo, freeaddrinfo and getnameinfo])
-#  GETADDRINFO_LIB=
-#  gai_saved_LIBS="$LIBS"
-#
-#  dnl Where is getaddrinfo()?
-
-File: ./m4/getcwd.m4
-Hash: b87bad5c36703b1168e0f64b2e5c28bff9b6f6d70fac3e29c9f816ba0a9e65b1
-Copyright: 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## getcwd.m4 - check for working getcwd that is compatible with glibc
-#
-## Copyright (C) 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software
-## Foundation, Inc.
-## This file is free software; the Free Software Foundation
-## gives unlimited permission to copy and/or distribute it,
-## with or without modifications, as long as this notice is preserved.
-#
-## Written by Paul Eggert.
-## serial 2
-#
-#AC_DEFUN([gl_FUNC_GETCWD_NULL],
-#  [
-#   AC_CACHE_CHECK([whether getcwd (NULL, 0) allocates memory for result],
-#     [gl_cv_func_getcwd_null],
-
-File: ./m4/getdate.m4
-Hash: 1a77e7177234bd61f4282356879fe47d709369e5dc66265e40e9c6638bb48ba3
-Copyright: 2002-2006, 2008, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2002-2006, 2008, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## getdate.m4 serial 15
-#dnl Copyright (C) 2002-2006, 2008, 2009 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 Define HAVE_COMPOUND_LITERALS if the C compiler supports compound literals
-#dnl as in ISO C99.
-#dnl Note that compound literals such as (struct s) { 3, 4 } can be used for
-#dnl initialization of stack-allocated variables, but are not constant
-#dnl expressions and therefore cannot be used as initializer for global or
-#dnl static variables (even though gcc supports this in pre-C99 mode).
-#AC_DEFUN([gl_C_COMPOUND_LITERALS],
-#[
-#  AC_CACHE_CHECK([for compound literals], [gl_cv_compound_literals],
-
-File: ./m4/gethostname.m4
-Hash: 12dbd35b30f151241bcf8b55122449e9d4d6ce3093ecddb737ada6cc575b602c
-Copyright: 2002, 2008, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2002, 2008, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## gethostname.m4 serial 9
-#dnl Copyright (C) 2002, 2008, 2009 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.
-#
-## Ensure
-## - the gethostname() function,
-## - the HOST_NAME_MAX macro in <limits.h>.
-#AC_DEFUN([gl_FUNC_GETHOSTNAME],
-#[
-#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
-#  gl_PREREQ_SYS_H_WINSOCK2
-#
-#  dnl Where is gethostname() defined?
-
-File: ./m4/getline.m4
-Hash: 304aebbeec0f67647cb98aae4f1ef2cdc2ed053aefe8f3a5c1ad156f3ab1c55a
-Copyright: 1998-2003, 2005-2007, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 1998-2003, 2005-2007, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## getline.m4 serial 20
-#
-#dnl Copyright (C) 1998-2003, 2005-2007, 2009 Free Software Foundation, Inc.
-#dnl
-#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_PREREQ([2.59])
-#
-#dnl See if there's a working, system-supplied version of the getline function.
-#dnl We can't just do AC_REPLACE_FUNCS([getline]) because some systems
-#dnl have a function by that name in -linet that doesn't have anything
-#dnl to do with the function we need.
-#AC_DEFUN([gl_FUNC_GETLINE],
-
-File: ./m4/getopt.m4
-Hash: 954ee1d1b78670fd97a7ca312a9eadadf8ab5873f570bf280de846f07e9eeb5b
-Copyright: 2002-2006, 2008-2009 Free Software Foundation, Inc.
-#Copyright_guess: 2002-2006, 2008-2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## getopt.m4 serial 22
-#dnl Copyright (C) 2002-2006, 2008-2009 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.
-#
-## Request a POSIX compliant getopt function.
-#AC_DEFUN([gl_FUNC_GETOPT_POSIX],
-#[
-#  m4_divert_text([DEFAULTS], [gl_getopt_required=POSIX])
-#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
-#  gl_GETOPT_IFELSE([
-#    gl_REPLACE_GETOPT
-#  ],
-#  [])
-
-File: ./m4/isfinite.m4
-Hash: 13af2eee09961e653ef4b4d00ce87fd80132e59eb0f8139edd4e187d126b8b05
-Copyright: 2007-2009 Free Software Foundation, Inc.
-#Copyright_guess: 2007-2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## isfinite.m4 serial 6
-#dnl Copyright (C) 2007-2009 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.
-#
-#AC_DEFUN([gl_ISFINITE],
-#[
-#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
-#  dnl Persuade glibc <math.h> to declare isfinite.
-#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
-#  AC_CHECK_DECLS([isfinite], , , [#include <math.h>])
-#  if test "$ac_cv_have_decl_isfinite" = yes; then
-#    gl_CHECK_MATH_LIB([ISFINITE_LIBM], [x = isfinite (x);])
-#    if test "$ISFINITE_LIBM" != missing; then
-
-File: ./m4/link.m4
-Hash: e18b01f3e6d9cce5cdbcd582938b8974f2bb4bb7ed3e0448f959307bcde3fb1c
-Copyright: 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## link.m4 serial 2
-#dnl Copyright (C) 2009 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.
-#
-#AC_DEFUN([gl_FUNC_LINK],
-#[
-#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
-#  AC_CHECK_FUNCS_ONCE([link])
-#  if test $ac_cv_func_link = no; then
-#    HAVE_LINK=0
-#    AC_LIBOBJ([link])
-#  else
-#    AC_CACHE_CHECK([whether link handles trailing slash correctly],
-
-File: ./m4/mkfifoat.m4
-Hash: d0b8d22c3c0711bc69989e85c15461cd4df0693a582d8d24aca74b49bcfc163e
-Copyright: 2009 Free Software Foundation, Inc
-License:
-#Header:
-## serial 1
-## See if we need to provide mkfifoat/mknodat replacement.
-#
- Copyright (C) 2009 Free Software Foundation, Inc.
- This file is free software; the Free Software Foundation
- gives unlimited permission to copy and/or distribute it,
- with or without modifications, as long as this notice is preserved.
-#
-## Written by Eric Blake.
-#
-#AC_DEFUN([gl_FUNC_MKFIFOAT],
-#[
-#  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
-#  AC_REQUIRE([gl_FUNC_OPENAT])
-#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
-
-File: ./m4/poll.m4
-Hash: c77a707f4713c6530f7aa286b649586599372f6f08aba266d77a7e1ee984ec98
-Copyright: 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## poll.m4 serial 9
-#dnl Copyright (c) 2003, 2005, 2006, 2007, 2009 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.
-#
-#AC_DEFUN([gl_FUNC_POLL],
-#[
-#  AC_CHECK_HEADERS([poll.h])
-#  if test "$ac_cv_header_poll_h" = no; then
-#    gl_cv_func_poll=no
-#  else
-#    AC_CHECK_FUNC([poll],
-#      [# Check whether poll() works on special files (like /dev/null) and
-#       # and ttys (like /dev/tty). On MacOS X 10.4.0 and AIX 5.3, it doesn't.
-
-File: ./m4/readline.m4
-Hash: 9e52de02feedc2d295bc52ffaa55a76b74ded07133aa0f52871fa0965658598e
-Copyright: 2005, 2006, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2005, 2006, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## readline.m4 serial 7
-#dnl Copyright (C) 2005, 2006, 2009 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 Written by Simon Josefsson, with help from Bruno Haible and Oskar
-#dnl Liljeblad.
-#
-#AC_DEFUN([gl_FUNC_READLINE],
-#[
-#  dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.
-#  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
-#  AC_REQUIRE([AC_LIB_RPATH])
-
-File: ./m4/round.m4
-Hash: 25bf1c083dbfd16815069e4cd39f77e77922486167ef21ce9dc2fae4181c8461
-Copyright: 2007, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2007, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## round.m4 serial 6
-#dnl Copyright (C) 2007, 2009 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.
-#
-#AC_DEFUN([gl_FUNC_ROUND],
-#[
-#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
-#  dnl Persuade glibc <math.h> to declare round().
-#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
-#  AC_CHECK_DECLS([round], , , [#include <math.h>])
-#  if test "$ac_cv_have_decl_round" = yes; then
-#    gl_CHECK_MATH_LIB([ROUND_LIBM], [x = round (x);])
-#  fi
-
-File: ./m4/roundf.m4
-Hash: 8797faacc2345c089fb79e5efcf8907248575d0f1cdfd1348194e99a091ff525
-Copyright: 2007-2009 Free Software Foundation, Inc.
-#Copyright_guess: 2007-2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## roundf.m4 serial 7
-#dnl Copyright (C) 2007-2009 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.
-#
-#AC_DEFUN([gl_FUNC_ROUNDF],
-#[
-#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
-#  dnl Persuade glibc <math.h> to declare roundf().
-#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
-#  AC_CHECK_DECLS([roundf], , , [#include <math.h>])
-#  if test "$ac_cv_have_decl_roundf" = yes; then
-#    gl_CHECK_MATH_LIB([ROUNDF_LIBM], [x = roundf (x);])
-#  fi
-
-File: ./m4/select.m4
-Hash: 56866bc7bb38a4e9ffe972e145dd681b545f06ccd83a92dc24ca77d360085150
-Copyright: 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## select.m4 serial 2
-#dnl Copyright (C) 2009 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.
-#
-#AC_DEFUN([gl_FUNC_SELECT],
-#[
-#  AC_REQUIRE([gl_HEADER_SYS_SELECT])
-#  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
-#  if test "$ac_cv_header_winsock2_h" = yes; then
-#    AC_LIBOBJ([select])
-#  else
-#    dnl On Interix 3.5, select(0, NULL, NULL, NULL, timeout) fails with error
-#    dnl EFAULT.
-
-File: ./m4/sockets.m4
-Hash: 858e15307e3ce0fead37a6ed8d89679adeed26b441e829742aa67eb435e6e797
-Copyright: 2008, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2008, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## sockets.m4 serial 6
-#dnl Copyright (C) 2008, 2009 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.
-#
-#AC_DEFUN([gl_SOCKETS],
-#[
-#  AC_REQUIRE([AC_C_INLINE])
-#
-#  gl_PREREQ_SYS_H_WINSOCK2 dnl for HAVE_WINSOCK2_H
-#  LIBSOCKET=
-#  if test $HAVE_WINSOCK2_H = 1; then
-#    dnl Native Windows API (not Cygwin).
-#    AC_CACHE_CHECK([if we need to call WSAStartup in winsock2.h and -lws2_32],
-
-File: ./m4/socklen.m4
-Hash: 5e594903defff6d71df160b1d891e8c78ec2991a65f470050c20c2006c3036f2
-Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2005, 2006, 2007, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## socklen.m4 serial 7
-#dnl Copyright (C) 2005, 2006, 2007, 2009 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 Albert Chin, Windows fixes from Simon Josefsson.
-#
-#dnl Check for socklen_t: historically on BSD it is an int, and in
-#dnl POSIX 1g it is a type of its own, but some platforms use different
-#dnl types for the argument to getsockopt, getpeername, etc.  So we
-#dnl have to test to find something that will work.
-#
-#dnl On mingw32, socklen_t is in ws2tcpip.h ('int'), so we try to find
-#dnl it there first.  That file is included by gnulib's sys_socket.in.h, which
-
-File: ./m4/sockpfaf.m4
-Hash: faa300adf762f3c7cd74f52fd537c2633542b0d33a318fd1e240d77396087cd8
-Copyright: 2004, 2006, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2004, 2006, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## sockpfaf.m4 serial 7
-#dnl Copyright (C) 2004, 2006, 2009 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 Test for some common socket protocol families (PF_INET, PF_INET6, ...)
-#dnl and some common address families (AF_INET, AF_INET6, ...).
-#dnl This test assumes that a system supports an address family if and only if
-#dnl it supports the corresponding protocol family.
-#
-#dnl From Bruno Haible.
-#
-#AC_DEFUN([gl_SOCKET_FAMILIES],
-#[
-
-File: ./m4/string_h.m4
-Hash: 551d9d489c635fcd49dfc537a0a8492c095f9648e38de88941551f2e815ee7c8
-Copyright: 2007, 2008, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2007, 2008, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## Configure a GNU-like replacement for <string.h>.
-#
-## Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
-## This file is free software; the Free Software Foundation
-## gives unlimited permission to copy and/or distribute it,
-## with or without modifications, as long as this notice is preserved.
-#
-## serial 9
-#
-## Written by Paul Eggert.
-#
-#AC_DEFUN([gl_HEADER_STRING_H],
-#[
-#  dnl Use AC_REQUIRE here, so that the default behavior below is expanded
-#  dnl once only, before all statements that occur in other macros.
-
-File: ./m4/strndup.m4
-Hash: 627ab5d5af825316867d633d6e06c364467b50378a47e61f14ad6e6833cdd8cb
-Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc.
-#Copyright_guess: 2002-2003, 2005-2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## strndup.m4 serial 17
-#dnl Copyright (C) 2002-2003, 2005-2009 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.
-#
-#AC_DEFUN([gl_FUNC_STRNDUP],
-#[
-#  dnl Persuade glibc <string.h> to declare strndup().
-#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
-#
-#  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
-#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
-#  AC_CHECK_DECLS_ONCE([strndup])
-#  AC_CHECK_FUNCS_ONCE([strndup])
-
-File: ./m4/sys_stat_h.m4
-Hash: bcffc35eb166bcd8fff13aff53a64c55e62ecfce269040aef3500ff4550c4651
-Copyright: 2006-2009 Free Software Foundation, Inc.
-#Copyright_guess: 2006-2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## sys_stat_h.m4 serial 14   -*- Autoconf -*-
-#dnl Copyright (C) 2006-2009 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 Eric Blake.
-#dnl Provide a GNU-like <sys/stat.h>.
-#
-#AC_DEFUN([gl_HEADER_SYS_STAT_H],
-#[
-#  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
-#
-#  dnl Check for lstat.  Systems that lack it (mingw) also lack symlinks, so
-#  dnl stat is a good replacement.
-
-File: ./m4/sysexits.m4
-Hash: 156fcec3fbd92cf7f73279b896b8d1bab8cda64d47312a7318e6c73a4c2285c5
-Copyright: 2003, 2005, 2007, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2003, 2005, 2007, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## sysexits.m4 serial 5
-#dnl Copyright (C) 2003, 2005, 2007, 2009 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.
-#
-#AC_DEFUN([gl_SYSEXITS],
-#[
-#  AC_CHECK_HEADERS_ONCE([sysexits.h])
-#  if test $ac_cv_header_sysexits_h = yes; then
-#    HAVE_SYSEXITS_H=1
-#    gl_CHECK_NEXT_HEADERS([sysexits.h])
-#    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sysexits.h>]],
-#        [[switch (0)
-#          {
-
-File: ./m4/time_r.m4
-Hash: 7a6f5a6a7e505f88f7dc4e9cd840498fc72de69e7ec183931e5ce886c0dfc17b
-Copyright: 2003, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2003, 2006, 2007, 2008, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-#dnl Reentrant time functions like localtime_r.
-#
-#dnl Copyright (C) 2003, 2006, 2007, 2008, 2009 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 Written by Paul Eggert.
-#
-#AC_DEFUN([gl_TIME_R],
-#[
-# dnl Persuade glibc and Solaris <time.h> to declare localtime_r.
-#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
-#
-#  AC_REQUIRE([gl_HEADER_TIME_H_DEFAULTS])
-
-File: ./m4/tsearch.m4
-Hash: 7d3c57f659577b8ef5f3a8cbef55f49c7787e25a96ba0d35c46932eaa2cfb421
-Copyright: 2006-2009 Free Software Foundation, Inc.
-#Copyright_guess: 2006-2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## tsearch.m4 serial 4
-#dnl Copyright (C) 2006-2009 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.
-#
-#AC_DEFUN([gl_FUNC_TSEARCH],
-#[
-#  AC_REQUIRE([gl_SEARCH_H_DEFAULTS])
-#  AC_CHECK_FUNCS([tsearch])
-#  if test $ac_cv_func_tsearch = yes; then
-#    dnl On OpenBSD 4.0, the return value of tdelete() is incorrect.
-#    AC_REQUIRE([AC_PROG_CC])
-#    AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
-#    AC_CACHE_CHECK([whether tdelete works], [gl_cv_func_tdelete_works],
-
-File: ./m4/unistd_h.m4
-Hash: a8d639356c40876e6f1c44a5e8cfd4130c4bb1ea3ddd234c717bf55ccad8e31b
-Copyright: 2006-2009 Free Software Foundation, Inc.
-#Copyright_guess: 2006-2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## unistd_h.m4 serial 25
-#dnl Copyright (C) 2006-2009 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 Written by Simon Josefsson, Bruno Haible.
-#
-#AC_DEFUN([gl_UNISTD_H],
-#[
-#  dnl Use AC_REQUIRE here, so that the default behavior below is expanded
-#  dnl once only, before all statements that occur in other macros.
-#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
-#
-#  gl_CHECK_NEXT_HEADERS([unistd.h])
-
-File: ./m4/vararrays.m4
-Hash: d105622fb3ef8ef200d9b2c0cdbef2ccbdd086cde145a25e12bfff81c714e585
-Copyright: 2001, 2009 Free Software Foundation, Inc.
-#Copyright_guess: 2001, 2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## Check for variable-length arrays.
-#
-## serial 4
-#
-## From Paul Eggert
-#
-## Copyright (C) 2001, 2009 Free Software Foundation, Inc.
-## This file is free software; the Free Software Foundation
-## gives unlimited permission to copy and/or distribute it,
-## with or without modifications, as long as this notice is preserved.
-#
-#AC_DEFUN([AC_C_VARARRAYS],
-#[
-#  AC_CACHE_CHECK([for variable-length arrays],
-#    ac_cv_c_vararrays,
-
-File: ./m4/wctype.m4
-Hash: 0821c0dde71730d9ff6fb6eabb50e44e1800802cca9f810454291595c65d1afb
-Copyright: 2006-2009 Free Software Foundation, Inc.
-#Copyright_guess: 2006-2009 Free Software Foundation, Inc
-License:
-       This file is free software; the Free Software Foundation
-       gives unlimited permission to copy and/or distribute it,
-       with or without modifications, as long as this notice is preserved.
-#Header:
-## wctype.m4 serial 4
-#
-#dnl A placeholder for ISO C99 <wctype.h>, for platforms that lack it.
-#
-#dnl Copyright (C) 2006-2009 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 Written by Paul Eggert.
-#
-#AC_DEFUN([gl_WCTYPE_H],
-#[
-#  AC_REQUIRE([AC_PROG_CC])
-#  AC_REQUIRE([AC_CANONICAL_HOST])
-
-File: ./tests/test-getcwd.c
-Hash: c1e171d0b0a5e397757547b895217cb9d4da3a0c00af421fbcc156918641ad45
-Copyright: 2009 Free Software Foundation, Inc
-License: GPL-2+
-#Header:
-#/* Test of getcwd() function.
-#   Copyright (C) 2009 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 of the License, 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, see <http://www.gnu.org/licenses/>.  */
-
-File: ./tests/test-mkfifoat.c
-Hash: b088e4c8591c1a67c23ea492102956f9e4f33829467d0af27d6f26630702a2bc
-Copyright: 2009 Free Software Foundation, Inc
-License: GPL-3+
-#Header:
-#/* Tests of mkfifoat and mknodat.
-#   Copyright (C) 2009 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.  */
-
+Deleted: ./tests/test-link.sh